/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validate_literals.cpp | 85 const bool signedness = operand.number_kind == SPV_NUMBER_SIGNED_INT; 87 if (!VerifyUpperBits(upper_word, remaining_value_bits, signedness)) {
|
H A D | validate_type.cpp | 100 const auto signedness = inst->GetOperandAs<uint32_t>(signedness_index); in ValidateTypeInt() local 101 if (signedness != 0 && signedness != 1) { in ValidateTypeInt() 103 << "OpTypeInt has invalid signedness:"; in ValidateTypeInt()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validate_literals.cpp | 85 const bool signedness = operand.number_kind == SPV_NUMBER_SIGNED_INT; 87 if (!VerifyUpperBits(upper_word, remaining_value_bits, signedness)) {
|
H A D | validate_type.cpp | 100 const auto signedness = inst->GetOperandAs<uint32_t>(signedness_index); in ValidateTypeInt() local 101 if (signedness != 0 && signedness != 1) { in ValidateTypeInt() 103 << "OpTypeInt has invalid signedness:"; in ValidateTypeInt()
|
/third_party/spirv-tools/source/val/ |
H A D | validate_literals.cpp | 82 const bool signedness = operand.number_kind == SPV_NUMBER_SIGNED_INT; 84 if (!VerifyUpperBits(upper_word, remaining_value_bits, signedness)) {
|
H A D | validate_type.cpp | 99 const auto signedness = inst->GetOperandAs<uint32_t>(signedness_index); in ValidateTypeInt() local 100 if (signedness != 0 && signedness != 1) { in ValidateTypeInt() 102 << "OpTypeInt has invalid signedness:"; in ValidateTypeInt()
|
/third_party/skia/third_party/externals/spirv-tools/source/ |
H A D | name_mapper.cpp | 195 std::string signedness; in ParseInstruction() local 213 signedness = "i"; in ParseInstruction() 216 if (0 == inst.words[3]) signedness = "u"; in ParseInstruction() 217 SaveName(result_id, signedness + root); in ParseInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/ |
H A D | name_mapper.cpp | 195 std::string signedness; in ParseInstruction() local 213 signedness = "i"; in ParseInstruction() 216 if (0 == inst.words[3]) signedness = "u"; in ParseInstruction() 217 SaveName(result_id, signedness + root); in ParseInstruction()
|
/third_party/spirv-tools/source/ |
H A D | name_mapper.cpp | 195 std::string signedness; in ParseInstruction() local 213 signedness = "i"; in ParseInstruction() 216 if (0 == inst.words[3]) signedness = "u"; in ParseInstruction() 217 SaveName(result_id, signedness + root); in ParseInstruction()
|
/third_party/ffmpeg/libswscale/ppc/ |
H A D | swscale_altivec.c | 110 #define output_pixel(pos, val, bias, signedness) \ 112 AV_WB16(pos, bias + av_clip_ ## signedness ## 16(val >> shift)); \ 114 AV_WL16(pos, bias + av_clip_ ## signedness ## 16(val >> shift)); \
|
H A D | swscale_vsx.c | 260 #define output_pixel(pos, val, bias, signedness) \ 262 AV_WB16(pos, bias + av_clip_ ## signedness ## 16(val >> shift)); \ 264 AV_WL16(pos, bias + av_clip_ ## signedness ## 16(val >> shift)); \
|
/third_party/node/deps/undici/src/lib/fetch/ |
H A D | webidl.js | 82 webidl.util.ConvertToInt = function (V, bitLength, signedness, opts = {}) { 91 // 2. If signedness is "unsigned", then let lowerBound be 0. 92 if (signedness === 'unsigned') { 98 } else if (signedness === 'unsigned') { 99 // 2. Otherwise, if signedness is "unsigned", then: 191 // 11. If signedness is "signed" and x ≥ 2^bitLength − 1, 193 if (signedness === 'signed' && x >= Math.pow(2, bitLength) - 1) {
|
/third_party/node/deps/v8/src/compiler/ |
H A D | js-typed-lowering.h | 85 Reduction ReduceUI32Shift(Node* node, Signedness signedness);
|
H A D | js-typed-lowering.cc | 420 Node* ConvertToUI32(Node* node, Signedness signedness) { in ConvertToUI32() argument 423 if (signedness == kSigned) { in ConvertToUI32() 428 DCHECK_EQ(kUnsigned, signedness); in ConvertToUI32() 714 Reduction JSTypedLowering::ReduceUI32Shift(Node* node, Signedness signedness) { in ReduceUI32Shift() argument 718 r.ConvertInputsToUI32(signedness, kUnsigned); in ReduceUI32Shift() 719 return r.ChangeToPureOperator(r.NumberOp(), signedness == kUnsigned in ReduceUI32Shift()
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_compiler_nir.c | 308 dst[0]->cat3.signedness = IR3_SRC_UNSIGNED; in emit_alu_dot_4x8_as_dp4acc() 310 dst[0]->cat3.signedness = IR3_SRC_MIXED; in emit_alu_dot_4x8_as_dp4acc() 329 int signedness; in emit_alu_dot_4x8_as_dp2acc() local 332 signedness = IR3_SRC_UNSIGNED; in emit_alu_dot_4x8_as_dp2acc() 334 signedness = IR3_SRC_MIXED; in emit_alu_dot_4x8_as_dp2acc() 347 dst[0]->cat3.signedness = signedness; in emit_alu_dot_4x8_as_dp2acc() 351 dst[0]->cat3.signedness = signedness; in emit_alu_dot_4x8_as_dp2acc()
|
H A D | ir3_parser.y | 970 cat3_dp_signedness:'.' T_MIXED { instr->cat3.signedness = IR3_SRC_MIXED; } 971 | '.' T_UNSIGNED{ instr->cat3.signedness = IR3_SRC_UNSIGNED; }
|
H A D | ir3.h | 359 } signedness; member 1574 * switch signedness, and whether one exists.
|
/third_party/libabigail/include/ |
H A D | abg-ir.h | 2466 enum signedness enum in abigail::ir::array_type_def::subrange_type::bound_value 2473 signedness s_; 2484 enum signedness get_signedness() const; 2485 void set_signedness(enum signedness s);
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_parser.cpp | 509 bool signedness = ops[2] != 0; in parse() local 511 type.basetype = signedness ? to_signed_basetype(width) : to_unsigned_basetype(width); in parse()
|
/third_party/tzdata/ |
H A D | Makefile | 319 -Wformat=2 -Wformat-overflow=2 -Wformat-signedness -Wformat-truncation \
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | glslang_wrapper_utils.cpp | 1064 spirv::LiteralInteger signedness); 1263 spirv::LiteralInteger signedness) 1271 if (signedness == 0) 3284 spirv::LiteralInteger signedness; in visitTypeInt() local 3285 spirv::ParseTypeInt(instruction, &id, &width, &signedness); in visitTypeInt() 3287 mIds.visitTypeInt(id, width, signedness); in visitTypeInt()
|
/third_party/ffmpeg/libswscale/ |
H A D | output.c | 136 #define output_pixel(pos, val, bias, signedness) \ 138 AV_WB16(pos, bias + av_clip_ ## signedness ## 16(val >> shift)); \ 140 AV_WL16(pos, bias + av_clip_ ## signedness ## 16(val >> shift)); \
|
/third_party/skia/third_party/externals/angle2/src/common/spirv/ |
H A D | spirv_instruction_builder_autogen.h | 60 void WriteTypeInt(Blob *blob, IdResult idResult, LiteralInteger width, LiteralInteger signedness);
|
H A D | spirv_instruction_parser_autogen.h | 67 LiteralInteger *signedness);
|
/third_party/node/deps/undici/ |
H A D | undici.js | 1861 webidl.util.ConvertToInt = function(V, bitLength, signedness, opts = {}) { 1866 if (signedness === "unsigned") { 1871 } else if (signedness === "unsigned") { 1912 if (signedness === "signed" && x >= Math.pow(2, bitLength) - 1) {
|