Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Miland (0.41 sec)

  1. src/cmd/asm/internal/asm/testdata/mips64.s

    	SRAV	$12, R3		// 00031b3b
    	ROTR	$12, R8		// 00284302
    	ROTRV	$63, R22	// 0036b7fe
    
    
    //	LAND/LXOR/LNOR/LOR rreg ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	AND	R14, R8		// 010e4024
    	XOR	R15, R9		// 012f4826
    	NOR	R16, R10	// 01505027
    	OR	R17, R11	// 01715825
    
    //	LAND/LXOR/LOR imm ',' rreg
    //	{
    //		outcode(int($1), &$2, 0, &$4);
    //	}
    	AND	$11, R17, R7	// 3227000b
    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)
  2. api/go1.1.txt

    pkg go/token, const ILLEGAL = 0
    pkg go/token, const IMAG = 7
    pkg go/token, const IMPORT = 75
    pkg go/token, const INC = 37
    pkg go/token, const INT = 5
    pkg go/token, const INTERFACE = 76
    pkg go/token, const LAND = 34
    pkg go/token, const LBRACE = 51
    pkg go/token, const LBRACK = 50
    pkg go/token, const LEQ = 45
    pkg go/token, const LOR = 35
    pkg go/token, const LPAREN = 49
    pkg go/token, const LSS = 40
    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)
  3. lib/time/zoneinfo.zip

    Pacific/Pago_Pago Pacific/Palau Pacific/Pitcairn Pacific/Pohnpei Pacific/Ponape Pacific/Port_Moresby Pacific/Rarotonga Pacific/Saipan Pacific/Samoa Pacific/Tahiti Pacific/Tarawa Pacific/Tongatapu Pacific/Truk Pacific/Wake Pacific/Wallis Pacific/Yap Poland Portugal ROC ROK Singapore Turkey UCT US/Alaska US/Aleutian US/Arizona US/Central US/East-Indiana US/Eastern US/Hawaii US/Indiana-Starke US/Michigan US/Mountain US/Pacific US/Samoa UTC Universal W-SU WET Zulu...
    ZIP Archive
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 02 18:20:41 GMT 2024
    - 392.3K bytes
    - Viewed (1)
  4. src/archive/zip/struct.go

    // If the offset is non-sensible, then this uses an offset of zero.
    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)
  5. src/cmd/cgo/gcc.go

    			}
    
    			// Function is being used in an expression, to e.g. pass around a C function pointer.
    			// Create a new Name for this Ref which causes the variable to be declared in Go land.
    			fpName := "fp_" + r.Name.Go
    			name := f.Name[fpName]
    			if name == nil {
    				name = &Name{
    					Go:   fpName,
    					C:    r.Name.C,
    					Kind: "fpvar",
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg go/token, const ILLEGAL Token
    pkg go/token, const IMAG Token
    pkg go/token, const IMPORT Token
    pkg go/token, const INC Token
    pkg go/token, const INT Token
    pkg go/token, const INTERFACE Token
    pkg go/token, const LAND Token
    pkg go/token, const LBRACE Token
    pkg go/token, const LBRACK Token
    pkg go/token, const LEQ Token
    pkg go/token, const LOR Token
    pkg go/token, const LPAREN Token
    pkg go/token, const LSS Token
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  7. src/cmd/asm/internal/asm/testdata/ppc64.s

    	XXBRD VS0, VS1                  // f037076c
    	XXBRW VS1, VS2                  // f04f0f6c
    	XXBRH VS2, VS3                  // f067176c
    	XXLAND VS1, VS2, VS3            // f0611410
    	XXLAND V1, V2, V3               // f0611417
    	XXLAND VS33, VS34, VS35         // f0611417
    	XXLANDC VS1, VS2, VS3           // f0611450
    	XXLEQV VS0, VS1, VS2            // f0400dd0
    	XXLNAND VS0, VS1, VS2           // f0400d90
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Apr 24 15:53:25 GMT 2024
    - 49K bytes
    - Viewed (0)
Back to top