/third_party/node/deps/npm/node_modules/@tufjs/models/dist/ |
H A D | metadata.js | 18 * A container for signed TUF metadata. 25 * is to allow static type checking of the signed attribute in code using 29 * # root_md type is now Metadata[Root]. This means signed and its 42 constructor(signed, signatures, unrecognizedFields) { 43 this.signed = signed; 48 const bytes = Buffer.from((0, canonical_json_1.canonicalize)(this.signed.toJSON())); 58 switch (this.signed.type) { 60 keys = this.signed.keys; 61 role = this.signed [all...] |
/third_party/elfutils/tests/ |
H A D | run-allregs.sh | 32 0: %eax (eax), signed 32 bits 33 1: %ecx (ecx), signed 32 bits 34 2: %edx (edx), signed 32 bits 35 3: %ebx (ebx), signed 32 bits 38 6: %esi (esi), signed 32 bits 39 7: %edi (edi), signed 32 bits 85 0: %rax (rax), signed 64 bits 86 1: %rdx (rdx), signed 64 bits 87 2: %rcx (rcx), signed 64 bits 88 3: %rbx (rbx), signed 6 [all...] |
H A D | run-dwarf-getmacros.sh | 336 __INT8_TYPE__ signed char 344 __INT_LEAST8_TYPE__ signed char 352 __INT_FAST8_TYPE__ signed char
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | typeexpr.py | 33 self.signed = 1 # bool 56 if self.signed: 57 s += "signed " 131 signed = 0 140 elif i == "signed": 141 signed = 1 151 self.set_base_type( "int", signed, unsigned, const, extra_types ) 153 signed = 0 159 if signed: 160 raise RuntimeError("Invalid type expression (signed / unsigne [all...] |
/third_party/protobuf/js/experimental/runtime/ |
H A D | int64_test.js | 98 '0x0000000000000000': {signed: '0'}, 99 '0x0000000000000001': {signed: '1'}, 100 '0x00000000ffffffff': {signed: '4294967295'}, 101 '0x0000000100000000': {signed: '4294967296'}, 102 '0xffffffffffffffff': {signed: '-1', unsigned: '18446744073709551615'}, 104 {signed: '-9223372036854775808', unsigned: '9223372036854775808'}, 106 {signed: '-9223372034707292160', unsigned: '9223372039002259456'}, 107 '0x01b69b4bacd05f15': {signed: '123456789123456789'}, 109 {signed: '-123456789123456789', unsigned: '18323287284586094827'}, 111 {signed [all...] |
/third_party/python/Lib/test/ |
H A D | test_long.py | 1211 def check(tests, byteorder, signed=False): 1212 def equivalent_python(n, length, byteorder, signed=False): 1222 test.to_bytes(len(expected), byteorder, signed=signed), 1226 "failed to convert {} with byteorder={} and signed={}" 1227 .format(test, byteorder, signed)) from err 1230 if len(expected) == 1 and byteorder == 'big' and not signed: 1241 test, len(expected), byteorder, signed=signed), 1248 "signed [all...] |
/third_party/node/lib/internal/ |
H A D | webidl.js | 51 // << operates on 32 bit signed integers. 77 const { signed = false, enforceRange = false, clamp = false } = options; 87 lowerBound = !signed ? 0 : NumberMIN_SAFE_INTEGER; 88 } else if (!signed) { 153 // 11. If signedness is "signed" and x ≥ 2^(bitLength − 1), then return x − 155 if (signed && x >= pow2(bitLength - 1)) {
|
/third_party/skia/third_party/externals/freetype/src/sdf/ |
H A D | module.mk | 21 $(ECHO_DRIVER)sdf $(ECHO_DRIVER_DESC)signed distance field renderer$(ECHO_DRIVER_DONE) 26 $(ECHO_DRIVER)bsdf $(ECHO_DRIVER_DESC)bitmap to signed distance field converter$(ECHO_DRIVER_DONE)
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | pkcs7.rs | 23 /// Contains signed and/or encrypted data. 218 /// verification). `indata` is the signed data if the content is not present 342 let signed = pkcs7 in sign_verify_test_detached() 345 println!("{:?}", String::from_utf8(signed.clone()).unwrap()); in sign_verify_test_detached() 347 Pkcs7::from_smime(signed.as_slice()).expect("should succeed"); in sign_verify_test_detached() 386 let signed = pkcs7 in sign_verify_test_normal() 391 Pkcs7::from_smime(signed.as_slice()).expect("should succeed"); in sign_verify_test_normal() 423 let signed = pkcs7 in signers() 427 let (pkcs7_decoded, _) = Pkcs7::from_smime(signed.as_slice()).expect("should succeed"); in signers()
|
/third_party/rust/crates/cxx/src/ |
H A D | c_char.rs | 59 // On every other target, c_char is signed. 60 pub use self::signed::*; 66 mod signed { modules
|
/third_party/ffmpeg/libswscale/x86/ |
H A D | scale.asm | 136 %if %1 == 16 ; pmaddwd needs signed adds, so this moves unsigned -> signed, we'll 180 %if %1 == 16 ; pmaddwd needs signed adds, so this moves unsigned -> signed, we'll 272 %if %1 == 16 ; pmaddwd needs signed adds, so this moves unsigned -> signed, we'll 299 %if %1 == 16 ; pmaddwd needs signed adds, so this moves unsigned -> signed, we'll 329 %if %1 == 16 ; add 0x8000 * sum(coeffs), i.e. back from signed -> unsigned
|
/third_party/protobuf/js/binary/ |
H A D | decoder_test.js | 37 * both a double and a signed 64-bit integer. 93 * Tests encoding and decoding of signed types. 267 const signed = true; 269 .toEqual(jspb.utils.hash64ToDecimalString(hashA, signed)); 271 .toEqual(jspb.utils.hash64ToDecimalString(hashB, signed)); 273 .toEqual(jspb.utils.hash64ToDecimalString(hashC, signed)); 275 .toEqual(jspb.utils.hash64ToDecimalString(hashD, signed)); 424 * Tests encoding and decoding of signed integers.
|
H A D | utils.js | 87 * Splits a signed Javascript integer into two 32-bit halves and stores it in 120 * Converts a signed Javascript integer into zigzag format, splits it into two 321 * Joins two 32-bit values into a 64-bit signed integer. Precision will be lost 568 * Losslessly converts a 64-bit signed integer in 32:32 split representation 575 // If we're treating the input as a signed value and the high bit is set, do 590 * Convert an 8-character hash string representing either a signed or unsigned 593 * @param {boolean} signed True if we should treat the hash string as encoding 594 * a signed integer. 597 jspb.utils.hash64ToDecimalString = function(hash, signed) { 601 return signed [all...] |
/third_party/node/test/parallel/ |
H A D | test-tls-set-secure-context.js | 59 /^Error: self-signed certificate$/ : 60 /^Error: self signed certificate$/;
|
H A D | test-timers-max-duration-warning.js | 19 assert.strictEqual(lines[0], `${OVERFLOW} does not fit into a 32-bit signed` +
|
/third_party/ltp/scripts/ |
H A D | checkpatch.pl | 678 qr{char\s+(?:un)?signed}, 679 qr{int\s+(?:(?:un)?signed\s+)?short\s}, 680 qr{int\s+short(?:\s+(?:un)?signed)}, 681 qr{short\s+int(?:\s+(?:un)?signed)}, 682 qr{(?:un)?signed\s+int\s+short}, 683 qr{short\s+(?:un)?signed}, 684 qr{long\s+int\s+(?:un)?signed}, 685 qr{int\s+long\s+(?:un)?signed}, 686 qr{long\s+(?:un)?signed\s+int}, 687 qr{int\s+(?:un)?signed\ [all...] |
/third_party/mesa3d/src/panfrost/bifrost/valhall/ |
H A D | valhall.py | 177 def __init__(self, name, start, size, signed): 181 self.signed = signed 246 int(el.attrib['size']), bool(el.attrib.get('signed', False)))
|
/third_party/skia/third_party/externals/spirv-tools/tools/sva/src/ |
H A D | ast.js | 24 * signed- the sign of the number 49 signed: is_int ? inst.operand(2).value() : 1
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/ |
H A D | ast.js | 24 * signed- the sign of the number 49 signed: is_int ? inst.operand(2).value() : 1
|
/third_party/spirv-tools/tools/sva/src/ |
H A D | ast.js | 24 * signed- the sign of the number 49 signed: is_int ? inst.operand(2).value() : 1
|
/third_party/mesa3d/src/compiler/isaspec/ |
H A D | encode.py | 72 def signed(self): member in FieldCase 84 def signed(self): member in AssertField 653 const bitmask_t packed = pack_field(${f.field.low}, ${f.field.high}, fld, ${f.signed()}); /* ${f.field.name} */ 673 const bitmask_t packed = pack_field(${f.field.low}, ${f.field.high}, ${f.field.val}, ${f.signed()});
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/x86_64/ |
H A D | jchuff-sse2.asm | 97 ; wN: xmmN treated as eight signed 16-bit values 98 ; wN[i]: perform the same operation on all eight signed 16-bit values, i=0..7 349 ; w/ signed saturation 380 ; w/ signed saturation 433 ; w/ signed saturation 459 ; w/ signed saturation
|
/third_party/ffmpeg/libavcodec/x86/ |
H A D | vp8dsp_loopfilter.asm | 234 psubsb m2, m4 ; m2=p1-q1 (signed) backup for below 236 psrlq m3, 1 ; m3=FFABS(p1-q1)/2, this can be used signed 246 psubsb m5, m0 ; q0-p0 (signed) 587 psubsb m1, m7 ; (signed) q0-p0 592 psubsb m6, m7 ; (signed) p1-q1 975 psubsb m1, m7 ; (signed) q0-p0 980 psubsb m6, m7 ; (signed) p1-q1 1043 punpcklbw m6, m0 ; signed byte->word
|
/third_party/skia/third_party/externals/libjpeg-turbo/simd/i386/ |
H A D | jchuff-sse2.asm | 109 ; wN: xmmN treated as eight signed 16-bit values 110 ; wN[i]: perform the same operation on all eight signed 16-bit values, i=0..7 405 ; w/ signed saturation 438 ; w/ signed saturation 500 ; w/ signed saturation 537 ; w/ signed saturation
|
/third_party/node/deps/npm/node_modules/pacote/lib/ |
H A D | registry.js | 302 `doesn't match what was signed: ${subject.name}` 312 `doesn't match what was signed: ${subject.sha512}` 317 // Provenance attestations are signed with a signing certificate 320 // Publish attestations are signed with a keyid so we need to
|