HomeSort by relevance Sort by last modified time
    Searched refs:aka (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/libvpx/libvpx/vp8/common/x86/
iwalsh_sse2.asm 35 paddw xmm0, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1
36 psubw xmm3, xmm2 ;ip[4]-ip[8] ip[0]-ip[12] aka c1 d1
43 paddw xmm4, xmm0 ;dl+cl a1+b1 aka op[4] op[0]
44 psubw xmm0, xmm1 ;d1-c1 a1-b1 aka op[12] op[8]
64 paddw xmm4, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1
65 psubw xmm3, xmm2 ;ip[4]-ip[8] ip[0]-ip[12] aka c1 d1
72 paddw xmm5, xmm4 ;dl+cl a1+b1 aka op[4] op[0]
73 psubw xmm4, xmm1 ;d1-c1 a1-b1 aka op[12] op[8]
  /external/curl/docs/cmdline-opts/
cert-status.d 7 Certificate Status Request (aka. OCSP stapling) TLS extension.
  /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/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 2 * Abstract Syntax Tree (aka Parse Tree)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 2 * Abstract Syntax Tree (aka Parse Tree)
  /external/swiftshader/third_party/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
41 int aka; member in struct:eap_sim_db_pending
56 } aka; member in union:eap_sim_db_pending::__anon44754
377 eap_sim_db_get_pending(struct eap_sim_db_data *data, const char *imsi, int aka)
383 if (entry->aka == aka && os_strcmp(entry->imsi, imsi) == 0) {
542 * AKA-RESP-AUTH <IMSI> <RAND> <AUTN> <IK> <CK> <RES>
543 * AKA-RESP-AUTH <IMSI> FAILURE
568 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);
285 * MK = PRF'(IK'|CK',"EAP-AKA'"|Identity)
296 prf_prime(key, "EAP-AKA'", identity, identity_len, NULL, 0,
301 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA': K_encr",
306 wpa_hexdump_key(MSG_DEBUG, "EAP-AKA': K_aut",
311 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/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 2 * Abstract Syntax Tree (aka Parse Tree)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 2 * Abstract Syntax Tree (aka Parse Tree)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 2 * Abstract Syntax Tree (aka Parse Tree)
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue1635.go 18 // https://gcc.gnu.org/PR68072 aka https://golang.org/issue/13344 .
  /prebuilts/go/linux-x86/misc/cgo/test/
issue1635.go 18 // https://gcc.gnu.org/PR68072 aka https://golang.org/issue/13344 .
  /prebuilts/go/darwin-x86/src/runtime/
mkduff.go 154 // R16 (aka REGRT1): ptr to memory to be zeroed
165 // R16 (aka REGRT1): ptr to source memory
166 // R17 (aka REGRT2): ptr to destination memory
167 // R27 (aka REGTMP): scratch space
186 // R3 (aka REGRT1): ptr to memory to be zeroed - 8
207 // R1 (aka REGRT1): ptr to memory to be zeroed - 8
  /prebuilts/go/linux-x86/src/runtime/
mkduff.go 154 // R16 (aka REGRT1): ptr to memory to be zeroed
165 // R16 (aka REGRT1): ptr to source memory
166 // R17 (aka REGRT2): ptr to destination memory
167 // R27 (aka REGTMP): scratch space
186 // R3 (aka REGRT1): ptr to memory to be zeroed - 8
207 // R1 (aka REGRT1): ptr to memory to be zeroed - 8
  /external/google-breakpad/src/testing/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/googletest/googlemock/scripts/
gmock_doctor.py 199 r'of type \'Result\' \(aka \'(?P<return_type>.*)\'\) '
226 r'\'Result\' \(aka \'void\'\)(\r)?\n'
233 r'\'Result\' \(aka \'void\'\)(\r)?\n'
  /external/v8/testing/gmock/scripts/
gmock_doctor.py 199 r'of type \'Result\' \(aka \'(?P<return_type>.*)\'\) '
226 r'\'Result\' \(aka \'void\'\)(\r)?\n'
233 r'\'Result\' \(aka \'void\'\)(\r)?\n'

Completed in 1558 milliseconds

1 2 3 4