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

1 2

  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/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 91 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))
230 const ASN1_EXTERN_FUNCS *ef; local
236 ef = it->funcs;
237 if (ef && ef->asn1_ex_clear)
238 ef->asn1_ex_clear(pval, it)
    [all...]
tasn_enc.c 133 const ASN1_EXTERN_FUNCS *ef; local
176 ef = it->funcs;
177 return ef->asn1_ex_i2d(pval, out, it, tag, aclass);
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_dec.c 157 const ASN1_EXTERN_FUNCS *ef; local
231 ef = it->funcs;
232 return ef->asn1_ex_d2i(pval, in, len,
    [all...]
  /external/openssl/crypto/asn1/
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_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_enc.c 137 const ASN1_EXTERN_FUNCS *ef; local
180 ef = it->funcs;
181 return ef->asn1_ex_i2d(pval, out, it, tag, aclass);
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_dec.c 160 const ASN1_EXTERN_FUNCS *ef; local
238 ef = it->funcs;
239 return ef->asn1_ex_d2i(pval, in, len,
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/mesa/src/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/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/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobspatch.c 369 cfile cf, df, ef; local
440 cfopen(&ef, argv[3], sizeof(header) + zctrllen + zdatalen, "extra",
497 cfread(&ef, new + newpos, ctrl[1]);
507 cfclose(&ef);
  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/skia/src/pathops/
SkDQuadIntersection.cpp 261 double sf, midf, ef, sr, er; local
269 ef = e2;
277 ef = e1;
280 is_linear_inner(*flatter, sf, ef, *rounder, sr, er, i, &subDivide);
283 relaxed_is_linear(flatter, midf, ef, rounder, sr, er, i);
  /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...]
  /external/skia/src/pathops/
SkDQuadIntersection.cpp 261 double sf, midf, ef, sr, er; local
269 ef = e2;
277 ef = e1;
280 is_linear_inner(*flatter, sf, ef, *rounder, sr, er, i, &subDivide);
283 relaxed_is_linear(flatter, midf, ef, rounder, sr, er, i);
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 183 const RSExportForEach *EF = *I;
184 const RSExportType *OET = EF->getOutType();
190 const RSExportForEach::InTypeVec &InTypes = EF->getInTypes();
299 const RSExportFunc *ef = *I; local
301 makeFunctionSignature(false, ef);
380 const RSExportForEach *ef = *I; local
381 if (ef->isDummyRoot()) {
388 "void " + mClassName + "::forEach_" + ef->getName() + "(";
391 if (ef->hasIns()) {
393 assert(ef->getIns().size() == 1)
464 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/chromium_org/third_party/mesa/src/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, "");

Completed in 520 milliseconds

1 2