Home
last modified time | relevance | path

Searched refs:VAL (Results 1 – 25 of 116) sorted by relevance

12345

/third_party/vk-gl-cts/external/openglcts/data/gl33/
Dpreprocessor.test221 #define VAL 2.0
222 #undef VAL sdflkjfds
223 #define VAL 1.0
228 ${POSITION_FRAG_COLOR} = vec4(VAL);
3062 #define VAL 4
3064 #if (VAL << 2) == 16
3081 #define VAL 5
3083 #if (VAL >> 1) == 2
3100 #define VAL 5
3102 #if (VAL < 6) && (-VAL < -4)
[all …]
/third_party/vk-gl-cts/data/gles2/shaders/
Dpreprocessor.test155 #define VAL 2.0
156 #undef VAL sdflkjfds
157 #define VAL 1.0
161 ${POSITION_FRAG_COLOR} = vec4(VAL);
2905 #define VAL 4
2907 #if (VAL << 2) == 16
2922 #define VAL 5
2924 #if (VAL >> 1) == 2
2939 #define VAL 5
2941 #if (VAL < 6) && (-VAL < -4)
[all …]
/third_party/vk-gl-cts/external/openglcts/data/gles3/
Dpreprocessor.test166 #define VAL 2.0
167 #undef VAL sdflkjfds
168 #define VAL 1.0
173 ${POSITION_FRAG_COLOR} = vec4(VAL);
3301 #define VAL 4
3303 #if (VAL << 2) == 16
3320 #define VAL 5
3322 #if (VAL >> 1) == 2
3339 #define VAL 5
3341 #if (VAL < 6) && (-VAL < -4)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h93 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 BitWidth()
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 == 1; in isOneValue()
433 return U.VAL == ((WordType(1) << (BitWidth - 1)) - 1); in isMaxSignedValue()
449 return U.VAL == (WordType(1) << (BitWidth - 1)); in isMinSignedValue()
[all …]
/third_party/vk-gl-cts/data/gles3/shaders/
Dpreprocessor.test183 #define VAL 2.0
184 #undef VAL sdflkjfds
185 #define VAL 1.0
190 ${POSITION_FRAG_COLOR} = vec4(VAL);
3622 #define VAL 4
3624 #if (VAL << 2) == 16
3641 #define VAL 5
3643 #if (VAL >> 1) == 2
3660 #define VAL 5
3662 #if (VAL < 6) && (-VAL < -4)
[all …]
/third_party/ltp/testcases/kernel/mce-test/tsrc/
Dtcases.c33 #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|UC, NO); // linux clears. correct? in test()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h83 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 BitWidth()
244 VAL = val; in BitWidth()
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(that.VAL) { in APInt()
306 explicit APInt() : BitWidth(1), VAL(0) {} in APInt()
344 return VAL == ~integerPart(0) >> (APINT_BITS_PER_WORD - BitWidth); in isAllOnesValue()
[all …]
/third_party/mbedtls/include/mbedtls/
Dplatform_util.h47 #define MBEDTLS_DEPRECATED_STRING_CONSTANT( VAL ) \ argument
48 ( (mbedtls_deprecated_string_constant_t) ( VAL ) )
50 #define MBEDTLS_DEPRECATED_NUMERIC_CONSTANT( VAL ) \ argument
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/flutter/skia/third_party/externals/sdl/src/core/linux/
DSDL_fcitx.c125 #define VAL(i, s) ((in[i]&0x3f) << s) macro
138 *chr = ((in[0] & 0x1f) << 6) | VAL(1, 0); in _fcitx_utf8_get_char()
144 *chr = ((in[0] & 0xf) << 12) | VAL(1, 6) | VAL(2, 0); in _fcitx_utf8_get_char()
150 *chr = ((in[0] & 0x7) << 18) | VAL(1, 12) | VAL(2, 6) | VAL(3, 0); in _fcitx_utf8_get_char()
156 *chr = ((in[0] & 0x3) << 24) | VAL(1, 18) | VAL(2, 12) | VAL(3, 6) | VAL(4, 0); in _fcitx_utf8_get_char()
162 *chr = ((in[0] & 0x1) << 30) | VAL(1, 24) | VAL(2, 18) | VAL(3, 12) | VAL(4, 6) | VAL(5, 0); in _fcitx_utf8_get_char()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp94 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 --()
241 VAL += RHS.VAL; in operator +=()
[all …]
/third_party/libbpf/include/uapi/linux/
Dbtf.h92 #define BTF_INT_ENCODING(VAL) (((VAL) & 0x0f000000) >> 24) argument
93 #define BTF_INT_OFFSET(VAL) (((VAL) & 0x00ff0000) >> 16) argument
94 #define BTF_INT_BITS(VAL) ((VAL) & 0x000000ff) argument
/third_party/ltp/include/
Dtst_test_macros.h107 #define TST_EXP_VAL_SILENT_(SCALL, VAL, SSCALL, ...) \ argument
113 if (TST_RET != VAL) { \
115 TST_RET, (long)VAL, SSCALL, ##__VA_ARGS__); \
123 #define TST_EXP_VAL_SILENT(SCALL, VAL, ...) TST_EXP_VAL_SILENT_(SCALL, VAL, #SCALL, ##__VA_ARGS__) argument
125 #define TST_EXP_VAL(SCALL, VAL, ...) \ argument
127 TST_EXP_VAL_SILENT_(SCALL, VAL, #SCALL, ##__VA_ARGS__); \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp95 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 -= RHS.U.VAL; in operator -=()
224 U.VAL -= RHS; in operator -=()
233 return APInt(BitWidth, U.VAL * RHS.U.VAL); in operator *()
[all …]
/third_party/libxml2/os400/
Dmake-rpg.sh31 VAL="`db2_name \"${NAME}\" nomangle`"
34 then VAL=SCHMTYPES
37 eval "VAR_${VAR}=\"${VAL}\""
38 echo "${VAR} s/${VAR}/${VAL}/g"
/third_party/ltp/tools/sparse/sparse-src/validation/optim/
Dcmp-zext-uimm0.c4 #define TEST(X,OP,VAL) (zext(X) OP (VAL)) == (X OP (VAL)) argument
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-cff-interp-dict-common.hh46 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> & dictva… in process_op()
Dhb-cff-interp-common.hh548 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;
/third_party/harfbuzz/src/
Dhb-cff-interp-dict-common.hh46 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> & dictva… in process_op()
Dhb-cff-interp-common.hh548 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;
/third_party/glslang/Test/
Dvalidate-shaders.sh11 [[ -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)
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-cff-interp-dict-common.hh48 template <typename VAL> struct dict_values_t : parsed_values_t<VAL> {};
248 template <typename VAL=op_str_t>
251 …static void process_op (op_code_t op, interp_env_t<number_t>& env, top_dict_values_t<VAL> & dictva… in process_op()
Dhb-ot-cff2-table.hh248 template <typename VAL>
249 struct cff2_private_dict_values_base_t : dict_values_t<VAL>
253 dict_values_t<VAL>::init (); in init()
258 void fini () { dict_values_t<VAL>::fini (); } in fini()
263 for (unsigned int i = 0; i < dict_values_t<VAL>::get_count; i++) in calculate_serialized_size()
264 if (dict_values_t<VAL>::get_value (i).op == OpCode_Subrs) in calculate_serialized_size()
267 size += dict_values_t<VAL>::get_value (i).str.length; in calculate_serialized_size()
Dhb-cff-interp-common.hh574 template <typename VAL>
586 VAL *val = values.push (); in add_op()
592 void add_op (op_code_t op, const byte_str_ref_t& str_ref, const VAL &v) in add_op()
594 VAL *val = values.push (v); in add_op()
608 const VAL &get_value (unsigned int i) const { return values[i]; } in get_value()
609 const VAL &operator [] (unsigned int i) const { return get_value (i); } in operator []()
612 hb_vector_t<VAL> values;
/third_party/ltp/testcases/kernel/syscalls/sigrelse/
Dsigrelse01.c145 #define CHILD_EXIT(VAL) ((VAL >> 8) & 0377) /* exit value of child process */ argument
146 #define CHILD_SIG(VAL) (VAL & 0377) /* signal value of child proc */ argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DTargetParser.h69 #define X86_FEATURE(VAL, ENUM) \ argument
70 ENUM = VAL,

12345