Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for 22 (0.16 sec)

  1. src/archive/tar/strconv_test.go

    		{"\x80\x00\x00", 0, true},
    		{"\xbf", (1 << 6) - 1, true},
    		{"\xbf\xff", (1 << 14) - 1, true},
    		{"\xbf\xff\xff", (1 << 22) - 1, true},
    		{"\xff", -1, true},
    		{"\xff\xff", -1, true},
    		{"\xff\xff\xff", -1, true},
    		{"\xc0", -1 * (1 << 6), true},
    		{"\xc0\x00", -1 * (1 << 14), true},
    		{"\xc0\x00\x00", -1 * (1 << 22), true},
    		{"\x87\x76\xa2\x22\xeb\x8a\x72\x61", 537795476381659745, true},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 09 05:28:50 GMT 2021
    - 14K bytes
    - Viewed (0)
  2. api/go1.18.txt

    pkg debug/buildinfo, type BuildInfo = debug.BuildInfo
    pkg debug/dwarf, type BasicType struct, DataBitOffset int64
    pkg debug/dwarf, type StructField struct, DataBitOffset int64
    pkg debug/elf, const R_PPC64_RELATIVE = 22
    pkg debug/elf, const R_PPC64_RELATIVE R_PPC64
    pkg debug/plan9obj, var ErrNoSymbols error
    pkg go/ast, method (*IndexListExpr) End() token.Pos
    pkg go/ast, method (*IndexListExpr) Pos() token.Pos
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 13K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/mips64.s

    //
    // other integer conditional branch
    //
    //	LBRA rreg ',' rel
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    label3:
    	BLTZ	R1, 1(PC)	// BLTZ R1, 1(PC)	// 04200001
    	BLTZ	R1, label3	// BLTZ R1, 22		// 0420fffd
    
    //
    // floating point conditional branch
    //
    //	LBRA rel
    label4:
    	BFPT	1(PC)	// BFPT 1(PC)			// 4501000100000000
    	BFPT	label4	// BFPT 24			// 4501fffd00000000
    
    //inst:
    //
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 08 12:17:12 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  4. api/go1.6.txt

    pkg debug/elf, const R_MIPS_GOT16 = 9
    pkg debug/elf, const R_MIPS_GOT16 R_MIPS
    pkg debug/elf, const R_MIPS_GOT_DISP = 19
    pkg debug/elf, const R_MIPS_GOT_DISP R_MIPS
    pkg debug/elf, const R_MIPS_GOT_HI16 = 22
    pkg debug/elf, const R_MIPS_GOT_HI16 R_MIPS
    pkg debug/elf, const R_MIPS_GOT_LO16 = 23
    pkg debug/elf, const R_MIPS_GOT_LO16 R_MIPS
    pkg debug/elf, const R_MIPS_GOT_OFST = 21
    pkg debug/elf, const R_MIPS_GOT_OFST R_MIPS
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	ORRW R13<<4, R8, R26                       // 1a110d2a
    	ORR R3<<22, R5, R6                         // a65803aa
    	PRFM (R8), $25                             // 190180f9
    	PRFM (R2), PLDL1KEEP                       // 400080f9
    	//TODO PRFM (R27)(R30.SXTW<<3), PLDL2STRM  // 63dbbff8
    	//TODO PRFUM 22(R16), PSTL1KEEP            // 106281f8
    	RBITW R9, R22                              // 3601c05a
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
  6. src/archive/zip/struct.go

    	fileHeaderLen            = 30         // + filename + extra
    	directoryHeaderLen       = 46         // + filename + extra + comment
    	directoryEndLen          = 22         // + comment
    	dataDescriptorLen        = 16         // four uint32: descriptor signature, crc32, compressed size, size
    	dataDescriptor64Len      = 24         // two uint32: signature, crc32 | two uint64: compressed size, size
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/archive/tar/strconv.go

    // fitsInOctal reports whether the integer x fits in a field n-bytes long
    // using octal encoding with the appropriate NUL terminator.
    func fitsInOctal(n int, x int64) bool {
    	octBits := uint(n-1) * 3
    	return x >= 0 && (n >= 22 || x < 1<<octBits)
    }
    
    // parsePAXTime takes a string of the form %d.%d as described in the PAX
    // specification. Note that this implementation allows for negative timestamps,
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 01 14:28:42 GMT 2023
    - 9K bytes
    - Viewed (0)
  8. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const EILSEQ = 85
    pkg syscall (netbsd-arm64-cgo), const EINPROGRESS = 36
    pkg syscall (netbsd-arm64-cgo), const EINTR = 4
    pkg syscall (netbsd-arm64-cgo), const EINVAL = 22
    pkg syscall (netbsd-arm64-cgo), const EIO = 5
    pkg syscall (netbsd-arm64-cgo), const EISCONN = 56
    pkg syscall (netbsd-arm64-cgo), const EISDIR = 21
    pkg syscall (netbsd-arm64-cgo), const ELAST = 96
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  9. api/go1.5.txt

    pkg go/types, const UntypedBool = 19
    pkg go/types, const UntypedBool BasicKind
    pkg go/types, const UntypedComplex = 23
    pkg go/types, const UntypedComplex BasicKind
    pkg go/types, const UntypedFloat = 22
    pkg go/types, const UntypedFloat BasicKind
    pkg go/types, const UntypedInt = 20
    pkg go/types, const UntypedInt BasicKind
    pkg go/types, const UntypedNil = 25
    pkg go/types, const UntypedNil BasicKind
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  10. src/archive/tar/reader_test.go

    			map[string]string{"key1": "", "key2": "val2"}, true},
    		{"22 GNU.sparse.size=10\n26 GNU.sparse.numblocks=2\n" +
    			"23 GNU.sparse.offset=1\n25 GNU.sparse.numbytes=2\n" +
    			"23 GNU.sparse.offset=3\n25 GNU.sparse.numbytes=4\n",
    			map[string]string{paxGNUSparseSize: "10", paxGNUSparseNumBlocks: "2", paxGNUSparseMap: "1,2,3,4"}, true},
    		{"22 GNU.sparse.size=10\n26 GNU.sparse.numblocks=1\n" +
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
Back to top