Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for 14 (0.23 sec)

  1. src/archive/tar/strconv_test.go

    		{"\x80\x00", 0, true},
    		{"\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. src/archive/zip/reader_test.go

    	//        0  Stored        0   0% 08-05-2021 18:32 00000000  /
    	//        0  Stored        0   0% 09-14-2021 12:59 00000000  //
    	//        0  Stored        0   0% 09-14-2021 12:59 00000000  \
    	//       11  Stored       11   0% 09-14-2021 13:04 0d4a1185  /test.txt
    	// --------          -------  ---                            -------
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  3. api/go1.5.txt

    pkg bufio, method (ReadWriter) Discard(int) (int, error)
    pkg bytes, func LastIndexByte([]uint8, uint8) int
    pkg bytes, method (*Buffer) Cap() int
    pkg bytes, method (*Reader) Size() int64
    pkg crypto, const SHA512_224 = 14
    pkg crypto, const SHA512_224 Hash
    pkg crypto, const SHA512_256 = 15
    pkg crypto, const SHA512_256 Hash
    pkg crypto, type Decrypter interface { Decrypt, Public }
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/operand_test.go

    	{"$shifts<>(SB)", "$shifts<>(SB)"},
    	{"$~(1<<63)", "$9223372036854775807"},
    	{"$~0x3F", "$-64"},
    	{"$~15", "$-16"},
    	{"(((8)&0xf)*4)(SP)", "32(SP)"},
    	{"(((8-14)&0xf)*4)(SP)", "40(SP)"},
    	{"(6+8)(AX)", "14(AX)"},
    	{"(8*4)(BP)", "32(BP)"},
    	{"(AX)", "(AX)"},
    	{"(AX)(CX*8)", "(AX)(CX*8)"},
    	{"(BP)(CX*4)", "(BP)(CX*4)"},
    	{"(BP)(DX*4)", "(BP)(DX*4)"},
    	{"(BP)(R8*4)", "(BP)(R8*4)"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  5. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const AF_ISDN ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_ISO = 7
    pkg syscall (netbsd-arm64-cgo), const AF_ISO ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_LAT = 14
    pkg syscall (netbsd-arm64-cgo), const AF_LAT ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_LINK = 18
    pkg syscall (netbsd-arm64-cgo), const AF_LINK ideal-int
    pkg syscall (netbsd-arm64-cgo), const AF_LOCAL = 1
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (linux-386), const F_SETLEASE = 1024
    pkg syscall (linux-386), const F_SETLK = 13
    pkg syscall (linux-386), const F_SETLK64 = 13
    pkg syscall (linux-386), const F_SETLKW = 14
    pkg syscall (linux-386), const F_SETLKW64 = 14
    pkg syscall (linux-386), const F_SETOWN = 8
    pkg syscall (linux-386), const F_SETOWN_EX = 15
    pkg syscall (linux-386), const F_SETPIPE_SZ = 1031
    pkg syscall (linux-386), const F_SETSIG = 10
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/expr_test.go

    	{"-9223372036854775808", -9223372036854775808, true}, // min int64
    	// Binary
    	{"3+4", 3 + 4, true},
    	{"3-4", 3 - 4, true},
    	{"2|5", 2 | 5, true},
    	{"3^4", 3 ^ 4, true},
    	{"3*4", 3 * 4, true},
    	{"14/4", 14 / 4, true},
    	{"3<<4", 3 << 4, true},
    	{"48>>3", 48 >> 3, true},
    	{"3&9", 3 & 9, true},
    	// General
    	{"3*2+3", 3*2 + 3, true},
    	{"3+2*3", 3 + 2*3, true},
    	{"3*(2+3)", 3 * (2 + 3), true},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  8. src/archive/zip/struct.go

    func timeZone(offset time.Duration) *time.Location {
    	const (
    		minOffset   = -12 * time.Hour  // E.g., Baker island at -12:00
    		maxOffset   = +14 * time.Hour  // E.g., Line island at +14:00
    		offsetAlias = 15 * time.Minute // E.g., Nepal at +5:45
    	)
    	offset = offset.Round(offsetAlias)
    	if offset < minOffset || maxOffset < offset {
    		offset = 0
    	}
    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)
  9. src/cmd/asm/internal/asm/testdata/arm.s

    	SRL	$1, R5, R6           // a560a0e1
    	SRL	$14, R5, R6          // 2567a0e1
    	SRL	$15, R5, R6          // a567a0e1
    	SRL	$30, R5, R6          // 256fa0e1
    	SRL	$31, R5, R6          // a56fa0e1
    	SRL	$32, R5, R6          // 2560a0e1
    	SRL.S	$14, R5, R6          // 2567b0e1
    	SRL.S	$15, R5, R6          // a567b0e1
    	SRL.S	$30, R5, R6          // 256fb0e1
    	SRL.S	$31, R5, R6          // a56fb0e1
    	SRL	$14, R5              // 2557a0e1
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	ANDSW R10@>21, R2, ZR                      // 5f54ca6a
    	ANDS R17<<11, R24, ZR                      // 1f2f11ea
    	UBFIZW $3, R19, $14, R14                   // 6e361d53
    	UBFIZ $3, R22, $14, R4                     // c4367dd3
    	UBFXW $3, R7, $20, R15                     // ef580353
    	UBFX $33, R17, $25, R5                     // 25e661d3
    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)
Back to top