/external/clang/test/CXX/temp/temp.decls/temp.fct/temp.func.order/ |
p3.cpp | 13 void test(X<int> xi, X<float> xf) { 14 float& ir = (xi == xf);
|
/external/clang/test/CXX/temp/temp.decls/temp.friend/ |
p4.cpp | 26 X2<float> xf; local 27 f(xf);
|
/external/clang/test/CodeGenCXX/ |
address-of-fntemplate.cpp | 24 void h(X<int (*)()> xf) { 25 xf.f(&g<int>);
|
/external/tcpdump/ |
print-enc.c | 42 #define ENC_PRINT_TYPE(wh, xf, nam) \ 43 if ((wh) & (xf)) { \ 44 printf("%s%s", nam, (wh) == (xf) ? "): " : ","); \ 45 (wh) &= ~(xf); \
|
/bionic/libc/kernel/common/linux/ |
msm_hw3d.h | 25 #define HW3D_REGION_OFFSET(id) ((((uint32_t)(id)) & 0xf) << 28) 26 #define HW3D_REGION_ID(addr) (((uint32_t)(addr) >> 28) & 0xf)
|
futex.h | 60 #define FUTEX_OP(op, oparg, cmp, cmparg) (((op & 0xf) << 28) | ((cmp & 0xf) << 24) | ((oparg & 0xfff) << 12) | (cmparg & 0xfff))
|
/dalvik/vm/mterp/x86/ |
OP_CONST_4.S | 4 movl $$0xf,rINST
|
OP_EXECUTE_INLINE.S | 40 movl $$0xf,%ecx 46 movl $$0xf,%ecx 52 movl $$0xf,%ecx 58 movl $$0xf,%ecx
|
OP_MOVE.S | 5 andb $$0xf,%al # eax<- A
|
OP_MUL_INT_2ADDR.S | 6 andb $$0xf,%cl # ecx<- A
|
binflop2addr.S | 9 andb $$0xf,%cl # ecx<- A
|
binop2addr.S | 20 andb $$0xf,%cl # ecx<- A
|
binopLit16.S | 16 andb $$0xf,rINSTbl # rINST<- A
|
fpcvt.S | 9 andb $$0xf,%cl # ecx<- A
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/ |
msm_hw3d.h | 25 #define HW3D_REGION_OFFSET(id) ((((uint32_t)(id)) & 0xf) << 28) 26 #define HW3D_REGION_ID(addr) (((uint32_t)(addr) >> 28) & 0xf)
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/ |
msm_hw3d.h | 25 #define HW3D_REGION_OFFSET(id) ((((uint32_t)(id)) & 0xf) << 28) 26 #define HW3D_REGION_ID(addr) (((uint32_t)(addr) >> 28) & 0xf)
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/ |
vlc_tab.cpp | 227 {0x11, 1, 0, 9}, {0x11, 1, 0, 9}, {0x10, 1, 0, 9}, {0x10, 1, 0, 9}, {0xf, 1, 0, 9}, {0xf, 1, 0, 9}, 230 {0xf, 1, 1, 8}, {0xf, 1, 1, 8}, {0xf, 1, 1, 8}, {0xf, 1, 1, 8}, {0xe, 1, 1, 8}, {0xe, 1, 1, 8}, 257 {0x25, 1, 1, 12}, {0x26, 1, 1, 12}, {0x27, 1, 1, 12}, {0x28, 1, 1, 12}, {0xbf, 0xf, 1, 7}, 258 {0xbf, 0xf, 1, 7}, {0xbf, 0xf, 1, 7}, {0xbf, 0xf, 1, 7}, {0xbf, 0xf, 1, 7}, {0xbf, 0xf, 1, 7}, {0xbf, 0xf, 1, 7} [all...] |
/external/chromium/base/ |
atomicops_internals_x86_gcc.cc | 64 int family = (eax >> 8) & 0xf; // family and model fields 65 int model = (eax >> 4) & 0xf; 66 if (family == 0xf) { // use extended family and model fields 68 model += ((eax >> 16) & 0xf) << 4;
|
/external/clang/test/SemaTemplate/ |
instantiate-field.cpp | 22 void test2(const X<float> *xf) { 23 (void)xf->x; // expected-note{{in instantiation of template class 'X<float>' requested here}} 26 void test3(const X<int(int)> *xf) { 27 (void)xf->x; // expected-note{{in instantiation of template class 'X<int (int)>' requested here}}
|
/external/e2fsprogs/intl/ |
hash-string.h | 40 g = hval & ((unsigned long int) 0xf << (HASHWORDBITS - 4));
|
/external/kernel-headers/original/asm-generic/bitops/ |
__ffs.h | 30 if ((word & 0xf) == 0) {
|
/external/libpcap/ |
ffs.h | 22 if (!(x & 0xf)) {
|
/external/v8/src/ |
atomicops_internals_x86_gcc.cc | 86 int family = (eax >> 8) & 0xf; // family and model fields 87 int model = (eax >> 4) & 0xf; 88 if (family == 0xf) { // use extended family and model fields 90 model += ((eax >> 16) & 0xf) << 4;
|
/external/webkit/Source/JavaScriptCore/wtf/url/src/ |
URLEscape.h | 44 buffer.append(hexCharacterTable[ch & 0xf]);
|
/sdk/emulator/qtools/ |
armdis.cpp | 147 uint8_t cond = (insn >> 28) & 0xf; 150 uint8_t rn = (insn >> 16) & 0xf; 151 uint8_t rd = (insn >> 12) & 0xf; 194 uint8_t rotate = (insn >> 8) & 0xf; 195 uint8_t rm = insn & 0xf; 197 uint8_t rs = (insn >> 8) & 0xf; 232 uint8_t cond = (insn >> 28) & 0xf; 249 uint8_t cond = (insn >> 28) & 0xf; 250 uint8_t rn = insn & 0xf; 257 uint32_t immed = (((insn >> 8) & 0xfff) << 4) | (insn & 0xf); [all...] |