/third_party/node/deps/v8/src/profiler/ |
H A D | output-stream-writer.h | 25 static const int kSigned = 3; member 30 static const int kSigned = 11; member 35 static const int kSigned = 20; member
|
/third_party/skia/src/sksl/ir/ |
H A D | SkSLType.h | 99 kSigned, member in SkSL::Type::NumberKind 249 case NumberKind::kSigned: in isNumber() 268 return this->numberKind() == NumberKind::kSigned; in isSigned() 283 case NumberKind::kSigned: in isInteger()
|
H A D | SkSLType.cpp | 557 case Type::NumberKind::kSigned:
|
/third_party/skia/src/sksl/ |
H A D | SkSLBuiltinTypes.cpp | 32 "int", "i", Type::NumberKind::kSigned, /*priority=*/7, /*bitWidth=*/32)) in BuiltinTypes() 42 "short", "s", Type::NumberKind::kSigned, /*priority=*/4, /*bitWidth=*/16)) in BuiltinTypes()
|
/third_party/vixl/src/aarch64/ |
H A D | cpu-aarch64.cc | 40 const IDRegister::Field AA64PFR0::kFP(16, Field::kSigned); 41 const IDRegister::Field AA64PFR0::kAdvSIMD(20, Field::kSigned); 260 case Field::kSigned: in Get()
|
H A D | cpu-aarch64.h | 58 enum Type { kUnsigned, kSigned }; enumerator
|
/third_party/skia/third_party/externals/spirv-tools/test/val/ |
H A D | val_id_test.cpp | 789 enum Signed { kSigned, kUnsigned }; enumerator 816 ss << " %t = OpTypeInt " << width << (isSigned == kSigned ? " 1" : " 0"); in MakeArrayLength() 866 Val(CompileSuccessfully(MakeArrayLength("1", kSigned, width)))); in TEST_P() 870 Val(CompileSuccessfully(MakeArrayLength("2", kSigned, width)))); in TEST_P() 874 Val(CompileSuccessfully(MakeArrayLength("55", kSigned, width)))); in TEST_P() 880 Val(CompileSuccessfully(MakeArrayLength("0x7" + fpad, kSigned, width)))) in TEST_P() 881 << MakeArrayLength("0x7" + fpad, kSigned, width); in TEST_P() 887 Val(CompileSuccessfully(MakeArrayLength("0", kSigned, width)), in TEST_P() 899 Val(CompileSuccessfully(MakeArrayLength("-1", kSigned, width)), in TEST_P() 903 Val(CompileSuccessfully(MakeArrayLength("-2", kSigned, widt in TEST_P() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/val/ |
H A D | val_id_test.cpp | 789 enum Signed { kSigned, kUnsigned }; enumerator 816 ss << " %t = OpTypeInt " << width << (isSigned == kSigned ? " 1" : " 0"); in MakeArrayLength() 866 Val(CompileSuccessfully(MakeArrayLength("1", kSigned, width)))); in TEST_P() 870 Val(CompileSuccessfully(MakeArrayLength("2", kSigned, width)))); in TEST_P() 874 Val(CompileSuccessfully(MakeArrayLength("55", kSigned, width)))); in TEST_P() 880 Val(CompileSuccessfully(MakeArrayLength("0x7" + fpad, kSigned, width)))) in TEST_P() 881 << MakeArrayLength("0x7" + fpad, kSigned, width); in TEST_P() 887 Val(CompileSuccessfully(MakeArrayLength("0", kSigned, width)), in TEST_P() 899 Val(CompileSuccessfully(MakeArrayLength("-1", kSigned, width)), in TEST_P() 903 Val(CompileSuccessfully(MakeArrayLength("-2", kSigned, widt in TEST_P() [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | js-typed-lowering.h | 29 enum Signedness { kSigned, kUnsigned }; enumerator
|
H A D | js-typed-lowering.cc | 423 if (signedness == kSigned) { in ConvertToUI32() 475 r.ConvertInputsToUI32(kSigned, kSigned); in ReduceJSBitwiseNot() 708 r.ConvertInputsToUI32(kSigned, kSigned); in ReduceInt32Binop() 2371 return ReduceUI32Shift(node, kSigned); in Reduce()
|
/third_party/node/deps/v8/src/wasm/baseline/arm64/ |
H A D | liftoff-assembler-arm64.h | 166 enum class ShiftSign : bool { kSigned, kUnsigned }; member in v8::internal::wasm::liftoff::ShiftSign 168 template <ShiftDirection dir, ShiftSign sign = ShiftSign::kSigned> 171 DCHECK_IMPLIES(dir == ShiftDirection::kLeft, sign == ShiftSign::kSigned); in EmitSimdShift() 186 if (sign == ShiftSign::kSigned) { in EmitSimdShift() 206 if (sign == ShiftSign::kSigned) { in EmitSimdShiftRightImmediate() 2089 liftoff::ShiftSign::kSigned>( in emit_i64x2_shr_s() 2095 liftoff::EmitSimdShiftRightImmediate<kFormat2D, liftoff::ShiftSign::kSigned>( in emit_i64x2_shri_s() 2255 liftoff::ShiftSign::kSigned>( in emit_i32x4_shr_s() 2261 liftoff::EmitSimdShiftRightImmediate<kFormat4S, liftoff::ShiftSign::kSigned>( in emit_i32x4_shri_s() 2431 liftoff::ShiftSign::kSigned>( in emit_i16x8_shr_s() [all...] |
/third_party/spirv-tools/test/val/ |
H A D | val_id_test.cpp | 874 enum Signed { kSigned, kUnsigned }; 901 ss << " %t = OpTypeInt " << width << (isSigned == kSigned ? " 1" : " 0"); 951 Val(CompileSuccessfully(MakeArrayLength("1", kSigned, width)))); 955 Val(CompileSuccessfully(MakeArrayLength("2", kSigned, width)))); 959 Val(CompileSuccessfully(MakeArrayLength("55", kSigned, width)))); 965 Val(CompileSuccessfully(MakeArrayLength("0x7" + fpad, kSigned, width)))) 966 << MakeArrayLength("0x7" + fpad, kSigned, width); 972 Val(CompileSuccessfully(MakeArrayLength("0", kSigned, width)), 984 Val(CompileSuccessfully(MakeArrayLength("-1", kSigned, width)), 988 Val(CompileSuccessfully(MakeArrayLength("-2", kSigned, widt [all...] |
/third_party/skia/src/sksl/codegen/ |
H A D | SkSLVMCodeGenerator.cpp | 313 case Type::NumberKind::kSigned: o->writeText("int"); break; 772 if (srcKind == Type::NumberKind::kSigned) { 788 case Type::NumberKind::kSigned: 806 if (srcKind == Type::NumberKind::kSigned) { 1416 case Type::NumberKind::kSigned: 1429 case Type::NumberKind::kSigned: 1458 case Type::NumberKind::kSigned:
|
/third_party/skia/tools/viewer/ |
H A D | ParticlesSlide.cpp | 368 case NumberKind::kSigned: dataType = ImGuiDataType_S32; break; in draw()
|