Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for 20 (0.11 sec)

  1. src/bytes/buffer_test.go

    		buf.Truncate(26)
    		check(t, "TestBasicOperations (7)", &buf, testString[0:26])
    
    		buf.Truncate(20)
    		check(t, "TestBasicOperations (8)", &buf, testString[0:20])
    
    		empty(t, "TestBasicOperations (9)", &buf, testString[0:20], make([]byte, 5))
    		empty(t, "TestBasicOperations (10)", &buf, "", make([]byte, 100))
    
    		buf.WriteByte(testString[1])
    		c, err := buf.ReadByte()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 13:31:36 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/operand_test.go

    	{"b_len+32(FP)", "b_len+32(FP)"},
    	{"racecall<>(SB)", "racecall<>(SB)"},
    	{"rcv_name+20(FP)", "rcv_name+20(FP)"},
    	{"retoffset+28(FP)", "retoffset+28(FP)"},
    	{"runtime·_GetStdHandle(SB)", "runtime._GetStdHandle(SB)"},
    	{"sync\u2215atomic·AddInt64(SB)", "sync/atomic.AddInt64(SB)"},
    	{"timeout+20(FP)", "timeout+20(FP)"},
    	{"ts+16(FP)", "ts+16(FP)"},
    	{"x+24(FP)", "x+24(FP)"},
    	{"x·y(SB)", "x.y(SB)"},
    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)
  3. src/cmd/asm/internal/asm/testdata/s390x.s

    	MOVB	$-1, n-8(SP)          // 92fff010
    	MOVB	$255, 4096(R4)        // ebff40000152
    	MOVB	$-128, -524288(R5)    // eb8050008052
    	MOVB	$1, -524289(R6)       // c0a1fff7ffff41aa60009201a000
    
    	// RX (12-bit displacement) and RXY (20-bit displacement) instruction encoding (e.g: ST vs STY)
    	MOVW	R1, 4095(R2)(R3)       // 50132fff
    	MOVW	R1, 4096(R2)(R3)       // e31320000150
    	MOVWZ	R1, 4095(R2)(R3)       // 50132fff
    	MOVWZ	R1, 4096(R2)(R3)       // e31320000150
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Nov 22 03:55:32 GMT 2023
    - 21.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/mips64.s

    	BEQ	R1, label1	// BEQ R1, 18		// 1020fffd
    
    //	LBRA rreg ',' sreg ',' rel
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    label2:
    	BEQ	R1, R2, 1(PC)	// BEQ R1, R2, 1(PC)	// 10220001
    	BEQ	R1, R2, label2	// BEQ R1, R2, 20	// 1022fffd
    
    //
    // other integer conditional branch
    //
    //	LBRA rreg ',' rel
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    label3:
    	BLTZ	R1, 1(PC)	// BLTZ R1, 1(PC)	// 04200001
    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)
  5. src/archive/tar/format.go

    	// filenames larger than 256 characters, and non-ASCII filenames.
    	//
    	// Reference:
    	//	http://pubs.opengroup.org/onlinepubs/9699919799/utilities/pax.html#tag_20_92_13_06
    	FormatUSTAR
    
    	// FormatPAX represents the PAX header format defined in POSIX.1-2001.
    	//
    	// PAX extends USTAR by writing a special file with Typeflag TypeXHeader
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  6. src/archive/zip/struct.go

    	directory64LocLen        = 20         //
    	directory64EndLen        = 56         // + extra
    
    	// Constants for the first byte in CreatorVersion.
    	creatorFAT    = 0
    	creatorUnix   = 3
    	creatorNTFS   = 11
    	creatorVFAT   = 14
    	creatorMacOSX = 19
    
    	// Version numbers.
    	zipVersion20 = 20 // 2.0
    	zipVersion45 = 45 // 4.5 (reads and writes zip64 archives)
    
    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. api/go1.6.txt

    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
    pkg debug/elf, const R_MIPS_GOT_PAGE = 20
    pkg debug/elf, const R_MIPS_GOT_PAGE R_MIPS
    pkg debug/elf, const R_MIPS_GPREL16 = 7
    pkg debug/elf, const R_MIPS_GPREL16 R_MIPS
    pkg debug/elf, const R_MIPS_GPREL32 = 12
    pkg debug/elf, const R_MIPS_GPREL32 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)
  8. src/archive/tar/reader_test.go

    			paxGNUSparseNumBlocks: "4",
    			paxGNUSparseMap:       "0,5,10,5,20,5,30,5",
    		},
    		wantMap: sparseDatas{{0, 5}, {10, 5}, {20, 5}, {30, 5}},
    	}, {
    		inputHdrs: map[string]string{
    			paxGNUSparseMajor:     "1",
    			paxGNUSparseMinor:     "0",
    			paxGNUSparseNumBlocks: "4",
    			paxGNUSparseMap:       "0,5,10,5,20,5,30,5",
    		},
    		wantErr: io.ErrUnexpectedEOF,
    	}, {
    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)
  9. api/go1.5.txt

    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
    pkg go/types, const UntypedRune = 21
    pkg go/types, const UntypedRune 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/cmd/asm/internal/asm/testdata/arm64enc.s

    	BFXIL $26, R8, $16, R20                    // 14a55ab3
    	BICW R7@>15, R5, R16                       // b03ce70a
    	BIC R12@>13, R12, R19                      // 9335ec8a
    	BICSW R25->20, R3, R20                     // 7450b96a
    	BICS R19->12, R1, R23                      // 3730b3ea
    	BICS R19, R1, R23                          // 370033ea
    	BICS R19>>0, R1, R23                       // 370073ea
    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