Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for stringName (0.1 sec)

  1. src/debug/macho/macho.go

    	{uint32(TypeObj), "Obj"},
    	{uint32(TypeExec), "Exec"},
    	{uint32(TypeDylib), "Dylib"},
    	{uint32(TypeBundle), "Bundle"},
    }
    
    func (t Type) String() string   { return stringName(uint32(t), typeStrings, false) }
    func (t Type) GoString() string { return stringName(uint32(t), typeStrings, true) }
    
    // A Cpu is a Mach-O cpu type.
    type Cpu uint32
    
    const cpuArch64 = 0x01000000
    
    const (
    	Cpu386   Cpu = 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/dec.rules

        imag
        (Store {typ.Float64} dst real mem))
    
    // string ops
    (StringPtr (StringMake ptr _)) => ptr
    (StringLen (StringMake _ len)) => len
    
    (Load <t> ptr mem) && t.IsString() =>
      (StringMake
        (Load <typ.BytePtr> ptr mem)
        (Load <typ.Int>
          (OffPtr <typ.IntPtr> [config.PtrSize] ptr)
          mem))
    (Store dst (StringMake ptr len) mem) =>
      (Store {typ.Int}
        (OffPtr <typ.IntPtr> [config.PtrSize] dst)
        len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:48:31 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top