Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for andc (0.04 sec)

  1. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		// Bitwise ops
    		{name: "AND", argLength: 2, reg: gp21, asm: "AND", commutative: true}, // arg0 & arg1
    		{name: "ANDI", argLength: 1, reg: gp11, asm: "ANDI", aux: "Int64"},    // arg0 & auxint
    		{name: "NOT", argLength: 1, reg: gp11, asm: "NOT"},                    // ^arg0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. test/codegen/shift.go

    func lshMask64x64(v int64, s uint64) int64 {
    	// arm64:"LSL",-"AND"
    	// ppc64x:"RLDICL",-"ORN",-"ISEL"
    	// riscv64:"SLL",-"AND\t",-"SLTIU"
    	// s390x:-"RISBGZ",-"AND",-"LOCGR"
    	return v << (s & 63)
    }
    
    func rshMask64Ux64(v uint64, s uint64) uint64 {
    	// arm64:"LSR",-"AND",-"CSEL"
    	// ppc64x:"RLDICL",-"ORN",-"ISEL"
    	// riscv64:"SRL\t",-"AND\t",-"SLTIU"
    	// s390x:-"RISBGZ",-"AND",-"LOCGR"
    	return v >> (s & 63)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/runtime/runtime1.go

    // If seen == nil, this is startup time and we process the string left to right
    // overwriting older settings with newer ones.
    // If seen != nil, $GODEBUG has changed and we are doing an
    // incremental update. To avoid flapping in the case where a value is
    // set multiple times (perhaps in the default and the environment,
    // or perhaps twice in the environment), we process the string right-to-left
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/doc.go

    vector instructions.
    
    Example:
    
    	ANDCC R3, R4, R5		<=>	and. r5, r3, r4 (set CR0)
    
    4. Loads and stores from memory
    
    In Go asm, opcodes starting with 'MOV' indicate a load or store. When the target
    is a memory reference, then it is a store; when the target is a register and the
    source is a memory reference, then it is a load.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Const64", aux: "Int64"}, // value is auxint
    	// Note: for both Const32F and Const64F, we disallow encoding NaNs.
    	// Signaling NaNs are tricky because if you do anything with them, they become quiet.
    	// Particularly, converting a 32 bit sNaN to 64 bit and back converts it to a qNaN.
    	// See issue 36399 and 36400.
    	// Encodings of +inf, -inf, and -0 are fine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/internal/runtime/atomic/types.go

    	noCopy noCopy
    	value  uint8
    }
    
    // Load accesses and returns the value atomically.
    //
    //go:nosplit
    func (u *Uint8) Load() uint8 {
    	return Load8(&u.value)
    }
    
    // Store updates the value atomically.
    //
    //go:nosplit
    func (u *Uint8) Store(value uint8) {
    	Store8(&u.value, value)
    }
    
    // And takes value and performs a bit-wise
    // "and" operation with the value of u, storing
    // the result into u.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/a.out.go

    	C_MOVCON   // generated by a 16-bit constant, optionally inverted and/or shifted by multiple of 16
    	C_BITCON   // bitfield and logical immediate masks
    	C_ADDCON2  // 24-bit constant
    	C_LCON     // 32-bit constant
    	C_MOVCON2  // a constant that can be loaded with one MOVZ/MOVN and one MOVK
    	C_MOVCON3  // a constant that can be loaded with one MOVZ/MOVN and two MOVKs
    	C_VCON     // 64-bit constant
    	C_FCON     // floating-point constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  8. src/go/build/build_test.go

    			"package main\n",
    		tags:        map[string]bool{"yes": true, "no": true},
    		shouldBuild: true,
    	},
    	{
    		name: "And",
    		content: "// +build no,yes\n\n" +
    			"package main\n",
    		tags:        map[string]bool{"yes": true, "no": true},
    		shouldBuild: false,
    	},
    	{
    		name: "And2",
    		content: "//go:build no && yes\n" +
    			"package main\n",
    		tags:        map[string]bool{"yes": true, "no": true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  9. src/runtime/sys_openbsd_386.s

    	MOVL	$0, AX
    	RET
    
    TEXT runtime·sigfwd(SB),NOSPLIT,$0-16
    	MOVL	fn+0(FP), AX
    	MOVL	sig+4(FP), BX
    	MOVL	info+8(FP), CX
    	MOVL	ctx+12(FP), DX
    	MOVL	SP, SI
    	SUBL	$32, SP
    	ANDL	$~15, SP	// align stack: handler might be a C function
    	MOVL	BX, 0(SP)
    	MOVL	CX, 4(SP)
    	MOVL	DX, 8(SP)
    	MOVL	SI, 12(SP)	// save SI: handler might be a Go function
    	CALL	AX
    	MOVL	12(SP), AX
    	MOVL	AX, SP
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/obj7.go

    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
Back to top