Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 599 for Instruction (0.19 sec)

  1. src/crypto/ecdsa/ecdsa_s390x.go

    	"errors"
    	"internal/cpu"
    	"io"
    	"math/big"
    )
    
    // kdsa invokes the "compute digital signature authentication"
    // instruction with the given function code and 4096 byte
    // parameter block.
    //
    // The return value corresponds to the condition code set by the
    // instruction. Interrupted invocations are handled by the
    // function.
    //
    //go:noescape
    func kdsa(fc uint64, params *[4096]byte) (errn uint64)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    // instructionInfo holds collected information for an instruction.
    type instructionInfo struct {
    	objAddr   uint64 // Address in object file (with base subtracted out)
    	length    int    // Instruction length in bytes
    	disasm    string // Disassembly of instruction
    	file      string // For top-level function in which instruction occurs
    	line      int    // For top-level function in which instruction occurs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  3. src/runtime/stkframe.go

    	//   execution will continue, but it may not be the
    	//   instruction following a CALL. This may be from
    	//   cooperative preemption, in which case this is the
    	//   instruction after the call to morestack. Or this may be
    	//   from a signal or an un-started goroutine, in which case
    	//   PC could be any instruction, including the first
    	//   instruction in a function. Conventionally, we use pc-1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_arm64.s

    //go:build gc
    
    #include "textflag.h"
    
    // func getisar0() uint64
    TEXT ·getisar0(SB),NOSPLIT,$0-8
    	// get Instruction Set Attributes 0 into x0
    	// mrs x0, ID_AA64ISAR0_EL1 = d5380600
    	WORD	$0xd5380600
    	MOVD	R0, ret+0(FP)
    	RET
    
    // func getisar1() uint64
    TEXT ·getisar1(SB),NOSPLIT,$0-8
    	// get Instruction Set Attributes 1 into x0
    	// mrs x0, ID_AA64ISAR1_EL1 = d5380620
    	WORD	$0xd5380620
    	MOVD	R0, ret+0(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 937 bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompilerTest.kt

    import org.gradle.kotlin.dsl.execution.ResidualProgram.Instruction.ApplyBasePlugins
    import org.gradle.kotlin.dsl.execution.ResidualProgram.Instruction.ApplyDefaultPluginRequests
    import org.gradle.kotlin.dsl.execution.ResidualProgram.Instruction.ApplyPluginRequests
    import org.gradle.kotlin.dsl.execution.ResidualProgram.Instruction.ApplyPluginRequestsOf
    import org.gradle.kotlin.dsl.execution.ResidualProgram.Instruction.CloseTargetScope
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/riscv64/asm.go

    	}
    
    	off := ldr.SymValue(rs) + r.Add() - pc
    
    	switch r.Type() {
    	case objabi.R_RISCV_JAL, objabi.R_RISCV_JAL_TRAMP:
    		// Generate instruction immediates.
    		imm, err := riscv.EncodeJImmediate(off)
    		if err != nil {
    			ldr.Errorf(s, "cannot encode J-type instruction relocation offset for %s: %v", ldr.SymName(rs), err)
    		}
    		immMask := int64(riscv.JTypeImmMask)
    
    		val = (val &^ immMask) | int64(imm)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	Args Args   // Instruction arguments, in ARM manual order.
    }
    
    func (i Inst) String() string {
    	var args []string
    	for _, arg := range i.Args {
    		if arg == nil {
    			break
    		}
    		args = append(args, arg.String())
    	}
    	return i.Op.String() + " " + strings.Join(args, ", ")
    }
    
    // An Args holds the instruction arguments.
    // If an instruction has fewer than 5 arguments,
    // the final elements in the array are nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/asm.go

    		}
    		p.errorf("wrong number of arguments to %s instruction", op)
    		return
    	case 4:
    		if p.arch.Family == sys.S390X || p.arch.Family == sys.PPC64 {
    			// 4-operand compare-and-branch.
    			prog.From = a[0]
    			prog.Reg = p.getRegister(prog, op, &a[1])
    			prog.AddRestSource(a[2])
    			target = &a[3]
    			break
    		}
    		p.errorf("wrong number of arguments to %s instruction", op)
    		return
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. src/crypto/aes/cipher_s390x.go

    // Function codes for the cipher message family of instructions.
    const (
    	aes128 code = 18
    	aes192      = 19
    	aes256      = 20
    )
    
    type aesCipherAsm struct {
    	function code     // code for cipher message instruction
    	key      []byte   // key (128, 192 or 256 bits)
    	storage  [32]byte // array backing key slice
    }
    
    // cryptBlocks invokes the cipher message (KM) instruction with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/link.go

    	WasmF64
    	WasmPtr
    )
    
    type InlMark struct {
    	// When unwinding from an instruction in an inlined body, mark
    	// where we should unwind to.
    	// id records the global inlining id of the inlined body.
    	// p records the location of an instruction in the parent (inliner) frame.
    	p  *Prog
    	id int32
    }
    
    // Mark p as the instruction to set as the pc when
    // "unwinding" the inlining global frame id. Usually it should be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top