Searched refs:ef (Results 1 - 25 of 67) sorted by relevance

123

/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
H A Dt_dd_unfilled.h40 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[e
104 GLubyte *ef = VB->EdgeFlag; local
[all...]
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_unfilled.h40 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[e
104 GLubyte *ef = VB->EdgeFlag; local
[all...]
/external/clang/test/Sema/
H A Dwarn-bad-function-cast.c11 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'}} */
/external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/
H A Dss_triangle.c51 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[e
63 _swsetup_edge_render_line_tri(struct gl_context *ctx, const GLubyte *ef, GLuint e0, GLuint e1, GLuint e2, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
89 _swsetup_edge_render_point_tri(struct gl_context *ctx, const GLubyte *ef, GLuint e0, GLuint e1, GLuint e2, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
117 GLubyte *ef = VB->EdgeFlag; local
[all...]
/external/mesa3d/src/mesa/swrast_setup/
H A Dss_triangle.c51 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[e
63 _swsetup_edge_render_line_tri(struct gl_context *ctx, const GLubyte *ef, GLuint e0, GLuint e1, GLuint e2, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
89 _swsetup_edge_render_point_tri(struct gl_context *ctx, const GLubyte *ef, GLuint e0, GLuint e1, GLuint e2, const SWvertex *v0, const SWvertex *v1, const SWvertex *v2) argument
117 GLubyte *ef = VB->EdgeFlag; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A DglX_proto_size.py353 ef = glx_enum_function( func.name, api.enums_by_name )
354 if len(ef.enums) == 0:
357 if (ef.is_set() and self.emit_set) or (not ef.is_set() and self.emit_get):
358 sig = ef.signature()
363 ef.Print( func.name )
391 ef = glx_enum_function( func.name, api.enums_by_name )
392 if len(ef.enums) == 0:
395 if (ef.is_set() and self.emit_set) or (not ef
[all...]
/external/mesa3d/src/mapi/glapi/gen/
H A DglX_proto_size.py353 ef = glx_enum_function( func.name, api.enums_by_name )
354 if len(ef.enums) == 0:
357 if (ef.is_set() and self.emit_set) or (not ef.is_set() and self.emit_get):
358 sig = ef.signature()
363 ef.Print( func.name )
391 ef = glx_enum_function( func.name, api.enums_by_name )
392 if len(ef.enums) == 0:
395 if (ef.is_set() and self.emit_set) or (not ef
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Dtasn_new.c93 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
[all...]
H A Dtasn_fre.c82 const ASN1_EXTERN_FUNCS *ef; local
141 ef = it->funcs;
142 if (ef && ef->asn1_ex_free)
143 ef->asn1_ex_free(pval, it);
H A Dtasn_prn.c196 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);
/external/openssl/crypto/asn1/
H A Dtasn_new.c93 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
[all...]
H A Dtasn_fre.c82 const ASN1_EXTERN_FUNCS *ef; local
141 ef = it->funcs;
142 if (ef && ef->asn1_ex_free)
143 ef->asn1_ex_free(pval, it);
H A Dtasn_prn.c196 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);
/external/webrtc/src/modules/audio_processing/aec/
H A Daec_core_sse2.c75 static void ScaleErrorSignalSSE2(aec_t *aec, float ef[2][PART_LEN1]) argument
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[
131 FilterAdaptationSSE2(aec_t *aec, float *fft, float ef[2][PART_LEN1]) argument
[all...]
H A Daec_core.h158 typedef void (*WebRtcAec_ScaleErrorSignal_t)(aec_t *aec, float ef[2][PART_LEN1]);
161 (aec_t *aec, float *fft, float ef[2][PART_LEN1]);
H A Daec_core.c264 static void ScaleErrorSignal(aec_t *aec, float ef[2][PART_LEN1]) argument
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[
311 FilterAdaptation(aec_t *aec, float *fft, float ef[2][PART_LEN1]) argument
640 float xf[2][PART_LEN1], yf[2][PART_LEN1], ef[2][PART_LEN1]; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/
H A Dt_vb_rendertmp.h205 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/
H A Dt_vb_rendertmp.h205 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/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_cliptest_tmp.h40 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/
H A Ddraw_cliptest_tmp.h40 const unsigned ef = pvs->draw->vs.edgeflag_output; local
144 if ((flags & DO_EDGEFLAG) && ef) {
145 const float *edgeflag = out->data[ef];
/external/valgrind/main/memcheck/tests/amd64/
H A Dfxsave-amd64.stdout.exp18 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 c
[all...]
/external/libpcap/
H A Dgencode.h241 struct edge ef; member in struct:block
330 #define JF(b) ((b)->ef.succ)
/external/chromium_org/chrome/installer/mac/third_party/bsdiff/
H A Dgoobspatch.c369 cfile cf, df, ef; local
440 cfopen(&ef, argv[3], sizeof(header) + zctrllen + zdatalen, "extra",
493 cfread(&ef, new + newpos, ctrl[1]);
503 cfclose(&ef);
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDQuadIntersection.cpp259 double sf, midf, ef, sr, er; local
267 ef = e2;
275 ef = e1;
278 is_linear_inner(*flatter, sf, ef, *rounder, sr, er, i, &subDivide);
281 relaxed_is_linear(flatter, midf, ef, rounder, sr, er, i);
/external/skia/src/pathops/
H A DSkDQuadIntersection.cpp259 double sf, midf, ef, sr, er; local
267 ef = e2;
275 ef = e1;
278 is_linear_inner(*flatter, sf, ef, *rounder, sr, er, i, &subDivide);
281 relaxed_is_linear(flatter, midf, ef, rounder, sr, er, i);

Completed in 842 milliseconds

123