Home
last modified time | relevance | path

Searched defs:signed (Results 1 – 19 of 19) sorted by relevance

/third_party/protobuf/js/experimental/runtime/
Dint64_test.js98 '0x0000000000000000': {signed: '0'}, property
99 '0x0000000000000001': {signed: '1'}, property
100 '0x00000000ffffffff': {signed: '4294967295'}, property
101 '0x0000000100000000': {signed: '4294967296'}, property
102 '0xffffffffffffffff': {signed: '-1', unsigned: '18446744073709551615'}, property
104 {signed: '-9223372036854775808', unsigned: '9223372036854775808'}, property
106 {signed: '-9223372034707292160', unsigned: '9223372039002259456'}, property
107 '0x01b69b4bacd05f15': {signed: '123456789123456789'}, property
109 {signed: '-123456789123456789', unsigned: '18323287284586094827'}, property
111 {signed: '-6510615555426900571', unsigned: '11936128518282651045'}, property
[all …]
/third_party/node/test/parallel/
Dtest-internal-webidl-converttoint.js21 assert.strictEqual(convertToInt('x', -0.5, 64, { signed: true }), 0); property
22 assert.strictEqual(convertToInt('x', -1.5, 64, { signed: true }), -1); property
37 assert.strictEqual(convertToInt('x', -Infinity, 64, { signed: true, clamp: true }), Number.MIN_SAFE… property
40 assert.strictEqual(convertToInt('x', 0x8000_0000, 32, { clamp: true, signed: true }), 0x7FFF_FFFF); property
41 assert.strictEqual(convertToInt('x', 0xFFFF_FFFF, 32, { clamp: true, signed: true }), 0x7FFF_FFFF); property
45 assert.strictEqual(convertToInt('x', -0.5, 64, { signed: true, clamp: true }), 0); property
46 assert.strictEqual(convertToInt('x', -1.5, 64, { signed: true, clamp: true }), -2); property
57 assert.strictEqual(convertToInt('x', 0x8000_0000, 32, { signed: true }), -0x8000_0000); property
58 assert.strictEqual(convertToInt('x', 0xFFF_FFFF, 32, { signed: true }), 0xFFF_FFFF); property
/third_party/rust/crates/cxx/src/
Dc_char.rs66 mod signed { module
/third_party/protobuf/js/binary/
Dutils.js597 jspb.utils.hash64ToDecimalString = function(hash, signed) { argument
615 jspb.utils.hash64ArrayToDecimalStrings = function(hashes, signed) { argument
758 jspb.utils.hash64ToNumber = function(hash, signed) { argument
/third_party/rust/crates/rust-openssl/openssl/src/
Dpkcs7.rs342 let signed = pkcs7 in sign_verify_test_detached() localVariable
386 let signed = pkcs7 in sign_verify_test_normal() localVariable
423 let signed = pkcs7 in signers() localVariable
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/
Dmetadata.js42 constructor(signed, signatures, unrecognizedFields) { argument
/third_party/mesa3d/src/compiler/isaspec/
Dencode.py72 def signed(self): member in FieldCase
84 def signed(self): member in AssertField
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/
Dast.js49 signed: is_int ? inst.operand(2).value() : 1 property
/third_party/spirv-tools/tools/sva/src/
Dast.js49 signed: is_int ? inst.operand(2).value() : 1 property
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
Dast.js49 signed: is_int ? inst.operand(2).value() : 1 property
/third_party/ltp/tools/sparse/sparse-src/
Dparse.dtd31 signed (0|1) #IMPLIED attribute
/third_party/mesa3d/src/mapi/glapi/gen/
Dtypeexpr.py190 def set_base_type(self, type_name, signed, unsigned, const, extra_types): argument
/third_party/python/Lib/test/
Dtest_long.py1105 def check(tests, byteorder, signed=False): argument
1204 def check(tests, byteorder, signed=False): argument
/third_party/mesa3d/src/panfrost/bifrost/valhall/
Dvalhall.py177 def __init__(self, name, start, size, signed): argument
/third_party/node/deps/v8/src/execution/riscv64/
Dsimulator-riscv64.cc1358 #define RVV_VI_VIE_8_LOOP(signed) \ argument
1376 #define RVV_VI_VIE_4_LOOP(signed) \ argument
1402 #define RVV_VI_VIE_2_LOOP(signed) \ argument
/third_party/python/
Dconfigure.ac4332 [AC_DEFINE(signed, , [Define to empty if the keyword does not work.])] definition
/third_party/rust/crates/log/src/kv/
Dvalue.rs804 fn signed() -> impl Iterator<Item = Value<'static>> { in signed() function
/third_party/FreeBSD/sys/sys/
Dcdefs.h186 #define signed macro
/third_party/rust/crates/bindgen/bindgen/codegen/
Dmod.rs3065 let signed = kind.is_signed(); in codegen() localVariable