Searched refs:ee (Results 1 - 25 of 108) sorted by relevance

12345

/external/libhevc/common/
H A Dihevc_itrans_recon_8x8.c110 WORD32 ee[2], eo[2]; local
156 ee[0] = g_ai2_ihevc_trans_8[0][0] * pi2_src[0];
157 ee[1] = g_ai2_ihevc_trans_8[0][1] * pi2_src[0];
160 e[0] = ee[0] + eo[0];
161 e[3] = ee[0] - eo[0];
162 e[1] = ee[1] + eo[1];
163 e[2] = ee[1] - eo[1];
194 ee[0] = g_ai2_ihevc_trans_8[0][0] * pi2_tmp[0];
195 ee[1] = g_ai2_ihevc_trans_8[0][1] * pi2_tmp[0];
198 e[0] = ee[
[all...]
H A Dihevc_chroma_itrans_recon_8x8.c119 WORD32 ee[2], eo[2]; local
169 ee[0] = g_ai2_ihevc_trans_8[0][0] * pi2_src[0]
171 ee[1] = g_ai2_ihevc_trans_8[0][1] * pi2_src[0]
175 e[0] = ee[0] + eo[0];
176 e[3] = ee[0] - eo[0];
177 e[1] = ee[1] + eo[1];
178 e[2] = ee[1] - eo[1];
211 ee[0] = g_ai2_ihevc_trans_8[0][0] * pi2_tmp[0];
212 ee[1] = g_ai2_ihevc_trans_8[0][1] * pi2_tmp[0];
215 e[0] = ee[
[all...]
H A Dihevc_chroma_itrans_recon_16x16.c120 WORD32 ee[4], eo[4]; local
176 ee[k] = eee[k] + eeo[k];
177 ee[k + 2] = eee[1 - k] - eeo[1 - k];
181 e[k] = ee[k] + eo[k];
182 e[k + 4] = ee[3 - k] - eo[3 - k];
225 ee[k] = eee[k] + eeo[k];
226 ee[k + 2] = eee[1 - k] - eeo[1 - k];
230 e[k] = ee[k] + eo[k];
231 e[k + 4] = ee[3 - k] - eo[3 - k];
277 ee[
[all...]
H A Dihevc_itrans_recon_16x16.c110 WORD32 ee[4], eo[4]; local
166 ee[k] = eee[k] + eeo[k];
167 ee[k + 2] = eee[1 - k] - eeo[1 - k];
171 e[k] = ee[k] + eo[k];
172 e[k + 4] = ee[3 - k] - eo[3 - k];
216 ee[k] = eee[k] + eeo[k];
217 ee[k + 2] = eee[1 - k] - eeo[1 - k];
221 e[k] = ee[k] + eo[k];
222 e[k + 4] = ee[3 - k] - eo[3 - k];
268 ee[
[all...]
H A Dihevc_itrans.c331 WORD32 ee[2], eo[2]; local
361 ee[0] = g_ai2_ihevc_trans_8[0][0] * pi2_src[0]
363 ee[1] = g_ai2_ihevc_trans_8[0][1] * pi2_src[0]
367 e[0] = ee[0] + eo[0];
368 e[3] = ee[0] - eo[0];
369 e[1] = ee[1] + eo[1];
370 e[2] = ee[1] - eo[1];
410 WORD32 ee[2], eo[2]; local
470 ee[0] = 64 *pi2_src[ 0 ] + 64 *pi2_src[ 4*8 ];
471 ee[
554 WORD32 ee[4], eo[4]; local
649 WORD32 ee[4], eo[4]; local
854 WORD32 ee[8], eo[8]; local
[all...]
H A Dihevc_itrans_recon_32x32.c111 WORD32 ee[8], eo[8]; local
179 ee[k] = eee[k] + eeo[k];
180 ee[k + 4] = eee[3 - k] - eeo[3 - k];
184 e[k] = ee[k] + eo[k];
185 e[k + 8] = ee[7 - k] - eo[7 - k];
239 ee[k] = eee[k] + eeo[k];
240 ee[k + 4] = eee[3 - k] - eeo[3 - k];
244 e[k] = ee[k] + eo[k];
245 e[k + 8] = ee[7 - k] - eo[7 - k];
299 ee[
[all...]
/external/kernel-headers/original/uapi/linux/
H A Derrqueue.h23 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
/external/llvm/bindings/ocaml/executionengine/
H A Dllvm_executionengine.mli44 engine is not garbage collected and must be destroyed with [dispose ee].
51 (** [dispose ee] releases the memory used by the execution engine and must be
55 (** [add_module m ee] adds the module [m] to the execution engine [ee]. *)
58 (** [remove_module m ee] removes the module [m] from the execution engine
59 [ee]. Raises [Error msg] if an error occurs. *)
62 (** [run_static_ctors ee] executes the static constructors of each module in
63 the execution engine [ee]. *)
66 (** [run_static_dtors ee] executes the static destructors of each module in
67 the execution engine [ee]
[all...]
H A Dllvm_executionengine.ml53 let add_global_mapping llval ptr ee =
54 add_global_mapping_ llval (Ctypes.raw_address_of_ptr (Ctypes.to_voidp ptr)) ee
56 let get_global_value_address name typ ee =
57 let vptr = get_global_value_address_ name ee in
63 let get_function_address name typ ee =
64 let fptr = get_function_address_ name ee in
/external/llvm/test/Bindings/OCaml/
H A Dexecutionengine.ml50 let ee = create m in
60 add_module m2 ee;
67 add_global_mapping g cg ee;
70 let cg' = get_pointer_to_global g (ptr void) ee in
77 run_static_ctors ee;
80 let varh = get_global_value_address "globvar" int32_t ee in
85 let cplus = get_function_address "plus" cplusty ee in
90 let cgetglobal = get_pointer_to_global getglobal cgetglobalty ee in
94 remove_module m2 ee;
98 run_static_dtors ee;
[all...]
/external/skia/src/gpu/effects/
H A DGrOvalEffect.cpp253 const EllipseEffect& ee = other.cast<EllipseEffect>(); local
254 return fEdgeType == ee.fEdgeType && fCenter == ee.fCenter && fRadii == ee.fRadii;
312 const EllipseEffect& ee = fp.cast<EllipseEffect>(); local
334 switch (ee.getEdgeType()) {
357 const EllipseEffect& ee = effect.cast<EllipseEffect>(); local
358 b->add32(ee.getEdgeType());
362 const EllipseEffect& ee = effect.cast<EllipseEffect>(); local
363 if (ee
[all...]
/external/apache-http/src/org/apache/commons/codec/
H A DStringEncoderComparator.java82 catch (EncoderException ee) {
/external/clang/test/Sema/
H A Dconditional-expr.c31 enum {xxx,yyy,zzz} e, *ee; local
33 ee = ee ? &x : ee ? &i : &e; // expected-warning {{pointer type mismatch}}
/external/clang/test/OpenMP/
H A Dparallel_ast_print.cpp83 Enum ee; local
84 // CHECK: Enum ee;
89 #pragma omp parallel default(none), private(argc,b) firstprivate(argv) if (argc > 0) num_threads(ee) copyin(a) proc_bind(spread) reduction(| : c, d) reduction(* : e)
90 // CHECK-NEXT: #pragma omp parallel default(none) private(argc,b) firstprivate(argv) if(argc > 0) num_threads(ee) copyin(a) proc_bind(spread) reduction(|: c,d) reduction(*: e)
H A Dparallel_sections_ast_print.cpp115 Enum ee; local
116 // CHECK: Enum ee;
125 #pragma omp parallel sections default(none), private(argc, b) firstprivate(argv) if (argc > 0) num_threads(ee) copyin(a) proc_bind(spread) reduction(| : c, d) reduction(* : e) lastprivate(argv)
126 // CHECK-NEXT: #pragma omp parallel sections default(none) private(argc,b) firstprivate(argv) if(argc > 0) num_threads(ee) copyin(a) proc_bind(spread) reduction(|: c,d) reduction(*: e) lastprivate(argv)
H A Dtask_ast_print.cpp83 Enum ee; local
84 // CHECK: Enum ee;
H A Dteams_ast_print.cpp95 Enum ee; local
96 // CHECK: Enum ee;
/external/guava/guava-bootstrap/src/java/util/concurrent/
H A DAbstractExecutorService.java51 ExecutionException ee = null;
87 ee = eex;
89 ee = new ExecutionException(rex);
94 if (ee == null)
95 ee = new ExecutionException();
96 throw ee;
/external/llvm/examples/BrainF/
H A DBrainFDriver.cpp144 ExecutionEngine *ee = EngineBuilder(std::move(Mod)).create(); local
147 GenericValue gv = ee->runFunction(brainf_func, args);
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dfft.c73 WebRtc_Word16 dd, ee, ff, gg, hh, ii; local
207 ee = 0;
214 ee = ff + (WebRtc_Word16)WEBRTC_SPL_MUL_16_16(hh, ff);
215 dd = ee + 60;
216 ccc2Q14 = kCosTabFfftQ14[ee];
307 ee=0;
315 ee = ff+60;
321 sss2Q14 = kCosTabFfftQ14[ee];
/external/v8/test/webkit/
H A Drehash-assign.js59 ee = 4;
/external/valgrind/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 cd ab dd cc bb aa 11 00 ff ee b
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DMoreExecutors.java624 ExecutionException ee = null;
658 ee = eex;
660 ee = new ExecutionException(rex);
665 if (ee == null) {
666 ee = new ExecutionException(null);
668 throw ee;
/external/javasqlite/src/main/java/SQLite/JDBC2z/
H A DJDBCConnection.java133 } catch (SQLite.Exception ee) {
171 } catch (SQLite.Exception ee) {
351 } catch (SQLite.Exception ee) {
358 throw new SQLException(ee.toString());
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DLineGraph.java73 Point ee= g.stringExtent(this.fTitle);
74 int titleHeight= ee.y;

Completed in 1875 milliseconds

12345