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

1 2 3

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccFileNotFound.java 32 IccFileNotFound(int ef) {
33 super("ICC EF Not Found 0x" + Integer.toHexString(ef));
AdnRecordLoader.java 72 loadFromEF(int ef, int extensionEF, int recordNumber,
74 mEf = ef;
80 ef, recordNumber,
91 loadAllFromEF(int ef, int extensionEF,
93 mEf = ef;
98 ef,
104 * Write adn to a EF SIM record
105 * It will get the record size of EF record and compose hex adn array
106 * then write the hex array to EF record
109 * @param ef EF filei
    [all...]
  /external/quake/quake/src/QW/client/
gl_refrag.c 53 efrag_t *ef, *old, *walk, **prev; local
55 ef = ent->efrag;
57 while (ef)
59 prev = &ef->leaf->efrags;
65 if (walk == ef)
67 *prev = ef->leafnext;
74 old = ef;
75 ef = ef->entnext;
92 efrag_t *ef; local
    [all...]
r_efrag.c 54 efrag_t *ef, *old, *walk, **prev; local
56 ef = ent->efrag;
58 while (ef)
60 prev = &ef->leaf->efrags;
66 if (walk == ef)
68 *prev = ef->leafnext;
75 old = ef;
76 ef = ef->entnext;
93 efrag_t *ef; local
    [all...]
  /external/quake/quake/src/WinQuake/
gl_refrag.cpp 53 efrag_t *ef, *old, *walk, **prev; local
55 ef = ent->efrag;
57 while (ef)
59 prev = &ef->leaf->efrags;
65 if (walk == ef)
67 *prev = ef->leafnext;
74 old = ef;
75 ef = ef->entnext;
92 efrag_t *ef; local
    [all...]
r_efrag.cpp 54 efrag_t *ef, *old, *walk, **prev; local
56 ef = ent->efrag;
58 while (ef)
60 prev = &ef->leaf->efrags;
66 if (walk == ef)
68 *prev = ef->leafnext;
75 old = ef;
76 ef = ef->entnext;
93 efrag_t *ef; local
    [all...]
  /external/clang/test/Sema/
warn-bad-function-cast.c 11 enum e { E1 } ef(void);
31 (enum f { F1 })ef();
42 (int)ef(); /* expected-warning {{cast from function call of type 'enum e' to non-matching type 'int'}} */
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 200 const RSExportForEach *ef = *I; local
201 if (ef->isDummyRoot()) {
208 ss << "void forEach_" << ef->getName() << "(";
210 if (ef->hasIn()) {
215 if (ef->hasOut() || ef->hasReturn()) {
220 const RSExportRecordType *ERT = ef->getParamPacketType();
222 for (RSExportForEach::const_param_iterator i = ef->params_begin(),
223 e = ef->params_end(); i != e; i++) {
239 const RSExportFunc *ef = *I local
316 const RSExportForEach *ef = *I; local
383 const RSExportFunc *ef = *I; local
    [all...]
slang_rs_reflection_cpp.h 60 const RSExportFunc *ef);
  /external/openssl/crypto/asn1/
tasn_new.c 93 const ASN1_EXTERN_FUNCS *ef; local
114 ef = it->funcs;
115 if (ef && ef->asn1_ex_new)
117 if (!ef->asn1_ex_new(pval, it))
232 const ASN1_EXTERN_FUNCS *ef; local
238 ef = it->funcs;
239 if (ef && ef->asn1_ex_clear)
240 ef->asn1_ex_clear(pval, it)
    [all...]
tasn_fre.c 82 const ASN1_EXTERN_FUNCS *ef; local
141 ef = it->funcs;
142 if (ef && ef->asn1_ex_free)
143 ef->asn1_ex_free(pval, it);
tasn_prn.c 196 const ASN1_EXTERN_FUNCS *ef; local
244 ef = it->funcs;
245 if (ef && ef->asn1_ex_print)
247 i = ef->asn1_ex_print(out, fld, indent, "", pctx);
tasn_enc.c 137 const ASN1_EXTERN_FUNCS *ef; local
180 ef = it->funcs;
181 return ef->asn1_ex_i2d(pval, out, it, tag, aclass);
  /external/webkit/LayoutTests/fast/url/script-tests/
host.js 20 ["\ufdd0zyx.com", "%EF%BF%BDzyx.com"],
22 ["%ef%b7%90zyx.com", "%EF%BF%BDzyx.com"],
30 ["%ef%bc%85%ef%bc%94%ef%bc%91.com", "a.com"],
33 ["%ef%bc%85%ef%bc%90%ef%bc%90.com", "%00.com"],
  /external/webrtc/src/modules/audio_processing/aec/
aec_core_sse2.c 75 static void ScaleErrorSignalSSE2(aec_t *aec, float ef[2][PART_LEN1])
85 const __m128 ef_re_base = _mm_loadu_ps(&ef[0][i]);
86 const __m128 ef_im_base = _mm_loadu_ps(&ef[1][i]);
109 _mm_storeu_ps(&ef[0][i], ef_re);
110 _mm_storeu_ps(&ef[1][i], ef_im);
115 ef[0][i] /= (aec->xPow[i] + 1e-10f);
116 ef[1][i] /= (aec->xPow[i] + 1e-10f);
117 absEf = sqrtf(ef[0][i] * ef[0][i] + ef[1][i] * ef[1][i])
    [all...]
aec_core.h 158 typedef void (*WebRtcAec_ScaleErrorSignal_t)(aec_t *aec, float ef[2][PART_LEN1]);
161 (aec_t *aec, float *fft, float ef[2][PART_LEN1]);
aec_core.c 264 static void ScaleErrorSignal(aec_t *aec, float ef[2][PART_LEN1])
269 ef[0][i] /= (aec->xPow[i] + 1e-10f);
270 ef[1][i] /= (aec->xPow[i] + 1e-10f);
271 absEf = sqrtf(ef[0][i] * ef[0][i] + ef[1][i] * ef[1][i]);
275 ef[0][i] *= absEf;
276 ef[1][i] *= absEf;
280 ef[0][i] *= aec->mu
640 float xf[2][PART_LEN1], yf[2][PART_LEN1], ef[2][PART_LEN1]; local
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex.c 32 # define regexec(pr, st, nm, pm, ef) __regexec (pr, st, nm, pm, ef)
  /external/valgrind/main/memcheck/tests/amd64/
fxsave-amd64.stdout.exp 18 176 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
21 224 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
24 272 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
25 288 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
28 336 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
29 352 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
32 400 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
86 176 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
89 224 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
92 272 01 ef cd ab dd cc bb aa 11 00 ff ee ba dc fe 10
    [all...]
  /external/libpcap/
gencode.h 241 struct edge ef; member in struct:block
330 #define JF(b) ((b)->ef.succ)
optimize.c 296 SET_INTERSECT(ep->succ->ef.edom, ep->edom, edgewords);
318 memset(root->ef.edom, 0, edgewords * sizeof(*(uset)0));
322 propedom(&b->ef);
1284 b->ef.code = -b->s.code;
    [all...]
  /external/valgrind/main/none/tests/ppc64/
test_isa_2_06_part1.stdout.exp 69 ldbrx: 01 23 45 67 89 ab cd (reverse) => ef cd ab 89 67 45 23 01
70 ldbrx: 89 ab cd ef 00 11 22 (reverse) => 33 22 11 00 ef cd ab 89
    [all...]
  /external/llvm/test/MC/X86/AlignedBundling/
autogen-inst-offset-align-to-end.s 96 # CHECK: ef: incl
183 # CHECK: 1ef: incl
356 # CHECK: 3ef: nop
532 # CHECK: 5ef: nop
709 # CHECK: 7ef: nop
887 # CHECK: 9ef: nop
1609 # CHECK: 11ef: nop
1792 # CHECK: 13ef: nop
1976 # CHECK: 15ef: nop
    [all...]
  /external/openssh/regress/
Makefile 100 ${TEST_SSH_SSHKEYGEN} -ef ${.CURDIR}/rsa_openssh.pub >$(OBJ)/t3.out
  /external/valgrind/main/none/tests/s390x/
cu21.stdout.exp 161 UTF8: e0 a0 80 ed 9f bf ed b0 80 ef bf bf e0 a0 bf e1 a8 a1 e1 ac 90 e2 88 80 e2 89 9e e2 8b 89 ee 80 81
169 UTF8: 78 c8 80 ef bf bf f0 90 80 81

Completed in 1005 milliseconds

1 2 3