search for: getqual

Displaying 7 results from an estimated 7 matches for "getqual".

2007 Dec 17
2
[LLVMdev] PointerType API Change
...d be "address-space-safe" or not. If the default parameter > > value for > > get() could be a unique ID for "not specified" instead of "the default > > address space", then one should even be able to continue to use get() > > isntead of sth like getQual(...). > > The reason for the change was to make it absolutely clear in the > source where address space qualifiers are preserved/added or stripped > from the pointer type. Allowing clients to use get() and then > dynamically track "undefined" address spaces under the hood i...
2007 Dec 17
2
[LLVMdev] PointerType API Change
...rtain LLVM version. Then passes could be "address-space-safe" or not. If the default parameter value for get() could be a unique ID for "not specified" instead of "the default address space", then one should even be able to continue to use get() isntead of sth like getQual(...). Torvald On Monday 17 December 2007, Christopher Lamb wrote: > On Dec 16, 2007, at 10:22 PM, Anton Korobeynikov wrote: > > Christopher, > > > >> The API for getting PointerType objects has just changed to make > >> Embedded C address space information explici...
2007 Dec 17
0
[LLVMdev] PointerType API Change
...n passes > could be "address-space-safe" or not. If the default parameter > value for > get() could be a unique ID for "not specified" instead of "the default > address space", then one should even be able to continue to use get() > isntead of sth like getQual(...). The reason for the change was to make it absolutely clear in the source where address space qualifiers are preserved/added or stripped from the pointer type. Allowing clients to use get() and then dynamically track "undefined" address spaces under the hood is counter to thi...
2004 Aug 06
1
SPEEX_GET_QUALITY error
I am embedding speex in boost python when i execute int TSpeexEncoder::getQuality() { int Quality; speex_encoder_ctl(enc_state,SPEEX_GET_QUALITY,&Quality); return Quality; } i get the error warning: Unknown nb_ctl request: 5 looking in the header SPEEX_GET_QUALITY is equal to 5 I am able to read all the other settings. the codec appears to be...
2007 Dec 17
0
[LLVMdev] PointerType API Change
.... If the default parameter >>> value for >>> get() could be a unique ID for "not specified" instead of "the >>> default >>> address space", then one should even be able to continue to use >>> get() >>> isntead of sth like getQual(...). >> >> The reason for the change was to make it absolutely clear in the >> source where address space qualifiers are preserved/added or stripped >> from the pointer type. Allowing clients to use get() and then >> dynamically track "undefined" address spa...
2007 Dec 17
0
[LLVMdev] PointerType API Change
On Dec 16, 2007, at 10:22 PM, Anton Korobeynikov wrote: > Christopher, > >> The API for getting PointerType objects has just changed to make >> Embedded C address space information explicit. The old semantics of >> PointerType::get() now apply to PointerType::getUnqual(), which >> returns a pointer in the generic address space. PointerType::get() >> now
2007 Dec 17
3
[LLVMdev] PointerType API Change
Christopher, > The API for getting PointerType objects has just changed to make > Embedded C address space information explicit. The old semantics of > PointerType::get() now apply to PointerType::getUnqual(), which > returns a pointer in the generic address space. PointerType::get() now > requires both a type and an address space. What is the reason of such change? -- With best