/third_party/backends/lib/ |
H A D | strcasestr.c | 40 #define VAL(x) tolower(x) macro 58 while (VAL(c) != VAL(b)); in strcasestr() 74 if (VAL(a) == VAL(b)) in strcasestr() 80 while (VAL(a) != VAL(b)); in strcasestr() 86 if (VAL(a) != VAL(c)) in strcasestr() 93 if (VAL(*rhaystac in strcasestr() [all...] |
/third_party/mbedtls/include/mbedtls/ |
H A D | platform_util.h | 47 #define MBEDTLS_DEPRECATED_STRING_CONSTANT(VAL) \ 48 ((mbedtls_deprecated_string_constant_t) (VAL)) 50 #define MBEDTLS_DEPRECATED_NUMERIC_CONSTANT(VAL) \ 51 ((mbedtls_deprecated_numeric_constant_t) (VAL)) 54 #define MBEDTLS_DEPRECATED_STRING_CONSTANT(VAL) VAL 55 #define MBEDTLS_DEPRECATED_NUMERIC_CONSTANT(VAL) VAL
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | 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. member 152 VAL &= mask; in clearUnusedBits() 161 return isSingleWord() ? VAL : pVal[whichWord(bitPosition)]; in getWord() 241 : BitWidth(numBits), VAL(0) { in APInt() 244 VAL = val; in APInt() 283 APInt(const APInt &that) : BitWidth(that.BitWidth), VAL(0) { in APInt() 285 VAL = that.VAL; in APInt() 291 APInt(APInt &&that) : BitWidth(that.BitWidth), VAL(tha [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | APInt.h | 91 /// integer bit-width <= 64, it uses VAL, otherwise it uses pVal. 93 uint64_t VAL; ///< Used to store the <= 64 bits integer value. member 154 U.VAL &= mask; in clearUnusedBits() 163 return isSingleWord() ? U.VAL : U.pVal[whichWord(bitPosition)]; in getWord() 281 U.VAL = val; in APInt() 323 U.VAL = that.U.VAL; in APInt() 345 explicit APInt() : BitWidth(1) { U.VAL = 0; } in APInt() 402 return U.VAL == WORDTYPE_MAX >> (APINT_BITS_PER_WORD - BitWidth); in isAllOnesValue() 417 return U.VAL in isOneValue() [all...] |
/third_party/ltp/testcases/kernel/mce-test/hwpoison/ |
H A D | tcases.c | 33 #define VAL MCI_STATUS_VAL macro 69 TEST(VAL|EN, KEEP); in test() 72 TEST(VAL|UC|PCC|EN|S|AR, PANIC); in test() 73 TEST(VAL|UC|PCC|EN|S, PANIC); in test() 74 TEST(VAL|UC|PCC|EN, PANIC); in test() 78 TEST(VAL|UC|EN|S|AR, PANIC); in test() 81 TEST(VAL|UC|EN|S|0xc0, AO); in test() 83 TEST(VAL|UC|EN|S|1, SOME); in test() 86 TEST(VAL|UC|EN, KEEP); in test() 87 TEST(VAL|U in test() [all...] |
/third_party/ltp/testcases/kernel/mce-test/tsrc/ |
H A D | tcases.c | 33 #define VAL MCI_STATUS_VAL macro 69 TEST(VAL|EN, KEEP); in test() 72 TEST(VAL|UC|PCC|EN|S|AR, PANIC); in test() 73 TEST(VAL|UC|PCC|EN|S, PANIC); in test() 74 TEST(VAL|UC|PCC|EN, PANIC); in test() 78 TEST(VAL|UC|EN|S|AR, PANIC); in test() 81 TEST(VAL|UC|EN|S|0xc0, AO); in test() 83 TEST(VAL|UC|EN|S|1, SOME); in test() 86 TEST(VAL|UC|EN, KEEP); in test() 87 TEST(VAL|U in test() [all...] |
/third_party/libbpf/include/uapi/linux/ |
H A D | btf.h | 92 #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) 93 #define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) 94 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | APInt.cpp | 94 VAL = bigVal[0]; in initFromArray() 108 : BitWidth(numBits), VAL(0) { in APInt() 113 : BitWidth(numBits), VAL(0) { in APInt() 118 : BitWidth(numbits), VAL(0) { in APInt() 138 VAL = 0; in AssignSlowCase() 145 VAL = RHS.VAL; in AssignSlowCase() 157 VAL = RHS; in operator =() 185 ++VAL; in operator ++() 214 --VAL; in operator --() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | APInt.cpp | 95 U.VAL = bigVal[0]; in initFromArray() 153 U.VAL = RHS.U.VAL; in AssignSlowCase() 163 ID.AddInteger(U.VAL); in Profile() 175 ++U.VAL; in operator ++() 184 --U.VAL; in operator --() 196 U.VAL += RHS.U.VAL; in operator +=() 204 U.VAL += RHS; in operator +=() 216 U.VAL in operator -=() [all...] |
/third_party/ltp/include/ |
H A D | tst_test_macros.h | 130 #define TST_EXP_VAL_SILENT_(SCALL, VAL, SSCALL, ...) \ 136 if (TST_RET != VAL) { \ 138 TST_RET, (long)VAL, SSCALL, ##__VA_ARGS__); \ 146 #define TST_EXP_VAL_SILENT(SCALL, VAL, ...) TST_EXP_VAL_SILENT_(SCALL, VAL, #SCALL, ##__VA_ARGS__) 148 #define TST_EXP_VAL(SCALL, VAL, ...) \ 150 TST_EXP_VAL_SILENT_(SCALL, VAL, #SCALL, ##__VA_ARGS__); \
|
/third_party/ltp/tools/sparse/sparse-src/validation/optim/ |
H A D | cmp-zext-uimm0.c | 4 #define TEST(X,OP,VAL) (zext(X) OP (VAL)) == (X OP (VAL))
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-cff-interp-dict-common.hh | 46 template <typename VAL> struct dict_values_t : parsed_values_t<VAL> {}; 155 template <typename VAL=op_str_t> 158 static void process_op (op_code_t op, interp_env_t<number_t>& env, top_dict_values_t<VAL> & dictval) in process_op()
|
H A D | hb-cff-interp-common.hh | 548 template <typename VAL> 560 VAL *val = values.push (); in add_op() 566 void add_op (op_code_t op, const byte_str_ref_t& str_ref, const VAL &v) in add_op() 568 VAL *val = values.push (v); in add_op() 582 const VAL &get_value (unsigned int i) const { return values[i]; } in get_value() 583 const VAL &operator [] (unsigned int i) const { return get_value (i); } in operator []() 586 hb_vector_t<VAL> values;
|
H A D | hb-ot-cff2-table.hh | 228 template <typename VAL> 229 struct cff2_private_dict_values_base_t : dict_values_t<VAL> 233 dict_values_t<VAL>::init (); in init() 238 void fini () { dict_values_t<VAL>::fini (); } in fini()
|
/third_party/glslang/Test/ |
H A D | validate-shaders.sh | 11 [[ -z "$VAL" && -x "${toolsdir}/spirv-val" ]] && declare -r VAL="${toolsdir}/spirv-val" 64 [[ -x "$VAL" ]] || fatal "Unable to locate spirv-val executable" 232 if valout=$("$VAL" --target-env ${targetenv} "$spvfile" 2>&1) 239 $opt_stat_valerr && status "$test" "${red}VAL ERROR${no_color}"
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
H A D | TargetParser.h | 69 #define X86_FEATURE(VAL, ENUM) \ 70 ENUM = VAL,
|
H A D | AMDHSAKernelDescriptor.h | 42 #define AMDHSA_BITS_SET(DST, MSK, VAL) \ 44 DST |= ((VAL << MSK ## _SHIFT) & MSK)
|
/third_party/ltp/testcases/kernel/syscalls/sigrelse/ |
H A D | sigrelse01.c | 145 #define CHILD_EXIT(VAL) ((VAL >> 8) & 0377) /* exit value of child process */ 146 #define CHILD_SIG(VAL) (VAL & 0377) /* signal value of child proc */
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | enum_alias.hpp | 6 VAL enumerator
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | enum_alias.rs | 11 VAL = 0,
|
/third_party/cmsis/CMSIS/Core/Include/a-profile/ |
H A D | cmsis_iccarm_a.h | 158 #define __UNALIGNED_UINT16_WRITE(PTR,VAL) __iar_uint16_write(PTR,VAL) 180 #define __UNALIGNED_UINT32_WRITE(PTR,VAL) __iar_uint32_write(PTR,VAL)
|
/third_party/elfutils/libdw/ |
H A D | libdwP.h | 894 #define READ_AND_RELOCATE(RELOC_HOOK, VAL) \ 901 VAL = read_4ubyte_unaligned_inc (dbg, addr); \ 903 VAL = read_8ubyte_unaligned_inc (dbg, addr); \ 905 int status = RELOC_HOOK (dbg, sec_index, orig_addr, width, &VAL); \
|
/third_party/cmsis/CMSIS/Core/Include/m-profile/ |
H A D | cmsis_iccarm_m.h | 205 #define __UNALIGNED_UINT16_WRITE(PTR,VAL) __iar_uint16_write(PTR,VAL) 227 #define __UNALIGNED_UINT32_WRITE(PTR,VAL) __iar_uint32_write(PTR,VAL)
|
/third_party/cmsis/CMSIS/Core/Include/ |
H A D | core_sc000.h | 493 __IOM uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */ member 515 #define SysTick_VAL_CURRENT_Pos 0U /*!< SysTick VAL: CURRENT Position */ 516 #define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */ 1029 SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ in SysTick_Config()
|
H A D | core_cm1.h | 479 __IOM uint32_t VAL; /*!< Offset: 0x008 (R/W) SysTick Current Value Register */ member 501 #define SysTick_VAL_CURRENT_Pos 0U /*!< SysTick VAL: CURRENT Position */ 502 #define SysTick_VAL_CURRENT_Msk (0xFFFFFFUL /*<< SysTick_VAL_CURRENT_Pos*/) /*!< SysTick VAL: CURRENT Mask */ 966 SysTick->VAL = 0UL; /* Load the SysTick Counter Value */ in SysTick_Config()
|