/prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/external/qemu/elff/ |
elf_file.h | 140 * val - References value inside ELF file buffer to pull data from.
145 uint8_t pull_val(const uint8_t* val) const {
146 return *val;
148 uint8_t pull_val(const uint8_t& val) const {
149 return val;
151 int8_t pull_val(const int8_t* val) const {
152 return *val;
154 int8_t pull_val(const int8_t& val) const {
155 return val;
160 * val - References value inside ELF file buffer to pull data from. [all...] |
/ndk/sources/host-tools/ndk-stack/elff/ |
elf_file.h | 140 * val - References value inside ELF file buffer to pull data from. 145 uint8_t pull_val(const uint8_t* val) const { 146 return *val; 148 uint8_t pull_val(const uint8_t& val) const { 149 return val; 151 int8_t pull_val(const int8_t* val) const { 152 return *val; 154 int8_t pull_val(const int8_t& val) const { 155 return val; 160 * val - References value inside ELF file buffer to pull data from [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/tests/ |
copy_constant_to_storage_tests.cpp | 33 const ir_constant *val, 69 ir_constant *val; local 70 generate_data(mem_ctx, GLSL_TYPE_INT, 1, rows, val); 72 const unsigned red_zone_size = Elements(storage) - val->type->components(); 74 val->type->components(), 78 val, 79 val->type->base_type, 80 val->type->components()); 82 verify_data(storage, 0, val, red_zone_size); 88 ir_constant *val; local 107 ir_constant *val; local 126 ir_constant *val; local 150 ir_constant *val; local [all...] |
/external/clang/test/Sema/ |
warn-char-subscripts.c | 6 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} local 12 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}} local 18 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} local 24 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}} local 30 int val = array[returnsChar()]; // expected-warning{{array subscript is of type 'char'}} local 36 int val = array[subscript]; // no warning for explicit signed char local 42 int val = array[subscript]; // no warning for unsigned char local 49 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}} local 56 int val = array[subscript]; // no warning for explicit signed char local 63 int val = array[subscript]; // no warning for unsigned cha local [all...] |
/external/libvpx/libvpx/vpx_ports/ |
mem.h | 19 #define DECLARE_ALIGNED(n,typ,val) typ val __attribute__ ((aligned (n))) 21 #define DECLARE_ALIGNED(n,typ,val) __declspec(align(n)) typ val 24 #define DECLARE_ALIGNED(n,typ,val) typ val 31 * modified name, then defines val to be a pointer, and aligns that pointer 34 #define DECLARE_ALIGNED_ARRAY(a,typ,val,n)\ 35 typ val##_[(n)+(a)/sizeof(typ)+1];\ 36 typ *val = (typ*)((((intptr_t)val##_)+(a)-1)&((intptr_t)-(a)) [all...] |
/external/mesa3d/src/glsl/tests/ |
copy_constant_to_storage_tests.cpp | 33 const ir_constant *val, 69 ir_constant *val; local 70 generate_data(mem_ctx, GLSL_TYPE_INT, 1, rows, val); 72 const unsigned red_zone_size = Elements(storage) - val->type->components(); 74 val->type->components(), 78 val, 79 val->type->base_type, 80 val->type->components()); 82 verify_data(storage, 0, val, red_zone_size); 88 ir_constant *val; local 107 ir_constant *val; local 126 ir_constant *val; local 150 ir_constant *val; local [all...] |
/external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/ |
LongRenderer.java | 36 public static void writeTo(IndentingWriter writer, long val) throws IOException { 37 if (val<0) { 39 writer.printUnsignedLongAsHex(-val); 43 writer.printUnsignedLongAsHex(val); 48 public static void writeSignedIntOrLongTo(IndentingWriter writer, long val) throws IOException { 49 if (val<0) { 51 writer.printUnsignedLongAsHex(-val); 52 if (val < Integer.MIN_VALUE) { 57 writer.printUnsignedLongAsHex(val); 58 if (val > Integer.MAX_VALUE) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_numliterals.py | 22 val = node.value 23 if val[-1] in u'Ll': 24 val = val[:-1] 25 elif val.startswith(u'0') and val.isdigit() and len(set(val)) > 1: 26 val = u"0o" + val[1:] 28 return Number(val, prefix=node.prefix [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_numliterals.py | 22 val = node.value 23 if val[-1] in u'Ll': 24 val = val[:-1] 25 elif val.startswith(u'0') and val.isdigit() and len(set(val)) > 1: 26 val = u"0o" + val[1:] 28 return Number(val, prefix=node.prefix [all...] |
/external/chromium_org/gin/ |
converter.cc | 23 Handle<Value> Converter<bool>::ToV8(Isolate* isolate, bool val) { 24 return Boolean::New(isolate, val).As<Value>(); 27 bool Converter<bool>::FromV8(Isolate* isolate, Handle<Value> val, bool* out) { 28 *out = val->BooleanValue(); 32 Handle<Value> Converter<int32_t>::ToV8(Isolate* isolate, int32_t val) { 33 return Integer::New(isolate, val).As<Value>(); 36 bool Converter<int32_t>::FromV8(Isolate* isolate, Handle<Value> val, 38 if (!val->IsInt32()) 40 *out = val->Int32Value(); 44 Handle<Value> Converter<uint32_t>::ToV8(Isolate* isolate, uint32_t val) { [all...] |
/external/clang/test/CodeGen/ |
arm-asm-warn.c | 21 int64x2_t val[4]; member in struct:int64x2x4_t 26 : [r0] "=r"(r.val[0]), // expected-warning {{value size does not match register size specified by the constraint and modifier}} 27 [r1] "=r"(r.val[1]), // expected-warning {{value size does not match register size specified by the constraint and modifier}} 28 [r2] "=r"(r.val[2]), // expected-warning {{value size does not match register size specified by the constraint and modifier}} 29 [r3] "=r"(r.val[3]) // expected-warning {{value size does not match register size specified by the constraint and modifier}}
|
/system/core/sh/ |
options.h | 51 char val; /* value of <letter>flag */ member in struct:optent 65 #define eflag optlist[0].val 67 #define fflag optlist[1].val 69 #define Iflag optlist[2].val 71 #define iflag optlist[3].val 73 #define mflag optlist[4].val 75 #define nflag optlist[5].val 77 #define sflag optlist[6].val 79 #define xflag optlist[7].val 81 #define vflag optlist[8].val [all...] |
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/ |
BluetoothTestRunner.java | 86 String val = arguments.getString("enable_iterations"); local 87 if (val != null) { 89 sEnableIterations = Integer.parseInt(val); 95 val = arguments.getString("discoverable_iterations"); 96 if (val != null) { 98 sDiscoverableIterations = Integer.parseInt(val); 104 val = arguments.getString("scan_iterations"); 105 if (val != null) { 107 sScanIterations = Integer.parseInt(val); 113 val = arguments.getString("enable_pan_iterations") [all...] |
/external/chromium_org/third_party/skia/include/utils/ |
SkDebugUtils.h | 20 inline void SkDebugDumpMathematica( const T val ) { 56 inline void SkDebugDumpMathematica( const char *name, const T val ) { 59 SkDebugDumpMathematica<T>(val); 64 inline void SkDebugDumpMathematica<uint8_t>( const uint8_t val ) { 65 SkDebugf("%u", val); 69 inline void SkDebugDumpMathematica<unsigned int>( const unsigned int val ) { 70 SkDebugf("%u", val); 74 inline void SkDebugDumpMathematica<int>( const int val ) { 75 SkDebugf("%d", val); 79 inline void SkDebugDumpMathematica<size_t>( const size_t val ) { [all...] |
/external/skia/include/utils/ |
SkDebugUtils.h | 20 inline void SkDebugDumpMathematica( const T val ) { 56 inline void SkDebugDumpMathematica( const char *name, const T val ) { 59 SkDebugDumpMathematica<T>(val); 64 inline void SkDebugDumpMathematica<uint8_t>( const uint8_t val ) { 65 SkDebugf("%u", val); 69 inline void SkDebugDumpMathematica<unsigned int>( const unsigned int val ) { 70 SkDebugf("%u", val); 74 inline void SkDebugDumpMathematica<int>( const int val ) { 75 SkDebugf("%d", val); 79 inline void SkDebugDumpMathematica<size_t>( const size_t val ) { [all...] |
/frameworks/base/tools/aapt/ |
Bundle.h | 82 void setVerbose(bool val) { mVerbose = val; } 84 void setAndroidList(bool val) { mAndroidList = val; } 86 void setForce(bool val) { mForce = val; } 87 void setGrayscaleTolerance(int val) { mGrayscaleTolerance = val; } 90 void setMakePackageDirs(bool val) { mMakePackageDirs = val; } [all...] |
/external/smack/src/org/xbill/DNS/ |
Mnemonic.java | 84 toInteger(int val) { 85 if (val >= 0 && val < cachedInts.length) 86 return (cachedInts[val]); 87 return new Integer(val); 94 check(int val) { 95 if (val < 0 || val > max) { 96 throw new IllegalArgumentException(description + " " + val + 114 int val = Integer.parseInt(s) local 198 int val = parseNumeric(str.substring(prefix.length())); local [all...] |