Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for LAY (0.03 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    	a4    uint8  // p.RestArgs[1]
    	a5    uint8  // p.RestARgs[2]
    	a6    uint8  // p.To (obj.Addr)
    	type_ int8   // cases in asmout below. E.g., 44 = st r,(ra+rb); 45 = ld (ra+rb), r
    	size  int8   // Text space in bytes to lay operation
    
    	// A prefixed instruction is generated by this opcode. This cannot be placed
    	// across a 64B PC address. Opcodes should not translate to more than one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	row.Cells = append(row.Cells, obj.Status, string(obj.Reason), obj.Message)
    
    	return []metav1.TableRow{row}, nil
    }
    
    // Lay out all the containers on one line if use wide output.
    func layoutContainerCells(containers []api.Container) (names string, images string) {
    	var namesBuffer bytes.Buffer
    	var imagesBuffer bytes.Buffer
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	} else if target.IsDarwin() {
    		leg := ldr.MakeSymbolUpdater(syms.LinkEditGOT)
    		leg.AddUint32(target.Arch, uint32(ldr.SymDynid(s)))
    		if target.IsPIE() && target.IsInternal() {
    			// Mach-O relocations are a royal pain to lay out.
    			// They use a compact stateful bytecode representation.
    			// Here we record what are needed and encode them later.
    			MachoAddBind(int64(ldr.SymGot(s)), s)
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    //	        {Yrl, Ynone, Yml, Zr_m, 1},
    //	        {Yml, Ynone, Yrl, Zm_r, 1},
    //	}
    //
    // so there are 5 possible types of ADDL instruction that can be laid down, and
    // possible states used to lay them down (Ztype and z pointer, assuming z
    // points at opBytes{0x83, 00, 0x05,0x81, 00, 0x01, 0x03}) are:
    //
    //	Yi8, Yml -> Zibo_m, z (0x83, 00)
    //	Yi32, Yax -> Zil_, z+2 (0x05)
    //	Yi32, Yml -> Zilo_m, z+2+1 (0x81, 0x00)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    				default:
    					c.ctxt.Diag("zero-width instruction\n%v", p)
    				}
    			}
    
    			pc += int64(m)
    		}
    	}
    
    	pc += -pc & (funcAlign - 1)
    	c.cursym.Size = pc
    
    	/*
    	 * lay out the code, emitting code and data relocations.
    	 */
    	c.cursym.Grow(c.cursym.Size)
    	bp := c.cursym.P
    	psz := int32(0)
    	var i int
    	var out [6]uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top