Searched refs:right (Results 1 - 25 of 2377) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DViewfinderView.java94 canvas.drawRect(frame.right + 1, frame.top, width, frame.bottom + 1, paint);
105 canvas.drawRect(frame.left, frame.top, frame.right + 1, frame.top + 2, paint);
107 canvas.drawRect(frame.right - 1, frame.top, frame.right + 1, frame.bottom - 1, paint);
108 canvas.drawRect(frame.left, frame.bottom - 1, frame.right + 1, frame.bottom + 1, paint);
115 canvas.drawRect(frame.left + 2, middle - 1, frame.right - 1, middle + 2, paint);
157 frame.right + POINT_SIZE,
/external/zxing/qr_scanner/src/com/google/zxing/client/android/camera/
H A DCameraManager.java222 rect.right = rect.right * cameraResolution.x / screenResolution.x;
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp1303 size_t right = array_size - 1; local
1304 while(left <= right)
1306 size_t mid = (left + right) / 2;
1307 if(array[mid] <= value) left = mid + 1; /*the value to find is more to the right*/
1308 else if(array[mid - 1] > value) right = mid - 1; /*the value to find is more to the left*/
/external/webrtc/src/common_audio/resampler/
H A Dresampler.cc447 WebRtc_Word16* right = (WebRtc_Word16*)malloc(lengthIn * sizeof(WebRtc_Word16) / 2); local
455 right[i >> 1] = samplesIn[i + 1];
463 // Do resampling for right channel
465 res |= slave_right_->Push(right, lengthIn, out_right, maxLen / 2, actualOutLen_right);
469 free(right);
484 free(right);
/external/webrtc/src/modules/audio_processing/
H A Daudio_buffer.cc24 void StereoToMono(const int16_t* left, const int16_t* right, argument
26 assert(left != NULL && right != NULL && out != NULL);
29 static_cast<int32_t>(right[i])) >> 1;
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Ddes-internal.c320 u32 work, right, leftt; local
324 right = block[1];
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
327 right ^= work;
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
331 right ^= work;
334 work = ((right >> 2) ^ leftt) & 0x33333333L;
336 right ^= (work << 2);
338 work = ((right >> 8) ^ leftt) & 0x00ff00ffL;
340 right
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Ddes-internal.c320 u32 work, right, leftt; local
324 right = block[1];
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
327 right ^= work;
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
331 right ^= work;
334 work = ((right >> 2) ^ leftt) & 0x33333333L;
336 right ^= (work << 2);
338 work = ((right >> 8) ^ leftt) & 0x00ff00ffL;
340 right
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Ddes-internal.c320 u32 work, right, leftt; local
324 right = block[1];
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
327 right ^= work;
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
331 right ^= work;
334 work = ((right >> 2) ^ leftt) & 0x33333333L;
336 right ^= (work << 2);
338 work = ((right >> 8) ^ leftt) & 0x00ff00ffL;
340 right
[all...]
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dnetworkconfig.cpp316 inner.right(inner.size() - 4).
321 inner.right(inner.size() - 4).
330 inner.right(inner.size() - 4).
/external/webp/src/utils/
H A Drescaler.c54 int left = src[channel], right = src[channel]; local
57 left = right;
59 right = src[x_in];
62 wrk->frow[x_out] = right * wrk->x_add + (left - right) * accum;
/external/valgrind/main/VEX/priv/
H A Dhost_s390_isel.c297 /* Move constant into right subtree */
347 /* Constants and memory accesses should be right operands */
348 #define order_commutative_operands(left, right) \
354 left = right; \
355 right = tmp; \
1509 /* As right shifts of one/two byte opreands are implemented using a
1996 IRExpr *right = triop->arg3; local
2001 s390_isel_float128_expr(&op2_hi, &op2_lo, env, right); /* 2nd operand */
2332 IRExpr *right = triop->arg3; local
2337 op2 = s390_isel_float_expr(env, right); /* Proces
2647 IRExpr *right = triop->arg3; local
3186 IRExpr *right = triop->arg3; local
[all...]
/external/valgrind/main/cachegrind/
H A Dcg_merge.c554 // Did we get the right number?
969 struct _AvlNode* right; member in struct:_AvlNode
1000 AvlNode* b = a->right;
1002 a->right = b->left;
1006 /* Swing to the right. Warning: no balance maintainance. */
1012 a->left = b->right;
1013 b->right = a;
1022 root->right->balance = 1;
1026 root->right->balance = 0;
1030 root->right
[all...]
/external/valgrind/main/coregrind/m_demangle/
H A Dcp-demangle.c252 #define d_right(dc) ((dc)->u.s_binary.right)
802 struct demangle_component *right)
830 if (left == NULL || right == NULL)
865 /* This needs a right parameter, but the left parameter can be
868 if (right == NULL)
895 p->u.s_binary.right = right;
1178 there may be CV-qualifiers on its right argument which
1190 dc->u.s_binary.right = dcr;
2925 struct demangle_component *right; local
800 d_make_comp(struct d_info *di, enum demangle_component_type type, struct demangle_component *left, struct demangle_component *right) argument
[all...]
H A Ddemangle.h214 right (a component type with only one subtree puts it in the left
222 some such thing, and the right subtree is a name qualified by
226 right subtree is a name which is local to that function. */
228 /* A typed name. The left subtree is a name, and the right subtree
231 /* A template. The left subtree is a template name, and the right
251 this is a vtable, and the right subtree is the derived type for
305 qualified, and the right subtree is the name of the
325 /* A function type. The left subtree is the return type. The right
331 expression. The right subtree is the element type. */
334 and the right subtre
527 struct demangle_component *right; member in struct:demangle_component::__anon32526::__anon32537
[all...]
/external/valgrind/main/coregrind/
H A Dm_oset.c43 // right pointer, and a word containing balancing information and a
95 // The padding ensures that magic is right at the end of the node,
100 AvlNode* right; member in struct:_OSetNode
207 AvlNode* b = a->right;
209 a->right = b->left;
213 // Swing to the right. Warning: no balance maintainance.
219 a->left = b->right;
220 b->right = a;
229 root->right->balance = 1;
233 root->right
[all...]
H A Dpub_core_threadstate.h184 Int right; member in struct:__anon32719::__anon32720::__anon32722
188 Int right; member in struct:__anon32719::__anon32720::__anon32723
/external/valgrind/main/coregrind/m_syswrap/
H A Dpriv_syswrap-darwin.h42 void record_named_port(ThreadId tid, mach_port_t port, mach_port_right_t right, const char *name);
H A Dsyswrap-darwin.c359 mach_port_type_t type; /* right type(s) */
468 void record_port_mod_refs(mach_port_t port, mach_port_type_t right, Int delta) argument
475 vg_assert(right != MACH_PORT_TYPE_DEAD_NAME);
476 if (right & MACH_PORT_TYPE_SEND) {
483 right = right & ~MACH_PORT_TYPE_SEND;
484 if (right) {
487 i->type |= right;
489 i->type &= ~right;
527 // this task gets a send right
557 record_named_port(ThreadId tid, mach_port_t port, mach_port_right_t right, const char *name) argument
601 record_unnamed_port(ThreadId tid, mach_port_t port, mach_port_right_t right) argument
4506 mach_port_right_t right; member in struct:__anon32595
4604 mach_port_right_t right; member in struct:__anon32599
4648 mach_port_right_t right; member in struct:__anon32601
[all...]
/external/valgrind/main/helgrind/tests/
H A Dtc14_laog_dinphils.c16 long right = (left + 1) % 5; local
19 pthread_mutex_lock(&chop[right]);
22 pthread_mutex_unlock(&chop[right]);
/external/valgrind/main/none/tests/amd64/
H A Dshrld.stdout.exp790 right 64
1052 right 32
1315 right 16
/external/tremolo/Tremolo/
H A Dmdct.c435 void mdct_shift_right(int n, DATA_TYPE *in, DATA_TYPE *right){ argument
441 right[i]=in[i<<1];
471 DATA_TYPE *right,
480 DATA_TYPE *r=right+(lW ? n1>>2 : n0>>2);
468 mdct_unroll_lap(int n0,int n1, int lW,int W, DATA_TYPE *in, DATA_TYPE *right, LOOKUP_T *w0, LOOKUP_T *w1, ogg_int16_t *out, int step, int start, int end ) argument
H A Dmdct.h58 extern void mdct_shift_right(int n, DATA_TYPE *in, DATA_TYPE *right);
61 DATA_TYPE *in,DATA_TYPE *right,
H A DmdctARM.s260 @ r2 = right
H A DmdctLARM.s261 @ r2 = right

Completed in 913 milliseconds

1234567891011>>