/external/libvpx/libvpx/vp8/common/x86/ |
iwalsh_mmx.asm | 37 paddw mm4, mm3 ;ip[0] + ip[12] aka al 38 paddw mm5, mm2 ;ip[4] + ip[8] aka bl 44 psubw mm0, mm3 ;ip[0] - ip[12] aka d1 45 psubw mm1, mm2 ;ip[4] - ip[8] aka c1 67 punpckldq mm0, mm6 ; 30 20 10 00 aka ip[0] 68 punpckhdq mm4, mm6 ; 31 21 11 01 aka ip[4] 70 punpckldq mm2, mm1 ; 32 22 12 02 aka ip[8] 71 punpckhdq mm3, mm1 ; 33 23 13 03 aka ip[12] 75 paddw mm1, mm3 ;ip[0] + ip[12] aka al 76 paddw mm5, mm2 ;ip[4] + ip[8] aka b [all...] |
iwalsh_sse2.asm | 33 paddw xmm0, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1 34 psubw xmm3, xmm2 ;ip[4]-ip[8] ip[0]-ip[12] aka c1 d1 41 paddw xmm4, xmm0 ;dl+cl a1+b1 aka op[4] op[0] 42 psubw xmm0, xmm1 ;d1-c1 a1-b1 aka op[12] op[8] 62 paddw xmm4, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1 63 psubw xmm3, xmm2 ;ip[4]-ip[8] ip[0]-ip[12] aka c1 d1 70 paddw xmm5, xmm4 ;dl+cl a1+b1 aka op[4] op[0] 71 psubw xmm4, xmm1 ;d1-c1 a1-b1 aka op[12] op[8]
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/wpa_supplicant_8/src/eap_server/ |
eap_sim_db.c | 8 * This is an example implementation of the EAP-SIM/AKA database/authentication 12 * EAP-SIM/AKA pseudonyms and re-auth identities. It can be used with different 42 int aka; member in struct:eap_sim_db_pending 57 } aka; member in union:eap_sim_db_pending::__anon31609 373 eap_sim_db_get_pending(struct eap_sim_db_data *data, const char *imsi, int aka) 379 if (entry->aka == aka && os_strcmp(entry->imsi, imsi) == 0) { 487 * AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES> 488 * AKA-RESP-AUTH <IMSI> FAILURE 513 if (hexstr2bin(start, entry->u.aka.rand, EAP_AKA_RAND_LEN) [all...] |
/external/clang/test/CXX/special/class.dtor/ |
p10-0x.cpp | 9 x->~decltype(*x)(); // expected-error{{the type of object expression ('const int') does not match the type being destroyed ('decltype(*x)' (aka 'const int &')) in pseudo-destructor expression}} \ 13 y->~decltype(*y)(); // expected-error{{destructor type 'decltype(*y)' (aka 'const A &') in object destruction expression does not match the type 'const A' of the object being destroyed}} 21 x->~decltype(*x)(); // expected-error{{destructor type 'decltype(*x)' (aka 'const A &') in object destruction expression does not match the type 'const A' of the object being destroyed}} 23 x->~decltype(B())(); // expected-error{{destructor type 'decltype(B())' (aka 'B') in object destruction expression does not match the type 'const A' of the object being destroyed}} 24 x->~decltype(x)(); // expected-error{{destructor type 'decltype(x)' (aka 'const A *') in object destruction expression does not match the type 'const A' of the object being destroyed}} 33 expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}} 34 i.~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}} 36 pi.~decltype(int())(); // expected-error{{the type of object expression ('int *') does not match the type being destroyed ('decltype(int())' (aka 'int')) in pseudo-destructor expression}} 38 pi->~decltype(intp())(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('decltype(intp())' (aka 'int *')) in pseudo-destructor expression}}
|
/external/wpa_supplicant_8/src/eap_common/ |
eap_sim_common.c | 2 * EAP peer/server: EAP-SIM/AKA/AKA' shared routines 71 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: IK", ik, EAP_AKA_IK_LEN); 72 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: CK", ck, EAP_AKA_CK_LEN); 73 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA: MK", mk, EAP_SIM_MK_LEN); 286 * MK = PRF'(IK'|CK',"EAP-AKA'"|Identity) 297 prf_prime(key, "EAP-AKA'", identity, identity_len, NULL, 0, 302 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA': K_encr", 307 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA': K_aut", 312 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA': K_re" [all...] |
eap_sim_common.h | 2 * EAP peer/server: EAP-SIM/AKA/AKA' shared routines 45 /* EAP-AKA Subtypes */ 135 /* EAP-SIM/AKA Attributes (0..127 non-skippable) */ 137 #define EAP_SIM_AT_AUTN 2 /* only AKA */ 138 #define EAP_SIM_AT_RES 3 /* only AKA, only peer->server */ 139 #define EAP_SIM_AT_AUTS 4 /* only AKA, only peer->server */ 154 #define EAP_SIM_AT_KDF_INPUT 23 /* only AKA' */ 155 #define EAP_SIM_AT_KDF 24 /* only AKA' */ 160 #define EAP_SIM_AT_CHECKCODE 134 /* only AKA */ [all...] |
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/ |
ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/ |
ast.ml | 2 * Abstract Syntax Tree (aka Parse Tree)
|
/external/chromium/testing/gmock/scripts/ |
gmock_doctor.py | 195 r'of type \'Result\' \(aka \'(?P<return_type>).*\'\) ' 222 r'\'Result\' \(aka \'void\'\)(\r)?\n' 229 r'\'Result\' \(aka \'void\'\)(\r)?\n'
|
/external/chromium_org/third_party/mesa/src/docs/OLD/ |
MESA_trace.spec | 44 "chain of responsibility" pattern (aka "composable piepline")
|
/external/mesa3d/docs/OLD/ |
MESA_trace.spec | 44 "chain of responsibility" pattern (aka "composable piepline")
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
OldAndroidClassTest.java | 264 clazz = Mou$$aka.class; 266 assertEquals(pkg + "Mou$$aka", clazz.getName()); 267 assertEquals("Mou$$aka", clazz.getSimpleName()); 268 assertEquals(pkg + "Mou$$aka", clazz.getCanonicalName()); 317 class Mou$$aka {
|
/development/build/ |
Android.mk | 16 # - ${PLATFORM_SDK_VERSION} e.g. "3", aka the API level
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/ |
yasm.pyx | 27 The Yasm library (aka libyasm) provides the core functionality of the Yasm
|
/external/chromium_org/v8/test/mjsunit/ |
debug-backtrace-text.js | 85 assertEquals("#<Array>[2](aka distance)(p=#<Point>, q=#<Point>)", exec_state.frame(2).invocationText());
|
/external/v8/test/mjsunit/ |
debug-backtrace-text.js | 85 assertEquals("#<Array>[2](aka distance)(p=#<Point>, q=#<Point>)", exec_state.frame(2).invocationText());
|
/external/wpa_supplicant_8/wpa_supplicant/ |
events.c | 272 * configured to use PC/SC for SIM/USIM access (EAP-SIM or EAP-AKA). 279 int aka = 0, sim = 0; local 286 aka = 1; 296 aka = 1; 307 aka = 0; 309 if (!sim && !aka) { 311 "use SIM, but neither EAP-SIM nor EAP-AKA are " 317 "(sim=%d aka=%d) - initialize PCSC", sim, aka); 319 wpa_s->scard = scard_init((!sim && aka) ? SCARD_USIM_ONLY [all...] |
/external/clang/lib/AST/ |
ASTDiagnostic.cpp | 33 // Don't aka just because we saw an elaborated type... 147 /// if this is the case, doing another "aka" would just be clutter. 178 bool aka; local 179 QualType CompareDesugar = Desugar(Context, CompareTy, aka); 221 S = "'" + S + "' (aka '" + akaStr + "')"; [all...] |
/external/chromium_org/third_party/usb_ids/ |
usb.ids | [all...] |
/external/chromium_org/v8/src/ |
mirror-debugger.js | [all...] |
/external/v8/src/ |
mirror-debugger.js | [all...] |