HomeSort by relevance Sort by last modified time
    Searched defs:VAL (Results 1 - 25 of 52) sorted by null

1 2 3

  /build/make/tools/droiddoc/test/stubs/expected/com/android/stubs/
InterfaceEnum.java 5 VAL();
  /build/make/tools/droiddoc/test/stubs/src/com/android/stubs/
InterfaceEnum.java 20 VAL;
  /device/google/contexthub/firmware/lib/libc/
memset.c 47 #define VAL 0
56 #define VAL c0
85 *dst++ = VAL;
107 *dst++ = VAL;
122 *dst++ = VAL;
  /external/clang/test/CodeGenCXX/
debug-info-byval.cpp 18 class VAL {
26 void get(int *i, unsigned dl, VAL v, VAL *p, unsigned n, EVT missing_arg) {
  /toolchain/binutils/binutils-2.25/gas/config/
tc-m68851.h 33 101 VAL Validate Access Level
47 V VAL register only
72 #define VAL (CAL+1) /* 53 */
73 #define SCC (VAL+1) /* 54 */
157 /* TC, CRP, DRP, SRP, CAL, VAL, SCC, AC */
  /art/test/918-fields/src/art/
Test918.java 31 testField(Bar.class, "VAL");
69 public static int VAL = 1;
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_constants.py 249 VAL = _Validator()
250 VAL.BEGIN = 'Begin'
251 VAL.MIDDLE = 'Middle'
252 VAL.END = 'End'
253 VAL.BOTH_ENDS = 'BothEnds'
254 VAL.WHOLE = 'Whole'
256 VAL.SEGMENT_LIST = list(VAL.__dict__.values())
  /external/strace/tests/
futex.c 59 void futex_error(int *uaddr, int op, unsigned long val, unsigned long timeout,
63 uaddr, op, (unsigned) val, timeout, uaddr, (unsigned) val3, rc);
66 # define CHECK_FUTEX_GENERIC(uaddr, op, val, timeout, uaddr2, val3, check, \
69 rc = syscall(__NR_futex, (uaddr), (op), (val), (timeout), \
77 futex_error((uaddr), (op), (val), \
82 # define CHECK_FUTEX_ENOSYS(uaddr, op, val, timeout, uaddr2, val3, check) \
83 CHECK_FUTEX_GENERIC(uaddr, op, val, timeout, uaddr2, val3, check, 1)
85 # define CHECK_FUTEX(uaddr, op, val, timeout, uaddr2, val3, check) \
86 CHECK_FUTEX_GENERIC(uaddr, op, val, timeout, uaddr2, val3, check, 0)
95 void invalid_op(int *val, int op, uint32_t argmask, ...
497 uint32_t val; member in struct:__anon31925
    [all...]
  /external/strace/tests-m32/
futex.c 59 void futex_error(int *uaddr, int op, unsigned long val, unsigned long timeout,
63 uaddr, op, (unsigned) val, timeout, uaddr, (unsigned) val3, rc);
66 # define CHECK_FUTEX_GENERIC(uaddr, op, val, timeout, uaddr2, val3, check, \
69 rc = syscall(__NR_futex, (uaddr), (op), (val), (timeout), \
77 futex_error((uaddr), (op), (val), \
82 # define CHECK_FUTEX_ENOSYS(uaddr, op, val, timeout, uaddr2, val3, check) \
83 CHECK_FUTEX_GENERIC(uaddr, op, val, timeout, uaddr2, val3, check, 1)
85 # define CHECK_FUTEX(uaddr, op, val, timeout, uaddr2, val3, check) \
86 CHECK_FUTEX_GENERIC(uaddr, op, val, timeout, uaddr2, val3, check, 0)
95 void invalid_op(int *val, int op, uint32_t argmask, ...
497 uint32_t val; member in struct:__anon31991
    [all...]
  /external/strace/tests-mx32/
futex.c 59 void futex_error(int *uaddr, int op, unsigned long val, unsigned long timeout,
63 uaddr, op, (unsigned) val, timeout, uaddr, (unsigned) val3, rc);
66 # define CHECK_FUTEX_GENERIC(uaddr, op, val, timeout, uaddr2, val3, check, \
69 rc = syscall(__NR_futex, (uaddr), (op), (val), (timeout), \
77 futex_error((uaddr), (op), (val), \
82 # define CHECK_FUTEX_ENOSYS(uaddr, op, val, timeout, uaddr2, val3, check) \
83 CHECK_FUTEX_GENERIC(uaddr, op, val, timeout, uaddr2, val3, check, 1)
85 # define CHECK_FUTEX(uaddr, op, val, timeout, uaddr2, val3, check) \
86 CHECK_FUTEX_GENERIC(uaddr, op, val, timeout, uaddr2, val3, check, 0)
95 void invalid_op(int *val, int op, uint32_t argmask, ...
497 uint32_t val; member in struct:__anon32057
    [all...]
  /frameworks/base/packages/FakeOemFeatures/src/com/android/fakeoemfeatures/
FakeApp.java 150 final int VAL = i*2 + 100;
153 mStuffing[OFF+j] = VAL;
  /external/llvm/include/llvm/ADT/
APInt.h 77 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
79 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
98 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
148 VAL &= mask;
157 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
184 void initSlowCase(uint64_t val, bool isSigned);
211 bool EqualSlowCase(uint64_t Val) const;
226 /// \brief Create a new APInt of numBits width, initialized as val.
228 /// If isSigned is true then val is treated as if it were a signed valu
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
APInt.h 77 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
79 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
95 APInt(uint64_t* val, unsigned bits) : BitWidth(bits), pVal(val) { }
142 VAL &= mask;
151 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
178 void initSlowCase(unsigned numBits, uint64_t val, bool isSigned);
205 bool EqualSlowCase(uint64_t Val) const;
219 /// If isSigned is true then val is treated as if it were a signed value
222 /// the range of val are zero filled)
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
APInt.h 81 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
83 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
102 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
152 VAL &= mask;
161 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
188 void initSlowCase(uint64_t val, bool isSigned);
215 bool EqualSlowCase(uint64_t Val) const;
230 /// \brief Create a new APInt of numBits width, initialized as val.
232 /// If isSigned is true then val is treated as if it were a signed valu
    [all...]
  /hardware/interfaces/automotive/vehicle/2.0/default/tests/
VehicleHalManager_test.cpp 380 const auto VAL = 7;
382 auto expectedValue = hal->getValuePool()->obtainInt32(VAL);
392 ASSERT_EQ(VAL, actualValue.value.int32Values[0]);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 85 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
87 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
97 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
147 VAL &= mask;
156 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
183 void initSlowCase(uint64_t val, bool isSigned);
201 bool EqualSlowCase(uint64_t Val) const LLVM_READONLY;
231 /// \brief Create a new APInt of numBits width, initialized as val.
233 /// If isSigned is true then val is treated as if it were a signed valu
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 85 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
87 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
97 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
147 VAL &= mask;
156 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
183 void initSlowCase(uint64_t val, bool isSigned);
201 bool EqualSlowCase(uint64_t Val) const LLVM_READONLY;
231 /// \brief Create a new APInt of numBits width, initialized as val.
233 /// If isSigned is true then val is treated as if it were a signed valu
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 85 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
87 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
97 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
147 VAL &= mask;
156 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
183 void initSlowCase(uint64_t val, bool isSigned);
201 bool EqualSlowCase(uint64_t Val) const LLVM_READONLY;
231 /// \brief Create a new APInt of numBits width, initialized as val.
233 /// If isSigned is true then val is treated as if it were a signed valu
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 85 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
87 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
97 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
147 VAL &= mask;
156 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
183 void initSlowCase(uint64_t val, bool isSigned);
201 bool EqualSlowCase(uint64_t Val) const LLVM_READONLY;
231 /// \brief Create a new APInt of numBits width, initialized as val.
233 /// If isSigned is true then val is treated as if it were a signed valu
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 85 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
87 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
97 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
147 VAL &= mask;
156 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
183 void initSlowCase(uint64_t val, bool isSigned);
201 bool EqualSlowCase(uint64_t Val) const LLVM_READONLY;
231 /// \brief Create a new APInt of numBits width, initialized as val.
233 /// If isSigned is true then val is treated as if it were a signed valu
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 85 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
87 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
97 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
147 VAL &= mask;
156 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
183 void initSlowCase(uint64_t val, bool isSigned);
201 bool EqualSlowCase(uint64_t Val) const LLVM_READONLY;
231 /// \brief Create a new APInt of numBits width, initialized as val.
233 /// If isSigned is true then val is treated as if it were a signed valu
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 85 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
87 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
97 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
147 VAL &= mask;
156 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
183 void initSlowCase(uint64_t val, bool isSigned);
201 bool EqualSlowCase(uint64_t Val) const LLVM_READONLY;
231 /// \brief Create a new APInt of numBits width, initialized as val.
233 /// If isSigned is true then val is treated as if it were a signed valu
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APInt.h 85 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal.
87 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
97 APInt(uint64_t *val, unsigned bits) : BitWidth(bits), pVal(val) {}
147 VAL &= mask;
156 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)];
183 void initSlowCase(uint64_t val, bool isSigned);
201 bool EqualSlowCase(uint64_t Val) const LLVM_READONLY;
231 /// \brief Create a new APInt of numBits width, initialized as val.
233 /// If isSigned is true then val is treated as if it were a signed valu
    [all...]
  /external/clang/include/clang/AST/
TemplateBase.h 91 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
286 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
TemplateBase.h 91 uint64_t VAL; ///< Used to store the <= 64 bits integer value.
283 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);

Completed in 6728 milliseconds

1 2 3