Home
last modified time | relevance | path

Searched refs:signedness (Results 1 - 25 of 31) sorted by relevance

12

/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidate_literals.cpp85 const bool signedness = operand.number_kind == SPV_NUMBER_SIGNED_INT;
87 if (!VerifyUpperBits(upper_word, remaining_value_bits, signedness)) {
H A Dvalidate_type.cpp100 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 Dvalidate_literals.cpp85 const bool signedness = operand.number_kind == SPV_NUMBER_SIGNED_INT;
87 if (!VerifyUpperBits(upper_word, remaining_value_bits, signedness)) {
H A Dvalidate_type.cpp100 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 Dvalidate_literals.cpp82 const bool signedness = operand.number_kind == SPV_NUMBER_SIGNED_INT;
84 if (!VerifyUpperBits(upper_word, remaining_value_bits, signedness)) {
H A Dvalidate_type.cpp99 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 Dname_mapper.cpp195 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 Dname_mapper.cpp195 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 Dname_mapper.cpp195 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 Dswscale_altivec.c110 #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 Dswscale_vsx.c260 #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 Dwebidl.js82 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 Djs-typed-lowering.h85 Reduction ReduceUI32Shift(Node* node, Signedness signedness);
H A Djs-typed-lowering.cc420 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 Dir3_compiler_nir.c308 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 Dir3_parser.y970 cat3_dp_signedness:'.' T_MIXED { instr->cat3.signedness = IR3_SRC_MIXED; }
971 | '.' T_UNSIGNED{ instr->cat3.signedness = IR3_SRC_UNSIGNED; }
H A Dir3.h359 } signedness; member
1574 * switch signedness, and whether one exists.
/third_party/libabigail/include/
H A Dabg-ir.h2466 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 Dspirv_parser.cpp509 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 DMakefile319 -Wformat=2 -Wformat-overflow=2 -Wformat-signedness -Wformat-truncation \
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A Dglslang_wrapper_utils.cpp1064 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 Doutput.c136 #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 Dspirv_instruction_builder_autogen.h60 void WriteTypeInt(Blob *blob, IdResult idResult, LiteralInteger width, LiteralInteger signedness);
H A Dspirv_instruction_parser_autogen.h67 LiteralInteger *signedness);
/third_party/node/deps/undici/
H A Dundici.js1861 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) {

Completed in 56 milliseconds

12