Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for simpleString (0.22 sec)

  1. src/cmd/compile/internal/ssa/lower.go

    					// has hardware g register, regalloc takes care of it
    					continue // ok not to lower
    				}
    			}
    			s := "not lowered: " + v.String() + ", " + v.Op.String() + " " + v.Type.SimpleString()
    
    			for _, a := range v.Args {
    				s += " " + a.Type.SimpleString()
    			}
    			f.Fatalf("%s", s)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 16 00:16:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

            propertyName(name)
            value()
        }
    
        private
        fun propertyName(name: String) {
            simpleString(name)
            write(':')
        }
    
        private
        fun simpleString(name: String) {
            write('"')
            write(name)
            write('"')
        }
    
        private
        val buffer = CharBuf.create(255)
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/type.go

    			return 16
    		}
    		return 0
    	}
    	CalcSize(t)
    	return t.width
    }
    
    func (t *Type) Alignment() int64 {
    	CalcSize(t)
    	return int64(t.align)
    }
    
    func (t *Type) SimpleString() string {
    	return t.kind.String()
    }
    
    // Cmp is a comparison between values a and b.
    //
    //	-1 if a < b
    //	 0 if a == b
    //	 1 if a > b
    type Cmp int8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
Back to top