HomeSort by relevance Sort by last modified time
    Searched refs:val (Results 151 - 175 of 6347) sorted by null

1 2 3 4 5 67 8 91011>>

  /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-19/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-19/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-19/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)
  /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/libvpx/source/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
30 * modified name, then defines val to be a pointer, and aligns that pointer
33 #define DECLARE_ALIGNED_ARRAY(a,typ,val,n)\
34 typ val##_[(n)+(a)/sizeof(typ)+1];\
35 typ *val = (typ*)((((intptr_t)val##_)+(a)-1)&((intptr_t)-(a))
    [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/lldb/test/lang/c/stepping/
main.c 16 int a(int val)
18 int return_value = val; // basic break at the start of b
20 if (val <= 1)
22 return_value = b(val); // break here to stop in a before calling b
24 else if (val >= 3)
26 return_value = c(val);
32 int b(int val)
34 int rc = c(val); // thread step-out while stopped at "c(2)"
38 int c(int val)
40 return val + 3; // Find the line number of function "c" here
    [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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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...]
  /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/libpng/arm/
filter_neon_intrinsics.c 72 vdest.val[3] = vdup_n_u8(0);
79 vtmp1 = vext_u8(vrp.val[0], vrp.val[1], 3);
80 vdest.val[0] = vadd_u8(vdest.val[3], vrp.val[0]);
81 vtmp2 = vext_u8(vrp.val[0], vrp.val[1], 6);
82 vdest.val[1] = vadd_u8(vdest.val[0], vtmp1)
    [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}}
  /external/fio/
json.h 54 #define json_object_add_value_int(obj, name, val) \
55 json_object_add_value_type((obj), name, JSON_TYPE_INTEGER, (val))
56 #define json_object_add_value_float(obj, name, val) \
57 json_object_add_value_type((obj), name, JSON_TYPE_FLOAT, (val))
58 #define json_object_add_value_string(obj, name, val) \
59 json_object_add_value_type((obj), name, JSON_TYPE_STRING, (val))
60 #define json_object_add_value_object(obj, name, val) \
61 json_object_add_value_type((obj), name, JSON_TYPE_OBJECT, (val))
62 #define json_object_add_value_array(obj, name, val) \
63 json_object_add_value_type((obj), name, JSON_TYPE_ARRAY, (val))
    [all...]

Completed in 1968 milliseconds

1 2 3 4 5 67 8 91011>>