HomeSort by relevance Sort by last modified time
    Searched refs:vv (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/compiler-rt/BlocksRuntime/tests/
blockimport.c 31 void (^vv)(void) = ^{
38 //printf("Block dump %s\n", _Block_dump(vv));
40 struct Block_layout *layout = (struct Block_layout *)(void *)vv;
47 void (^vvcopy)(void) = Block_copy(vv);
nestedimport.c 30 void (^vv)(void) = ^{
37 vv();
  /ndk/tests/build/issue34613-neon/jni/
issue34613-neon.cpp 6 float32x4_t vv = vmulq_n_f32( v0, f); local
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
math-spectral-norm.js 34 var i, u=[], v=[], w=[], vv=0, vBv=0;
44 vv += v[i]*v[i];
46 return Math.sqrt(vBv/vv);
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
math-spectral-norm.js 34 var i, u=[], v=[], w=[], vv=0, vBv=0;
44 vv += v[i]*v[i];
46 return Math.sqrt(vBv/vv);
  /external/openssl/crypto/conf/
conf_api.c 83 CONF_VALUE *v,vv; local
86 vv.name=NULL;
87 vv.section=(char *)section;
88 v=lh_CONF_VALUE_retrieve(conf->data,&vv);
131 CONF_VALUE *v,vv; local
139 vv.name=(char *)name;
140 vv.section=(char *)section;
141 v=lh_CONF_VALUE_retrieve(conf->data,&vv);
149 vv.section="default";
150 vv.name=(char *)name
250 CONF_VALUE *vv; local
274 CONF_VALUE *v=NULL,*vv; local
    [all...]
conf_def.c 423 vv=(CONF_VALUE *)lh_insert(conf->data,v);
424 if (vv != NULL)
426 sk_CONF_VALUE_delete_ptr(ts,vv);
427 OPENSSL_free(vv->name);
428 OPENSSL_free(vv->value);
429 OPENSSL_free(vv);
  /external/clang/test/CodeGen/
overloadable.c 19 v4hi vv; local
25 vv = f(vv);
  /external/clang/test/SemaCXX/
for-range-no-std.cpp 41 void (*vv[])() = {PR11601, PR11601, PR11601};
42 for (void (*i)() : vv) i();
  /external/stlport/src/
num_get_float.cpp 489 _ll vv; local
490 vv.i64 = 0L;
493 vv.i64 *= 10;
494 vv.i64 += *buffer++;
497 if ( vv.i64 == ULL(0) ) { /* Check for zero and treat it as a special case */
507 if ((vv.i64 >> 32) != 0) { nzero = 32; }
508 if ((vv.i64 >> (16 + nzero)) != 0) { nzero += 16; }
509 if ((vv.i64 >> ( 8 + nzero)) != 0) { nzero += 8; }
510 if ((vv.i64 >> ( 4 + nzero)) != 0) { nzero += 4; }
511 if ((vv.i64 >> ( 2 + nzero)) != 0) { nzero += 2;
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 489 _ll vv; local
490 vv.i64 = 0L;
493 vv.i64 *= 10;
494 vv.i64 += *buffer++;
497 if ( vv.i64 == ULL(0) ) { /* Check for zero and treat it as a special case */
507 if ((vv.i64 >> 32) != 0) { nzero = 32; }
508 if ((vv.i64 >> (16 + nzero)) != 0) { nzero += 16; }
509 if ((vv.i64 >> ( 8 + nzero)) != 0) { nzero += 8; }
510 if ((vv.i64 >> ( 4 + nzero)) != 0) { nzero += 4; }
511 if ((vv.i64 >> ( 2 + nzero)) != 0) { nzero += 2;
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidTreeMapTest.java 76 Integer vv = new Integer(val); local
77 String tms = tm.get(vv);
78 String hms = hm.get(vv);
97 Integer vv = new Integer(val); local
98 String tms = tm.get(vv);
99 String hms = hm.get(vv);
  /external/opencv/cvaux/src/
cvfindhandregion.cpp 75 float *vv = 0; local
108 vv = (float *) cvAlloc( count * sizeof( float ));
110 if( vv == NULL )
161 vv[i_point] = value;
176 l = cvRound( (vv[i] - vmin) / bsize );
229 if( vv[l] >= hand_left && vv[l] <= hand_right )
243 if( vv != NULL )
244 cvFree( &vv );
298 float *vv = 0 local
    [all...]
  /device/asus/flo/
init.flo.bt.sh 60 logwrapper /system/bin/hci_qcomm_init -e $PWR_CLASS -vv
62 logwrapper /system/bin/hci_qcomm_init -b $BDADDR -e $PWR_CLASS -vv
  /device/lge/mako/
init.mako.bt.sh 60 logwrapper /system/bin/hci_qcomm_init -e $PWR_CLASS -vv
62 logwrapper /system/bin/hci_qcomm_init -b $BDADDR -e $PWR_CLASS -vv
  /external/srec/srec/clib/
matrix_i.c 106 double *vv; local
108 vv = (double *) CALLOC(dim + 5, sizeof(double), "clib.ludcmp.vv");
120 vv[ii] = 1 / big;
140 if ((dumm = (double)(vv[ii] * fabs(sum))) >= big)
156 vv[imax] = vv[jj];
172 FREE((char *)vv);
  /external/harfbuzz_ng/src/
gen-indic-table.py 104 vv = values[i].keys () variable
105 vv.sort ()
106 for v in vv:
198 vv = values[i].keys () variable
199 vv.sort ()
200 for v in vv:
  /external/mksh/src/
Build.sh 51 vv() { function
55 eval "$@" >vv.out 2>&1
56 sed "s^${_c} " <vv.out
164 vv ']' "$CC $CFLAGS $CPPFLAGS $LDFLAGS $NOWARN conftest.c $LIBS $ccpr"
180 test -n "$vscan" && grep $vscan vv.out >/dev/null 2>&1 && fv=$fr
185 rmf conftest.c conftest.o ${tcfn}* vv.out
423 Rebuild.sh signames.inc test.sh x vv.out
486 vv ']' "${CC-cc} -E $CFLAGS $CPPFLAGS $NOWARN conftest.c | grep ct= | tr -d \\\\015 >x"
489 rmf x vv.out
777 vv '|' "oslevel >&2
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
OMX_VPP_ImgConv.c 182 OMX_U8 *uu, *vv; /* U and V buffer in 444 space */ local
214 vv = vvOut+3*KDeepFiltering*(iWidth+iAlign);
217 pvv = vv;
353 vv = vvOut+3*i*(iWidth+iAlign);
355 pvv = vv;
421 vv = vvOut;
425 pv1 = vv;
426 pv2 = vv+iWidth+iAlign;
462 OMX_U8 *uu, *vv; local
473 vv = pComponentPrivate->overlay->iOvlyConvBufPtr + (iWidth+iAlign)*2;
    [all...]
  /external/webp/src/dsp/
upsampling_neon.c 103 int16x8_t vv = vreinterpretq_s16_u16(vsubl_u8(v, u128)); \
106 int16x8_t vd = vshlq_n_s16(vv, 1); \
108 int32x4_t vrl = vqdmlal_lane_s16(vshll_n_s16(vget_low_s16(vv), 1), \
110 int32x4_t vrh = vqdmlal_lane_s16(vshll_n_s16(vget_high_s16(vv), 1), \
115 int32x4_t vl = vmovl_s16(vget_low_s16(vv)); \
116 int32x4_t vh = vmovl_s16(vget_high_s16(vv)); \
119 int32x4_t gcl = vqdmlal_lane_s16(ugl, vget_low_s16(vv), cf16, 2); \
120 int32x4_t gch = vqdmlal_lane_s16(ugh, vget_high_s16(vv), cf16, 2); \
  /packages/apps/Music/src/com/android/music/
TouchInterceptor.java 258 View vv = getChildAt(i); local
259 if (vv == null) {
268 if (vv.equals(first)) {
273 } else if (vv.equals(first)) {
275 if (mDragPos == mSrcDragPos || getPositionForView(vv) == getCount() - 1) {
290 ViewGroup.LayoutParams params = vv.getLayoutParams();
292 vv.setLayoutParams(params);
293 vv.setVisibility(visibility);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
ShaderUtils.java 241 for (float vv : v) {
242 r[i++] = vv / l;
249 for (float vv : v) {
250 s += vv * vv;
  /external/skia/legacy/src/animator/
SkOperandIterpolator.cpp 112 SkOperand v1[3], v2[3], v[3], vv[3]; local
140 SkASSERT(memcmp(v, iset(vv, 60, 120, 180), sizeof(v)) == 0);
  /external/skia/src/animator/
SkOperandIterpolator.cpp 112 SkOperand v1[3], v2[3], v[3], vv[3]; local
140 SkASSERT(memcmp(v, iset(vv, 60, 120, 180), sizeof(v)) == 0);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/
CameraFormatsActivity.java 624 int vv = data[vIndex] & 0xFF; local
626 Color.rgb(yv, uv, vv);
673 int uv = 0, vv = 0; local
677 vv = data[vIndex] & 0xFF;
683 Color.rgb(yv, uv, vv);
710 int vv = data[vIndex] & 0xFF; local
711 rgbData[rgbIndex] = Color.rgb(yv,uv,vv);

Completed in 2332 milliseconds

1 2 3