Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for bond (0.2 sec)

  1. src/arena/arena.go

    func MakeSlice[T any](a *Arena, len, cap int) []T {
    	var sl []T
    	runtime_arena_arena_Slice(a.a, &sl, cap)
    	return sl[:len]
    }
    
    // Clone makes a shallow copy of the input value that is no longer bound to any
    // arena it may have been allocated from, returning the copy. If it was not
    // allocated from an arena, it is returned untouched. This function is useful
    // to more easily let an arena-allocated value out-live its arena.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/cgo/ast.go

    	case *ast.ReturnStmt:
    		f.walk(n.Results, ctxExpr, visit)
    	case *ast.BranchStmt:
    	case *ast.BlockStmt:
    		f.walk(n.List, context, visit)
    	case *ast.IfStmt:
    		f.walk(n.Init, ctxStmt, visit)
    		f.walk(&n.Cond, ctxExpr, visit)
    		f.walk(n.Body, ctxStmt, visit)
    		f.walk(n.Else, ctxStmt, visit)
    	case *ast.CaseClause:
    		if context == ctxTypeSwitch {
    			context = ctxType
    		} else {
    			context = ctxExpr
    		}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    <p>
    Slice expressions construct a substring or slice from a string, array, pointer
    to array, or slice. There are two variants: a simple form that specifies a low
    and high bound, and a full form that also specifies a bound on the capacity.
    </p>
    
    <h4>Simple slice expressions</h4>
    
    <p>
    For a string, array, pointer to array, or slice <code>a</code>, the primary expression
    </p>
    
    <pre>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SYS_ADJTIME = 421
    pkg syscall (netbsd-arm64-cgo), const SYS_ADJTIME ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_BIND = 104
    pkg syscall (netbsd-arm64-cgo), const SYS_BIND ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_BREAK = 17
    pkg syscall (netbsd-arm64-cgo), const SYS_BREAK ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_CHDIR = 12
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/arch/arm.go

    // codes, such as ".P.W". An initial period is ignored.
    func ParseARMCondition(cond string) (uint8, bool) {
    	return parseARMCondition(cond, armLS, armSCOND)
    }
    
    func parseARMCondition(cond string, ls, scond map[string]uint8) (uint8, bool) {
    	cond = strings.TrimPrefix(cond, ".")
    	if cond == "" {
    		return arm.C_SCOND_NONE, true
    	}
    	names := strings.Split(cond, ".")
    	bits := uint8(0)
    	for _, name := range names {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Nov 18 17:59:44 GMT 2022
    - 6.1K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm.s

    //	}
    //	LTYPE1 cond imsr ',' reg
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    	ADD	$1, R2
    	ADD	R1<<R2, R3
    	ADD	R1>>R2, R3
    	ADD	R1@>R2, R3
    	ADD	R1->R2, R3
    	ADD	R1, R2
    
    //
    // MVN
    //
    //	LTYPE2 cond imsr ',' reg
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    	CLZ	R1, R2
    
    //
    // MOVW
    //
    //	LTYPE3 cond gen ',' gen
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  7. api/go1.16.txt

    pkg syscall (darwin-arm64), const IPV6_BINDV6ONLY = 27
    pkg syscall (darwin-arm64), const IPV6_BINDV6ONLY ideal-int
    pkg syscall (darwin-arm64), const IPV6_BOUND_IF = 125
    pkg syscall (darwin-arm64), const IPV6_BOUND_IF ideal-int
    pkg syscall (darwin-arm64), const IPV6_CHECKSUM = 26
    pkg syscall (darwin-arm64), const IPV6_CHECKSUM ideal-int
    pkg syscall (darwin-arm64), const IPV6_DEFAULT_MULTICAST_HOPS = 1
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg strings, method (*Replacer) WriteString(io.Writer, string) (int, error)
    pkg strings, type Reader struct
    pkg strings, type Replacer struct
    pkg sync, func NewCond(Locker) *Cond
    pkg sync, method (*Cond) Broadcast()
    pkg sync, method (*Cond) Signal()
    pkg sync, method (*Cond) Wait()
    pkg sync, method (*Mutex) Lock()
    pkg sync, method (*Mutex) Unlock()
    pkg sync, method (*Once) Do(func())
    pkg sync, method (*RWMutex) Lock()
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. src/cmd/asm/internal/asm/testdata/arm64.s

    	CASPD	(R30, ZR), (RSP), (R8, R9)           // e87f3e48
    	CASPW	(R6, R7), (R8), (R4, R5)             // 047d2608
    	CASPD	(R2, R3), (R2), (R8, R9)             // 487c2248
    
    // RET
    	RET
    	RET	foo(SB)
    
    // B/BL/B.cond cases, and canonical names JMP, CALL.
    	BL	1(PC)      // CALL 1(PC)
    	BL	(R2)       // CALL (R2)
    	BL	foo(SB)    // CALL foo(SB)
    	BL	bar<>(SB)  // CALL bar<>(SB)
    	B	foo(SB)    // JMP foo(SB)
    	BEQ	1(PC)
    	BEQ	2(PC)
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 08 03:28:17 GMT 2023
    - 94.9K bytes
    - Viewed (0)
  10. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_AUDITON = 446
    pkg syscall (freebsd-arm64), const SYS_AUDITON ideal-int
    pkg syscall (freebsd-arm64), const SYS_BIND = 104
    pkg syscall (freebsd-arm64), const SYS_BIND ideal-int
    pkg syscall (freebsd-arm64), const SYS_BINDAT = 538
    pkg syscall (freebsd-arm64), const SYS_BINDAT ideal-int
    pkg syscall (freebsd-arm64), const SYS_CAP_ENTER = 516
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top