HomeSort by relevance Sort by last modified time
    Searched refs:z1 (Results 51 - 75 of 145) sorted by null

1 23 4 5 6

  /external/compiler-rt/test/asan/TestCases/
stack-overflow.cc 29 volatile int z0, z1, z2, z3, z4, z5, z6, z7, z8, z9, z10, z11, z12, z13; variable
38 t1 = z1;
53 z1 = t1;
  /external/chromium_org/third_party/sqlite/src/src/
func.c 324 char *z1; local
333 z1 = contextMalloc(context, ((i64)n)+1);
334 if( z1 ){
335 memcpy(z1, z2, n+1);
336 for(i=0; z1[i]; i++){
337 z1[i] = (char)sqlite3Toupper(z1[i]);
339 sqlite3_result_text(context, z1, -1, sqlite3_free);
344 u8 *z1; local
353 z1 = contextMalloc(context, ((i64)n)+1)
    [all...]
test_tclvar.c 188 const char *z1; local
195 z1 = Tcl_GetString(p1);
201 sqlite3_result_text(ctx, z1, -1, SQLITE_TRANSIENT);
209 Tcl_Obj *pVal = Tcl_GetVar2Ex(interp, z1, *z2?z2:0, TCL_GLOBAL_ONLY);
  /frameworks/rs/scriptc/
rs_graphics.rsh 256 * @param z1
268 rsgDrawQuad(float x1, float y1, float z1,
280 * @param z1
300 rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1,
414 float x1, y1, z1, x2, y2, z2;
415 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2);
418 bBoxMin->z = z1;
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/scriptc/
rs_graphics.rsh 252 * @param z1
264 rsgDrawQuad(float x1, float y1, float z1,
276 * @param z1
296 rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1,
410 float x1, y1, z1, x2, y2, z2;
411 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2);
414 bBoxMin->z = z1;
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/scriptc/
rs_graphics.rsh 252 * @param z1
264 rsgDrawQuad(float x1, float y1, float z1,
276 * @param z1
296 rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1,
410 float x1, y1, z1, x2, y2, z2;
411 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2);
414 bBoxMin->z = z1;
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/scriptc/
rs_graphics.rsh 252 * @param z1
264 rsgDrawQuad(float x1, float y1, float z1,
276 * @param z1
296 rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1,
410 float x1, y1, z1, x2, y2, z2;
411 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2);
414 bBoxMin->z = z1;
  /prebuilts/sdk/renderscript/include/
rs_graphics.rsh 256 * @param z1
268 rsgDrawQuad(float x1, float y1, float z1,
280 * @param z1
300 rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1,
414 float x1, y1, z1, x2, y2, z2;
415 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2);
418 bBoxMin->z = z1;
  /prebuilts/sdk/tools/darwin/renderscript/include/
rs_graphics.rsh 256 * @param z1
268 rsgDrawQuad(float x1, float y1, float z1,
280 * @param z1
300 rsgDrawQuadTexCoords(float x1, float y1, float z1, float u1, float v1,
414 float x1, y1, z1, x2, y2, z2;
415 rsgMeshComputeBoundingBox(mesh, &x1, &y1, &z1, &x2, &y2, &z2);
418 bBoxMin->z = z1;
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_wtengine.c 358 EAS_I32 z1; local
368 z1 = pFilter->z1;
383 acc1 = z1 * b1;
386 z2 = z1;
389 z1 = acc0 >> 14;
390 *pAudioBuffer++ = (EAS_I16) z1;
394 pFilter->z1 = (EAS_I16) z1;
eas_wtengine.h 78 EAS_I16 z1; /* 1 sample delay state variable */ member in struct:s_filter_control_tag
  /external/sonivox/arm-wt-22k/lib_src/
eas_wtengine.c 358 EAS_I32 z1; local
368 z1 = pFilter->z1;
383 acc1 = z1 * b1;
386 z2 = z1;
389 z1 = acc0 >> 14;
390 *pAudioBuffer++ = (EAS_I16) z1;
394 pFilter->z1 = (EAS_I16) z1;
eas_wtengine.h 78 EAS_I16 z1; /* 1 sample delay state variable */ member in struct:s_filter_control_tag
  /frameworks/base/services/core/java/com/android/server/power/
WirelessChargerDetector.java 312 private static boolean hasMoved(float x1, float y1, float z1,
314 final double dotProduct = (x1 * x2) + (y1 * y2) + (z1 * z2);
315 final double mag1 = Math.sqrt((x1 * x1) + (y1 * y1) + (z1 * z1));
327 + ", x1=" + x1 + ", y1=" + y1 + ", z1=" + z1
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginOcclusionSupport.cpp 74 int z1 = ro1->style()->zIndex(); local
76 if (z1 > z2)
78 if (z1 < z2)
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
quantize_sse2.c 48 __m128i z1 = _mm_load_si128((__m128i *)(b->coeff+8)); local
67 sz1 = _mm_srai_epi16(z1, 15);
71 x1 = _mm_xor_si128(z1, sz1);
149 __m128i z1 = _mm_load_si128((__m128i *)(b->coeff + 8)); local
163 sz1 = _mm_srai_epi16(z1, 15);
167 x1 = _mm_xor_si128(z1, sz1);
  /external/libvpx/libvpx/vp8/encoder/x86/
quantize_sse2.c 48 __m128i z1 = _mm_load_si128((__m128i *)(b->coeff+8)); local
67 sz1 = _mm_srai_epi16(z1, 15);
71 x1 = _mm_xor_si128(z1, sz1);
149 __m128i z1 = _mm_load_si128((__m128i *)(b->coeff + 8)); local
163 sz1 = _mm_srai_epi16(z1, 15);
167 x1 = _mm_xor_si128(z1, sz1);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
quantize_sse2.c 48 __m128i z1 = _mm_load_si128((__m128i *)(b->coeff+8)); local
67 sz1 = _mm_srai_epi16(z1, 15);
71 x1 = _mm_xor_si128(z1, sz1);
149 __m128i z1 = _mm_load_si128((__m128i *)(b->coeff + 8)); local
163 sz1 = _mm_srai_epi16(z1, 15);
167 x1 = _mm_xor_si128(z1, sz1);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_3dlut.rs 53 float4 z1 = mix(yz01, yz11, f.y);
55 float4 v = mix(z0, z1, f.z);
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
colorcube.rs 60 uint4 z1 = ((yz01 * weight1.y) + (yz11 * weight2.y)) >> (uint4)16;
62 uint4 v = ((z0 * weight1.z) + (z1 * weight2.z)) >> (uint4)16;
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
colorcube.rs 65 uint4 z1 = ((yz01 * weight1.y) + (yz11 * weight2.y)) >> (uint4)16;
67 uint4 v = ((z0 * weight1.z) + (z1 * weight2.z)) >> (uint4)16;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
colorcube.rs 60 uint4 z1 = ((yz01 * weight1.y) + (yz11 * weight2.y)) >> (uint4)16;
62 uint4 v = ((z0 * weight1.z) + (z1 * weight2.z)) >> (uint4)16;
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_noise.c 346 float x1, y1, z1, x2, y2, z2, x3, y3, z3; local
417 z1 = z0 - k1 + G3;
439 t1 = 0.6f - x1 * x1 - y1 * y1 - z1 * z1;
446 y1, z1);
529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local
560 z1 = z0 - k1 + G4;
592 t1 = 0.6f - x1 * x1 - y1 * y1 - z1 * z1 - w1 * w1;
600 x1, y1, z1, w1)
    [all...]
  /external/mesa3d/src/mesa/program/
prog_noise.c 346 float x1, y1, z1, x2, y2, z2, x3, y3, z3; local
417 z1 = z0 - k1 + G3;
439 t1 = 0.6f - x1 * x1 - y1 * y1 - z1 * z1;
446 y1, z1);
529 float x1, y1, z1, w1, x2, y2, z2, w2, x3, y3, z3, w3, x4, y4, z4, w4; local
560 z1 = z0 - k1 + G4;
592 t1 = 0.6f - x1 * x1 - y1 * y1 - z1 * z1 - w1 * w1;
600 x1, y1, z1, w1)
    [all...]
  /frameworks/base/core/java/android/util/
MathUtils.java 100 public static float dist(float x1, float y1, float z1, float x2, float y2, float z2) {
103 final float z = (z2 - z1);

Completed in 2258 milliseconds

1 23 4 5 6