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

1 2 3 4 5 6 7

  /external/clang/test/Sema/
pointer-conversion.c 9 volatile char * c4; variable
10 char ** c5 = &c4; // expected-warning {{discards qualifiers in nested pointer types}}
attr-cleanup.c 36 void c4(_Bool a);
38 __attribute((cleanup(c4))) void* g;
  /external/clang/test/Parser/
c1x-alignas.c 8 char c4 _Alignas(32); // expected-error {{expected ';' after top level declarator}} expected-warning {{declaration does not declare anything}}
  /external/clang/test/CodeGen/
constant-comparison.c 8 int *c4 = &a - (6 * 5 > 30); variable
  /external/clang/test/SemaTemplate/
instantiation-default-2.cpp 13 Constant<float (*)(int, double), f> *c4; variable
attributes.cpp 20 check_alignment<4>::t c4; member in namespace:attribute_aligned
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 48 float c4 = 0.38f; 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);
57 mCubes[4] = new Cube(world, c2, c4, c2, c3, c5, c3);
58 mCubes[5] = new Cube(world, c4, c4, c2, c5, c5, c3);
60 mCubes[6] = new Cube(world, c0, c4, c4, c1, c5, c5)
    [all...]
  /external/valgrind/main/massif/tests/
alloc-fns.c 13 void c4(int n) { malloc(n); } function
14 void c3(int n) { c4(n); }
  /frameworks/av/include/media/stagefright/
Utils.h 28 #define FOURCC(c1, c2, c3, c4) \
29 (c1 << 24 | c2 << 16 | c3 << 8 | c4)
  /external/icu4c/i18n/
cecal.cpp 133 int32_t c4; // number of 4 year cycle (1461 days) local
136 c4 = ClockMath::floorDivide(julianDay - jdEpochOffset, 1461, r4);
138 year = 4 * c4 + (r4/365 - r4/1460); // 4 * <number of 4year cycle> + <years within the last cycle>
  /external/compiler-rt/lib/tsan/lit_tests/
tsan-vs-gvn.cc 12 char c1, c2, c3, c4; member in struct:__anon7122
  /external/webp/src/dsp/
dec_neon.c 72 #define LOAD8x4(c1, c2, c3, c4, b1, b2, stride) \
73 "vld4.8 {" #c1"[0], " #c2"[0], " #c3"[0], " #c4"[0]}," #b1 "," #stride"\n" \
74 "vld4.8 {" #c1"[1], " #c2"[1], " #c3"[1], " #c4"[1]}," #b2 "," #stride"\n" \
75 "vld4.8 {" #c1"[2], " #c2"[2], " #c3"[2], " #c4"[2]}," #b1 "," #stride"\n" \
76 "vld4.8 {" #c1"[3], " #c2"[3], " #c3"[3], " #c4"[3]}," #b2 "," #stride"\n" \
77 "vld4.8 {" #c1"[4], " #c2"[4], " #c3"[4], " #c4"[4]}," #b1 "," #stride"\n" \
78 "vld4.8 {" #c1"[5], " #c2"[5], " #c3"[5], " #c4"[5]}," #b2 "," #stride"\n" \
79 "vld4.8 {" #c1"[6], " #c2"[6], " #c3"[6], " #c4"[6]}," #b1 "," #stride"\n" \
80 "vld4.8 {" #c1"[7], " #c2"[7], " #c3"[7], " #c4"[7]}," #b2 "," #stride"\n"
  /frameworks/native/include/binder/
IBinder.h 26 #define B_PACK_CHARS(c1, c2, c3, c4) \
27 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /external/v8/test/mjsunit/bugs/
618.js 74 function C4() {
77 var c4 = new C4();
78 assertEquals(23, c4.x);
79 assertEquals("undefined", typeof c4.y);
83 C4.prototype.__proto__.__defineSetter__('x', function(value) { this.y = 23; });
84 var c4 = new C4();
85 assertEquals("undefined", typeof c4.x);
86 assertEquals(23, c4.y)
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
FileBlockHeader.java 196 char c4 = (char) (code & 0xFF); local
197 return String.valueOf(c1) + c2 + c3 + c4;
  /external/webkit/Source/JavaScriptCore/parser/
Lexer.h 47 static UChar convertUnicode(int c1, int c2, int c3, int c4);
165 inline UChar Lexer::convertUnicode(int c1, int c2, int c3, int c4)
167 return (convertHex(c1, c2) << 8) | convertHex(c3, c4);
  /bionic/libc/kernel/common/linux/
binder.h 22 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /development/ndk/platforms/android-3/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /external/chromium/base/
callback_unittest.cc 82 Callback<void(int,int,int,int)> c4; local
90 EXPECT_TRUE(c4.is_null());
  /external/kernel-headers/original/linux/
binder.h 25 #define B_PACK_CHARS(c1, c2, c3, c4) \
26 ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
binder.h 17 #define B_PACK_CHARS(c1, c2, c3, c4) ((((c1)<<24)) | (((c2)<<16)) | (((c3)<<8)) | (c4))

Completed in 1576 milliseconds

1 2 3 4 5 6 7