/external/valgrind/main/exp-ptrcheck/tests/ |
zero.c | 8 char c, *c0 = malloc(0), *c1; local 10 c = *c0; // bad 12 c0 = realloc(c0, 10); 13 assert(c0); 15 c = *c0; // ok 17 c1 = c0; 18 c0 = realloc(c0, 0); 19 assert(!c0); [all...] |
justify.c | 14 char *c0, *c1; local 16 c0 = malloc(10000); 18 assert(c0 && c1); 20 c = c0[15000];
|
unaligned.c | 10 char c0[8], c1[8], c2[8], c3[8], c4[8]; local 13 char** p0 = (char**)&c0[0]; char** p1 = (char**)&c1[1];
|
partial.c | 9 int* x6 = malloc(6); char c, *c0 = malloc(0); local 44 c = * c0;
|
/bootable/bootloader/legacy/arch_armv6/ |
dcc.S | 35 mrc 14, 0, r0, c0, c1, 0 38 mrcne 14, 0, r0, c0, c5, 0 43 mrc 14, 0, r15, c0, c1, 0 44 mcrcc 14, 0, r0, c0, c5, 0
|
/external/openssl/crypto/bn/asm/ |
co-586.pl | 18 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 30 &add($c0,"eax"); 40 &mov(&DWP($i*4,"eax","",0),$c0) if $pos > 0; # save r[]; 46 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 61 &add($c0,"eax"); 69 &mov(&DWP($i*4,$r,"",0),$c0) if $pos > 0; # save r[]; 75 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 95 &add($c0,"eax"); 100 &mov(&DWP($i*4,$r,"",0),$c0) if $pos > 0; # save r[]; 108 local($a,$b,$c0,$c1,$c2) [all...] |
/external/openssl/crypto/bn/asm/x86/ |
comba.pl | 6 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 18 &add($c0,"eax"); 28 &mov(&DWP($i*4,"eax","",0),$c0) if $pos > 0; # save r[]; 34 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 49 &add($c0,"eax"); 57 &mov(&DWP($i*4,$r,"",0),$c0) if $pos > 0; # save r[]; 63 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_; 83 &add($c0,"eax"); 88 &mov(&DWP($i*4,$r,"",0),$c0) if $pos > 0; # save r[]; 96 local($a,$b,$c0,$c1,$c2) [all...] |
/frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
omxVCM4P10_TransformDequantLumaDCFromPair.c | 72 int c0 = pData[i+0]; local 76 pData[i+0] = (OMX_S16)(c0+c1+c2+c3); 77 pData[i+1] = (OMX_S16)(c0+c1-c2-c3); 78 pData[i+2] = (OMX_S16)(c0-c1-c2+c3); 79 pData[i+3] = (OMX_S16)(c0-c1+c2-c3); 85 int c0 = pData[i+0]; local 89 pData[i+0] = (OMX_S16)(c0+c1+c2+c3); 90 pData[i+4] = (OMX_S16)(c0+c1-c2-c3); 91 pData[i+8] = (OMX_S16)(c0-c1-c2+c3); 92 pData[i+12] = (OMX_S16)(c0-c1+c2-c3) [all...] |
/external/clang/test/CXX/expr/ |
p9.cpp | 16 signed char c0; variable 17 __typeof__(c0 + c0) c1;
|
/external/skia/tests/ |
ColorTest.cpp | 8 SkColor c0 = SkColorSetARGB(a, x, x, x); local 9 SkPMColor p0 = SkPreMultiplyColor(c0); 14 // we can't promise that c0 == c1, since c0 -> p0 is a many to one
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
Kube.java | 44 float c0 = -1.0f; local 52 mCubes[0] = new Cube(world, c0, c4, c0, c1, c5, c1); 53 mCubes[1] = new Cube(world, c2, c4, c0, c3, c5, c1); 54 mCubes[2] = new Cube(world, c4, c4, c0, c5, c5, c1); 56 mCubes[3] = new Cube(world, c0, c4, c2, c1, c5, c3); 60 mCubes[6] = new Cube(world, c0, c4, c4, c1, c5, c5); 64 mCubes[9] = new Cube(world, c0, c2, c0, c1, c3, c1); 65 mCubes[10] = new Cube(world, c2, c2, c0, c3, c3, c1) [all...] |
/external/openssl/crypto/bn/ |
bn_asm.c | 436 /* mul_add_c(a,b,c0,c1,c2) -- c+=a*b for three word number c=(c2,c1,c0) */ 437 /* mul_add_c2(a,b,c0,c1,c2) -- c+=2*a*b for three word number c=(c2,c1,c0) */ 438 /* sqr_add_c(a,i,c0,c1,c2) -- c+=a[i]^2 for three word number c=(c2,c1,c0) */ 439 /* sqr_add_c2(a,i,c0,c1,c2) -- c+=2*a[i]*a[j] for three word number c=(c2,c1,c0) */ 442 #define mul_add_c(a,b,c0,c1,c2) \ 446 c0=(c0+t1)&BN_MASK2; if ((c0) < t1) t2++; 849 BN_ULONG c0,c1,ml,*tp,n0; local 988 BN_ULONG c0,c1,*tp,n0=*n0p; local [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
InsnFormat.java | 589 * @param c0 code unit to write 591 protected static void write(AnnotatedOutput out, short c0) { 592 out.writeShort(c0); 599 * @param c0 code unit to write 602 protected static void write(AnnotatedOutput out, short c0, short c1) { 603 out.writeShort(c0); 611 * @param c0 code unit to write 615 protected static void write(AnnotatedOutput out, short c0, short c1, 617 out.writeShort(c0); 626 * @param c0 code unit to writ [all...] |
/external/jpeg/ |
jquant2.c | 121 * pointer corresponds to a C0 value (typically 2^5 = 32 pointers) and 320 int c0,c1,c2; local 330 for (c0 = c0min; c0 <= c0max; c0++) 332 histp = & histogram[c0][c1][c2min]; 335 boxp->c0min = c0min = c0; 341 for (c0 = c0max; c0 >= c0min; c0-- 429 int c0,c1,c2,cmax; local 507 int c0,c1,c2; local 923 register int c0, c1, c2; local [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
InsnFormat.java | 489 * @param c0 code unit to write 491 protected static void write(AnnotatedOutput out, short c0) { 492 out.writeShort(c0); 499 * @param c0 code unit to write 502 protected static void write(AnnotatedOutput out, short c0, short c1) { 503 out.writeShort(c0); 511 * @param c0 code unit to write 515 protected static void write(AnnotatedOutput out, short c0, short c1, 517 out.writeShort(c0); 526 * @param c0 code unit to writ [all...] |
/external/javassist/src/main/javassist/convert/ |
TransformWriteField.java | 41 char c0 = typedesc.charAt(0); local 42 if (c0 == 'J' || c0 == 'D') { // long or double
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
LoopBlinnClassifier.cpp | 39 LoopBlinnClassifier::Result LoopBlinnClassifier::classify(const FloatPoint& c0, 48 FloatPoint3D b0(c0.x(), c0.y(), 1.0f);
|
LoopBlinnClassifier.h | 71 // Classifies the given cubic bezier curve starting at c0, ending 73 static Result classify(const FloatPoint& c0,
|
/external/skia/src/core/ |
SkQuadClipper.cpp | 41 static bool chopMonoQuadAt(SkScalar c0, SkScalar c1, SkScalar c2, 47 SkScalar A = c0 - c1 - c1 + c2; 48 SkScalar B = 2*(c1 - c0); 49 SkScalar C = c0 - target;
|
/external/mesa3d/src/glsl/ |
ir_constant_expression.cpp | 376 for (unsigned c = 0, c0 = 0, c1 = 0; 378 c0 += c0_inc, c1 += c1_inc, c++) { 382 data.u[c] = MIN2(op[0]->value.u[c0], op[1]->value.u[c1]); 385 data.i[c] = MIN2(op[0]->value.i[c0], op[1]->value.i[c1]); 388 data.f[c] = MIN2(op[0]->value.f[c0], op[1]->value.f[c1]); 398 for (unsigned c = 0, c0 = 0, c1 = 0; 400 c0 += c0_inc, c1 += c1_inc, c++) { 404 data.u[c] = MAX2(op[0]->value.u[c0], op[1]->value.u[c1]); 407 data.i[c] = MAX2(op[0]->value.i[c0], op[1]->value.i[c1]); 410 data.f[c] = MAX2(op[0]->value.f[c0], op[1]->value.f[c1]) [all...] |
/external/webkit/Source/WebKit/win/Interfaces/ |
DOMWindow.idl | 40 uuid(19126DDF-E82F-46c0-A2F9-16879D7DADC5),
|
/hardware/ril/mock-ril/src/js/ |
simulated_radio_tests.js | 53 var c0 = simulatedRadio.addCall(CALLSTATE_ACTIVE, '16502859848', 'w'); 62 simulatedRadio.removeCall(c0.index); 199 var c0 = simulatedRadio.addCall(state, '16502849230', 'smith'); 211 if (c0.state == CALLSTATE_ACTIVE) { 217 if (c0.state == CALLSTATE_ACTIVE) { 234 simulatedRadio.removeCall(c0.index); 252 var c0 = simulatedRadio.addCall(CALLSTATE_HOLDING, '16502859848', 'w'); 308 simulatedRadio.removeCall(c0.index);
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_utilities_poly.cpp | 97 double c0,c1,c2,c3; local 124 c0=e/a; 129 min4_c0= -4.0*c0; 144 ns=lz_through2*lz_through2-c0; 169 double c0,c1,c2,c3; local 196 c0=e/a; 201 min4_c0= -4.0*c0; 216 ns=lz_through2*lz_through2-c0;
|
/external/clang/test/SemaCXX/ |
scope-check.cpp | 68 C c0; local 85 C c0; local 105 C c0; local
|
/external/clang/test/SemaTemplate/ |
instantiate-anonymous-union.cpp | 31 C<int> c0(0);
|