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

1234567

/external/kernel-headers/original/uapi/linux/
H A Derrqueue.h23 #define SO_EE_OFFENDER(ee) ((struct sockaddr*)((ee)+1))
/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/chromium_org/third_party/webrtc/base/
H A Dsignalthread.cc36 EnterExit ee(this);
43 EnterExit ee(this);
50 EnterExit ee(this);
62 EnterExit ee(this);
85 EnterExit ee(this);
98 EnterExit ee(this);
104 EnterExit ee(this);
137 EnterExit ee(this);
145 EnterExit ee(this);
/external/llvm/test/Bindings/Ocaml/
H A Dexecutionengine.ml71 let ee = ExecutionEngine.create m in
72 ExecutionEngine.add_module m2 ee;
75 ExecutionEngine.run_static_ctors ee;
78 let res = ExecutionEngine.run_function_as_main main [|"test"|] [||] ee in
82 ExecutionEngine.free_machine_code main ee;
85 match ExecutionEngine.find_function "dne" ee with
89 match ExecutionEngine.find_function "plus" ee with
97 ee in
101 Llvm.dispose_module (ExecutionEngine.remove_module m2 ee);
104 ExecutionEngine.run_static_dtors ee;
[all...]
/external/chromium_org/third_party/skia/src/gpu/effects/
H A DGrOvalEffect.cpp249 const EllipseEffect& ee = other.cast<EllipseEffect>(); local
250 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/skia/src/gpu/effects/
H A DGrOvalEffect.cpp248 const EllipseEffect& ee = CastEffect<EllipseEffect>(other); local
249 return fEdgeType == ee.fEdgeType && fCenter == ee.fCenter && fRadii == ee.fRadii;
311 const EllipseEffect& ee = drawEffect.castEffect<EllipseEffect>(); local
331 switch (ee.getEdgeType()) {
354 const EllipseEffect& ee = drawEffect.castEffect<EllipseEffect>(); local
355 return ee.getEdgeType();
359 const EllipseEffect& ee = drawEffect.castEffect<EllipseEffect>(); local
360 if (ee
[all...]
/external/llvm/bindings/ocaml/executionengine/
H A Dllvm_executionengine.mli91 is not garbage collected and must be destroyed with [dispose ee].
98 [dispose ee].
105 engine is not garbage collected and must be destroyed with [dispose ee].
109 (** [dispose ee] releases the memory used by the execution engine and must be
113 (** [add_module m ee] adds the module [m] to the execution engine [ee]. *)
116 (** [remove_module m ee] removes the module [m] from the execution engine
117 [ee], disposing of [m] and the module referenced by [mp]. Raises
121 (** [find_function n ee] finds the function named [n] defined in any of the
122 modules owned by the execution engine [ee]
[all...]
/external/chromium_org/net/data/ssl/scripts/
H A Dgenerate-test-certs.sh47 -config ee.cnf
53 -config ee.cnf
109 -config ../scripts/ee.cnf -newkey rsa:2048 -text \
115 -config ../scripts/ee.cnf -newkey rsa:2048 -text \
120 -config ../scripts/ee.cnf -newkey rsa:2048 -text \
126 -config ../scripts/ee.cnf -newkey rsa:2048 -text \
H A Dgenerate-weak-test-chains.sh100 -out out/$key_type-ee-by-$signer_key_type-intermediate.key $key_size
153 -key out/$key_type-ee-by-$signer_key_type-intermediate.key \
154 -out out/$key_type-ee-by-$signer_key_type-intermediate.csr \
155 -config ee.cnf
165 -in out/$key_type-ee-by-$signer_key_type-intermediate.csr \
166 -out out/$key_type-ee-by-$signer_key_type-intermediate.pem \
/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/chromium_org/net/tools/quic/test_tools/
H A Dmock_epoll_server.h58 // by 'ee' will be delivered. Note that it -is- possible
62 void AddEvent(int64 time_in_usec, const struct epoll_event& ee) { argument
63 event_queue_.insert(std::make_pair(time_in_usec, ee));
/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)
/external/chromium_org/net/tools/epoll_server/
H A Depoll_server.cc556 struct epoll_event ee; local
557 memset(&ee, 0, sizeof(ee));
561 if (epoll_ctl(epoll_fd_, EPOLL_CTL_DEL, fd, &ee)) {
572 struct epoll_event ee; local
573 memset(&ee, 0, sizeof(ee));
574 ee.events = event_mask | EPOLLERR | EPOLLHUP;
575 ee.data.fd = fd;
577 event_recorder_.RecordFDMaskEvent(fd, ee
590 struct epoll_event ee; local
[all...]
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDQuadImplicit.cpp78 double ee = e * e; local
79 fP[kX_Coeff] = -2*cdd + bde - a*ee + 2*ad*f;
85 fP[kC_Coeff] = aaf*f + ac*ee + d*f*bb_2ac - abe*f + c*cdd - c*bde;
/external/qemu/telephony/
H A Dsysdeps_posix.c213 int ee; local
214 for (ee = 0; ee < SYS_EVENT_MAX; ee++)
215 if (adds & (1 << ee))
216 FD_SET( channel->fd, &_s_fdsets[ee] );
219 int ee; local
220 for (ee = 0; ee < SYS_EVENT_MAX; ee
[all...]
/external/skia/src/pathops/
H A DSkDQuadImplicit.cpp78 double ee = e * e; local
79 fP[kX_Coeff] = -2*cdd + bde - a*ee + 2*ad*f;
85 fP[kC_Coeff] = aaf*f + ac*ee + d*f*bb_2ac - abe*f + c*cdd - c*bde;
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractListeningExecutorService.java79 ExecutionException ee = null;
114 ee = eex;
116 ee = new ExecutionException(rex);
121 if (ee == null) {
122 ee = new ExecutionException(null);
124 throw ee;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuadraticParameterization.cpp80 double ee = e * e; local
81 p[x_coeff] = -2*cdd + bde - a*ee + 2*ad*f;
87 p[c_coeff] = aaf*f + ac*ee + d*f*bb_2ac - abe*f + c*cdd - c*bde;

Completed in 526 milliseconds

1234567