HomeSort by relevance Sort by last modified time
    Searched refs:val (Results 26 - 50 of 5081) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
unaligned.h 17 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
unaligned.h 17 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
unaligned.h 17 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
unaligned.h 22 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
unaligned.h 22 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /prebuilts/ndk/9/platforms/android-14/arch-x86/usr/include/asm/
unaligned.h 22 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/asm/
unaligned.h 22 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/
unaligned.h 22 #define put_unaligned(val, ptr) ((void)( *(ptr) = (val) ))
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
use-after-scope-temp.cc 10 explicit IntHolder(int val) : val(val) {
11 printf("IntHolder: %d\n", val);
13 int val; member in struct:IntHolder
24 int x = saved->val; // BOOM
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xmd.h 175 #define cvtINT8toInt(val) (((val) & 0x00000080) ? ((val) | 0xffffffffffffff00) : (val))
176 #define cvtINT16toInt(val) (((val) & 0x00008000) ? ((val) | 0xffffffffffff0000) : (val))
177 #define cvtINT32toInt(val) (((val) & 0x80000000) ? ((val) | 0xffffffff00000000) : (val)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xmd.h 175 #define cvtINT8toInt(val) (((val) & 0x00000080) ? ((val) | 0xffffffffffffff00) : (val))
176 #define cvtINT16toInt(val) (((val) & 0x00008000) ? ((val) | 0xffffffffffff0000) : (val))
177 #define cvtINT32toInt(val) (((val) & 0x80000000) ? ((val) | 0xffffffff00000000) : (val)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xmd.h 175 #define cvtINT8toInt(val) (((val) & 0x00000080) ? ((val) | 0xffffffffffffff00) : (val))
176 #define cvtINT16toInt(val) (((val) & 0x00008000) ? ((val) | 0xffffffffffff0000) : (val))
177 #define cvtINT32toInt(val) (((val) & 0x80000000) ? ((val) | 0xffffffff00000000) : (val)
    [all...]
  /external/libgsm/src/
gsm_option.c 14 int gsm_option P3((r, opt, val), gsm r, int opt, int * val)
22 if (val) r->ltp_cut = *val;
29 if (val) r->verbose = *val;
37 if (val) r->fast = !!*val;
45 if (val) r->frame_chain = *val;
    [all...]
  /external/clang/test/CodeGenCXX/
2003-11-29-DuplicatedCleanupTest.cpp 16 void test(int val) {
20 if (val == 0) goto label;
21 if (val == 1) goto label;
25 void test3(int val) {
29 if (val == 0) { doesntThrow(); goto label; }
30 if (val == 1) { doesntThrow(); goto label; }
34 void test4(int val) {
38 if (val == 0) { F C; goto label; }
39 if (val == 1) { F D; goto label; }
  /external/clang/test/CodeGen/
arm-asm-diag.c 7 int64x2_t val[4]; member in struct:int64x2x4_t
12 : [r0] "=r"(r.val[0]), // expected-warning {{value size does not match register size specified by the constraint and modifier}}
13 [r1] "=r"(r.val[1]), // expected-warning {{value size does not match register size specified by the constraint and modifier}}
14 [r2] "=r"(r.val[2]), // expected-warning {{value size does not match register size specified by the constraint and modifier}}
15 [r3] "=r"(r.val[3]) // expected-warning {{value size does not match register size specified by the constraint and modifier}}
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
file.h 247 * \param val 8-bit value
249 #define YASM_WRITE_8(ptr, val) \
250 *((ptr)++) = (unsigned char)((val) & 0xFF)
256 * \param val 16-bit value
258 #define YASM_WRITE_16_L(ptr, val) \
260 *((ptr)++) = (unsigned char)((val) & 0xFF); \
261 *((ptr)++) = (unsigned char)(((val) >> 8) & 0xFF); \
268 * \param val 32-bit value
270 #define YASM_WRITE_32_L(ptr, val) \
272 *((ptr)++) = (unsigned char)((val) & 0xFF);
    [all...]
  /external/compiler-rt/BlocksRuntime/tests/
goto.c 21 __block int val = 0; local
23 ^{ val = 1; }();
25 if (val == 0) {
26 goto out_bad; // error: local byref variable val is in the scope of this goto
32 printf("%s: val not updated!\n", argv[0]);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/
IntegerRenderer.java 36 public static void writeTo(IndentingWriter writer, int val) throws IOException {
37 if (val<0) {
39 writer.printUnsignedLongAsHex(-((long) val));
42 writer.printUnsignedLongAsHex(val);
46 public static void writeUnsignedTo(IndentingWriter writer, int val) throws IOException {
48 writer.printUnsignedLongAsHex(val & 0xFFFFFFFFL);
  /art/test/084-class-init/src/
IntHolder.java 38 public void setValue(int val) {
39 mValue = val;
  /dalvik/tests/084-class-init/src/
IntHolder.java 38 public void setValue(int val) {
39 mValue = val;
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XObjectFactory.java 39 * @param val The java object which this object will wrap.
43 static public XObject create(Object val)
48 if (val instanceof XObject)
50 result = (XObject) val;
52 else if (val instanceof String)
54 result = new XString((String) val);
56 else if (val instanceof Boolean)
58 result = new XBoolean((Boolean)val);
60 else if (val instanceof Double)
62 result = new XNumber(((Double) val));
    [all...]
  /external/chromium_org/v8/src/
data-flow.cc 54 uint32_t val = current_value_; local
55 while (val == 0) {
58 val = target_->data_[current_index_];
61 val = SkipZeroBytes(val);
62 val = SkipZeroBits(val);
63 current_value_ = val >> 1;
  /external/v8/src/
data-flow.cc 54 uint32_t val = current_value_; local
55 while (val == 0) {
58 val = target_->data_[current_index_];
61 val = SkipZeroBytes(val);
62 val = SkipZeroBits(val);
63 current_value_ = val >> 1;
  /libcore/luni/src/main/java/java/io/
DataOutput.java 72 * @param val
78 public abstract void writeBoolean(boolean val) throws IOException;
83 * @param val
90 public abstract void writeByte(int val) throws IOException;
106 * @param val
112 public abstract void writeChar(int val) throws IOException;
129 * @param val
135 public abstract void writeDouble(double val) throws IOException;
141 * @param val
147 public abstract void writeFloat(float val) throws IOException
    [all...]
  /external/chromium_org/third_party/libwebp/utils/
utils.h 60 static WEBP_INLINE void PutLE16(uint8_t* const data, int val) {
61 assert(val < (1 << 16));
62 data[0] = (val >> 0);
63 data[1] = (val >> 8);
66 static WEBP_INLINE void PutLE24(uint8_t* const data, int val) {
67 assert(val < (1 << 24));
68 PutLE16(data, val & 0xffff);
69 data[2] = (val >> 16);
72 static WEBP_INLINE void PutLE32(uint8_t* const data, uint32_t val) {
73 PutLE16(data, (int)(val & 0xffff))
    [all...]

Completed in 636 milliseconds

12 3 4 5 6 7 8 91011>>