Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for LAY (0.04 sec)

  1. src/cmd/link/internal/ld/data.go

    // 'archrelocvariant' functions for the architecture. When external
    // linking is in effect, it may not be  possible to completely resolve
    // the address/offset for a symbol, in which case the goal is to lay
    // the groundwork for turning a given relocation into an external reloc
    // (to be applied by the external linker). For more on how relocations
    // work in general, see
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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