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

1 2

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccFileNotFound.java 31 IccFileNotFound(int ef) {
32 super("ICC EF Not Found 0x" + Integer.toHexString(ef));
AdnRecordLoader.java 34 int ef; field in class:AdnRecordLoader
72 loadFromEF(int ef, int extensionEF, int recordNumber,
74 this.ef = ef;
80 ef, recordNumber,
91 loadAllFromEF(int ef, int extensionEF,
93 this.ef = ef;
98 ef,
104 * Write adn to a EF SIM recor
    [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 158 const RSExportForEach *ef = *I; local
159 if (ef->isDummyRoot()) {
165 tmp << "void forEach_" << ef->getName() << "(";
166 if(ef->hasIn() && ef->hasOut()) {
169 } else if(ef->hasIn()) {
175 if(ef->getParamPacketType()) {
176 for(RSExportForEach::const_param_iterator i = ef->params_begin(),
177 e = ef->params_end(); i != e; i++) {
260 const RSExportForEach *ef = *I local
    [all...]
  /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/dbus/test/
Makefile.am 128 if ! (test $(srcdir) = . || test $(srcdir) -ef .) ; then \
  /external/openssh/regress/
Makefile 100 ${TEST_SSH_SSHKEYGEN} -ef ${.CURDIR}/rsa_openssh.pub >$(OBJ)/t3.out
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
perlstress-001.js 501 pattern = /()ef/;
504 expectedmatch = Array('ef', '');
642 string = 'ef';
644 expectedmatch = Array('ef', 'e');
683 pattern = /(abc|)ef/;
686 expectedmatch = Array('ef', '');
767 pattern = /(bc+d$|ef*g.|h?i(j|k))/;
774 pattern = /(bc+d$|ef*g.|h?i(j|k))/;
781 pattern = /(bc+d$|ef*g.|h?i(j|k))/;
1165 pattern = /()ef/i
    [all...]
  /external/valgrind/main/none/tests/amd64/
slahf-amd64.stdout.exp 242 ef -> c700
  /external/elfutils/tests/
run-strings-test.sh 277 testfile6: 5ef _ZTISt16invalid_argument
320 testfile7: 5ef _ZTISt16invalid_argument

Completed in 713 milliseconds

1 2