HomeSort by relevance Sort by last modified time
    Searched defs:ef (Results 1 - 18 of 18) sorted by null

  /external/mesa3d/src/mesa/tnl_dd/
t_dd_unfilled.h 40 GLubyte *ef = VB->EdgeFlag; local
64 /* ef[e0], ef[e1], ef[e2]); */
68 if (ef[e0]) POINT( v[0] );
69 if (ef[e1]) POINT( v[1] );
70 if (ef[e2]) POINT( v[2] );
75 if (ef[e2]) LINE( v[2], v[0] );
76 if (ef[e0]) LINE( v[0], v[1] );
77 if (ef[e1]) LINE( v[1], v[2] )
104 GLubyte *ef = VB->EdgeFlag; local
    [all...]
  /external/boringssl/src/crypto/asn1/
tasn_fre.c 80 const ASN1_EXTERN_FUNCS *ef; local
139 ef = it->funcs;
140 if (ef && ef->asn1_ex_free)
141 ef->asn1_ex_free(pval, it);
tasn_new.c 93 const ASN1_EXTERN_FUNCS *ef; local
112 ef = it->funcs;
113 if (ef && ef->asn1_ex_new)
115 if (!ef->asn1_ex_new(pval, it))
231 const ASN1_EXTERN_FUNCS *ef; local
237 ef = it->funcs;
238 if (ef && ef->asn1_ex_clear)
239 ef->asn1_ex_clear(pval, it)
    [all...]
tasn_enc.c 135 const ASN1_EXTERN_FUNCS *ef; local
178 ef = it->funcs;
179 return ef->asn1_ex_i2d(pval, out, it, tag, aclass);
tasn_prn.c 196 const ASN1_EXTERN_FUNCS *ef; local
245 ef = it->funcs;
246 if (ef && ef->asn1_ex_print)
248 i = ef->asn1_ex_print(out, fld, indent, "", pctx);
tasn_dec.c 161 const ASN1_EXTERN_FUNCS *ef; local
235 ef = it->funcs;
236 return ef->asn1_ex_d2i(pval, in, len,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_cliptest_tmp.h 40 const unsigned ef = pvs->draw->vs.edgeflag_output; local
144 if ((flags & DO_EDGEFLAG) && ef) {
145 const float *edgeflag = out->data[ef];
  /external/mesa3d/src/mesa/swrast_setup/
ss_triangle.c 51 const GLubyte *ef,
64 const GLubyte *ef,
75 if (ef[e2]) _swrast_Line( ctx, v2, v0 );
76 if (ef[e0]) _swrast_Line( ctx, v0, v1 );
77 if (ef[e1]) _swrast_Line( ctx, v1, v2 );
79 if (ef[e0]) _swrast_Line( ctx, v0, v1 );
80 if (ef[e1]) _swrast_Line( ctx, v1, v2 );
81 if (ef[e2]) _swrast_Line( ctx, v2, v0 );
90 const GLubyte *ef,
98 if (ef[e0]) _swrast_Point( ctx, v0 )
117 GLubyte *ef = VB->EdgeFlag; local
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vb_rendertmp.h 205 GLboolean ef2, ef1, ef; local
218 ef = EDGEFLAG_GET( ej );
228 EDGEFLAG_SET( ej, ef );
261 GLboolean ef = EDGEFLAG_GET( ej ); local
274 EDGEFLAG_SET( ej, ef );
321 GLboolean ef = EDGEFLAG_GET( ELT(j) ); local
324 EDGEFLAG_SET( ELT(j), ef ); local
409 GLboolean ef = EDGEFLAG_GET( ELT(j) ); local
425 EDGEFLAG_SET( ELT(j), ef ); local
  /external/iptables/libxtables/
xtoptions.c 1007 unsigned int ef = 1 << entry->id, of = 1 << other->id; local
1017 if ((xflags & (ef | of)) != (ef | of))
    [all...]
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 182 const RSExportForEach *EF = *I;
183 const RSExportType *OET = EF->getOutType();
189 const RSExportForEach::InTypeVec &InTypes = EF->getInTypes();
298 const RSExportFunc *ef = *I; local
300 makeFunctionSignature(false, ef);
379 const RSExportForEach *ef = *I; local
380 if (ef->isDummyRoot()) {
387 "void " + mClassName + "::forEach_" + ef->getName() + "(";
390 if (ef->hasIns()) {
392 assert(ef->getIns().size() == 1)
463 const RSExportFunc *ef = *I; local
    [all...]
  /cts/tools/dasm/src/dasm/
DAsm.java 371 EncodedField ef = new EncodedField(field, access); local
377 classDef.addStaticField(ef, null);
379 classDef.addInstanceField(ef);
    [all...]
  /external/libpcap/
gencode.h 260 struct edge ef; member in struct:block
356 #define JF(b) ((b)->ef.succ)
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_setup.c 605 LLVMValueRef e, f, ef, ooa; local
633 ef = LLVMBuildFMul(b, dxy01, dyx20, "ef");
634 e = LLVMBuildExtractElement(b, ef, zeroi, "");
635 f = LLVMBuildExtractElement(b, ef, onei, "");
  /external/regex-re2/re2/
parse.cc 244 CaseFold* ef = f + n; local
263 if (f < ef)
787 // A(B(C|D)|EF)|BC(X|Y)
789 // A(B[CD]|EF)|BC[XY]
    [all...]
  /external/webrtc/src/modules/audio_processing/aec/
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...]
  /external/valgrind/VEX/priv/
guest_s390_toIR.c 7208 IRTemp ef = newTemp(Ity_I32); \/* Emulation Failure *\/ local
    [all...]
  /prebuilts/tools/common/m2/repository/org/freemarker/freemarker/2.3.20/
freemarker-2.3.20.jar 

Completed in 419 milliseconds