Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Prog32 (0.2 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Prog", Type, 0},
    		{"Prog.ProgHeader", Field, 0},
    		{"Prog.ReaderAt", Field, 0},
    		{"Prog32", Type, 0},
    		{"Prog32.Align", Field, 0},
    		{"Prog32.Filesz", Field, 0},
    		{"Prog32.Flags", Field, 0},
    		{"Prog32.Memsz", Field, 0},
    		{"Prog32.Off", Field, 0},
    		{"Prog32.Paddr", Field, 0},
    		{"Prog32.Type", Field, 0},
    		{"Prog32.Vaddr", Field, 0},
    		{"Prog64", Type, 0},
    		{"Prog64.Align", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  2. src/debug/elf/file.go

    	if err != nil {
    		return nil, err
    	}
    	for i := 0; i < phnum; i++ {
    		off := uintptr(i) * uintptr(phentsize)
    		p := new(Prog)
    		switch f.Class {
    		case ELFCLASS32:
    			var ph Prog32
    			p.ProgHeader = ProgHeader{
    				Type:   ProgType(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Type):])),
    				Flags:  ProgFlag(bo.Uint32(phdata[off+unsafe.Offsetof(ph.Flags):])),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    	Info      uint32 /* Depends on section type. */
    	Addralign uint32 /* Alignment in bytes. */
    	Entsize   uint32 /* Size of each entry in section. */
    }
    
    // ELF32 Program header.
    type Prog32 struct {
    	Type   uint32 /* Entry type. */
    	Off    uint32 /* File offset of contents. */
    	Vaddr  uint32 /* Virtual address in memory image. */
    	Paddr  uint32 /* Physical address (not used). */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. src/cmd/covdata/testdata/prog2.go

    Than McIntosh <******@****.***> 1634828243 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 396 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (MUL x (MOVWconst [1])) => x
    (MUL x (MOVWconst [c])) && isPowerOfTwo32(c) => (SLLconst [int32(log32(c))] x)
    (MUL x (MOVWconst [c])) && isPowerOfTwo32(c-1) && c >= 3 => (ADDshiftLL x x [int32(log32(c-1))])
    (MUL x (MOVWconst [c])) && isPowerOfTwo32(c+1) && c >= 7 => (RSBshiftLL x x [int32(log32(c+1))])
    (MUL x (MOVWconst [c])) && c%3 == 0 && isPowerOfTwo32(c/3) => (SLLconst [int32(log32(c/3))] (ADDshiftLL <x.Type> x x [1]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback.mlir

            %arg30: !tfrt_fallback.tf_tensor, %arg31: !tfrt_fallback.tf_tensor, %arg32: !tfrt_fallback.tf_tensor, %arg33: !tfrt_fallback.tf_tensor, %arg34: !tfrt_fallback.tf_tensor,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg debug/elf, type Prog32 struct
    pkg debug/elf, type Prog32 struct, Align uint32
    pkg debug/elf, type Prog32 struct, Filesz uint32
    pkg debug/elf, type Prog32 struct, Flags uint32
    pkg debug/elf, type Prog32 struct, Memsz uint32
    pkg debug/elf, type Prog32 struct, Off uint32
    pkg debug/elf, type Prog32 struct, Paddr uint32
    pkg debug/elf, type Prog32 struct, Type uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu-variable-runtime-reformatting.mlir

                                           [%newvar, %arg4] as %arg32 : !tf_res_f32)
                      {_mirrored_variable_indices = [0, 1, 2], devices = {TPU_REPLICATED_CORE_0 = ["/device:TPU:0", "/device:TPU:1"]}, n = 2 : i32} {
                // %arg30 is used in the cond function, %arg31 has other uses (%id0), and
                // %arg32 is not a pass-through.
                "tf_device.launch"() ({
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 25.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewriteARM.go

    	// cond: isPowerOfTwo32(c)
    	// result: (SLLconst [int32(log32(c))] x)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    			if v_1.Op != OpARMMOVWconst {
    				continue
    			}
    			c := auxIntToInt32(v_1.AuxInt)
    			if !(isPowerOfTwo32(c)) {
    				continue
    			}
    			v.reset(OpARMSLLconst)
    			v.AuxInt = int32ToAuxInt(int32(log32(c)))
    			v.AddArg(x)
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  10. test/codegen/rotate.go

    	// ppc64x:"ROTL\t[$]10"
    	// arm64:"ROR\t[$]54"
    	// s390x:"RISBGZ\t[$]0, [$]63, [$]10, "
    	// loong64: "ROTRV\t[$]54"
    	// riscv64: "RORI\t[$]54"
    	a += bits.RotateLeft64(x, 10)
    
    	return a
    }
    
    func rot32(x uint32) uint32 {
    	var a uint32
    
    	// amd64:"ROLL\t[$]7"
    	// arm:"MOVW\tR\\d+@>25"
    	// ppc64x:"ROTLW\t[$]7"
    	// loong64: "ROTR\t[$]25"
    	// riscv64: "RORIW\t[$]25"
    	a += x<<7 | x>>25
    
    	// amd64:`ROLL\t[$]8`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top