Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for asmidx (0.17 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    			ab.Put1(byte(0<<6 | reg[base]<<0 | r<<3))
    			ab.asmidx(ctxt, int(a.Scale), REG_NONE, base)
    			return
    		}
    
    		if disp8, ok := toDisp8(v, p, ab); ok {
    			ab.Put1(byte(1<<6 | reg[base]<<0 | r<<3))
    			ab.asmidx(ctxt, int(a.Scale), REG_NONE, base)
    			ab.Put1(disp8)
    			return
    		}
    
    		ab.Put1(byte(2<<6 | reg[base]<<0 | r<<3))
    		ab.asmidx(ctxt, int(a.Scale), REG_NONE, base)
    		goto putrelv
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    			return true
    		}
    		// A case ignorable may also introduce a word break, so we may need
    		// to continue searching even after detecting a break.
    		isMid := c.info.isMid()
    		if (wasMid && isMid) || c.info.isBreak() {
    			c.isMidWord = false
    		}
    		wasMid = isMid
    		c.copy()
    	}
    	return true
    }
    
    // finalSigmaSpan would be the same as isLower.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. src/cmd/internal/goobj/objfile.go

    // index of the package in the PkgIndex array. 0 is an invalid index.
    //
    // SymIdx is the index of the symbol in the given package.
    // - If PkgIdx is PkgIdxSelf, SymIdx is the index of the symbol in the
    //   SymbolDefs array.
    // - If PkgIdx is PkgIdxHashed64, SymIdx is the index of the symbol in the
    //   Hashed64Defs array.
    // - If PkgIdx is PkgIdxHashed, SymIdx is the index of the symbol in the
    //   HashedDefs array.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/decodesym.go

    	relocs := ldr.Relocs(symIdx)
    	return decodetypeName(ldr, symIdx, &relocs, off)
    }
    
    func decodetypeStructFieldType(ldr *loader.Loader, arch *sys.Arch, symIdx loader.Sym, i int) loader.Sym {
    	off := decodetypeStructFieldArrayOff(ldr, arch, symIdx, i)
    	relocs := ldr.Relocs(symIdx)
    	return decodeRelocSym(ldr, symIdx, &relocs, int32(off+arch.PtrSize))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/deadcode.go

    			}
    		}
    	}
    }
    
    func (d *deadcodePass) mark(symIdx, parent loader.Sym) {
    	if symIdx != 0 && !d.ldr.AttrReachable(symIdx) {
    		d.wq.push(symIdx)
    		d.ldr.SetAttrReachable(symIdx, true)
    		if buildcfg.Experiment.FieldTrack && d.ldr.Reachparent[symIdx] == 0 {
    			d.ldr.Reachparent[symIdx] = parent
    		}
    		if *flagDumpDep {
    			to := d.ldr.SymName(symIdx)
    			if to != "" {
    				to = d.dumpDepAddFlags(to, symIdx)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. cmd/tier-last-day-stats.go

    	// within the hour since l.UpdatedAt
    	if since < 1 {
    		return
    	}
    
    	idx, lastIdx := t.Hour(), l.UpdatedAt.Hour()
    
    	l.UpdatedAt = t // update to the latest time index
    
    	if since >= 24 {
    		l.Bins = [24]tierStats{}
    		return
    	}
    
    	for lastIdx != idx {
    		lastIdx = (lastIdx + 1) % 24
    		l.Bins[lastIdx] = tierStats{}
    	}
    }
    
    func (l *lastDayTierStats) clone() lastDayTierStats {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unmarshal/unmarshal.go

    				case "encoding/json", "encoding/xml", "encoding/gob":
    					argidx = 0 // func(interface{})
    				}
    			}
    		}
    		if argidx < 0 {
    			return // not a function we are interested in
    		}
    
    		if len(call.Args) < argidx+1 {
    			return // not enough arguments, e.g. called with return values of another function
    		}
    
    		t := pass.TypesInfo.Types[call.Args[argidx]].Type
    		switch t.Underlying().(type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/objfile.go

    			h.Write([]byte{3})
    			binary.LittleEndian.PutUint32(tmp[:4], uint32(rs.SymIdx))
    			h.Write(tmp[:4])
    		case goobj.PkgIdxSelf:
    			io.WriteString(h, w.pkgpath)
    			binary.LittleEndian.PutUint32(tmp[:4], uint32(rs.SymIdx))
    			h.Write(tmp[:4])
    		default:
    			io.WriteString(h, rs.Pkg)
    			binary.LittleEndian.PutUint32(tmp[:4], uint32(rs.SymIdx))
    			h.Write(tmp[:4])
    		}
    	}
    	var b goobj.HashType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/sym.go

    				// or require special handling (such as type symbols).
    				s.PkgIdx = goobj.PkgIdxHashed64
    				s.SymIdx = hashed64idx
    				if hashed64idx != int32(len(ctxt.hashed64defs)) {
    					panic("bad index")
    				}
    				ctxt.hashed64defs = append(ctxt.hashed64defs, s)
    				hashed64idx++
    			} else {
    				s.PkgIdx = goobj.PkgIdxHashed
    				s.SymIdx = hashedidx
    				if hashedidx != int32(len(ctxt.hasheddefs)) {
    					panic("bad index")
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. cmd/metrics-v3-system-drive.go

    	m.Set(driveWaitingIO, float64(disk.Metrics.TotalWaiting), labels...)
    
    	// Append the api label for the drive API latencies.
    	labels = append(labels, "api", "")
    	lastIdx := len(labels) - 1
    	for apiName, latency := range disk.Metrics.LastMinute {
    		labels[lastIdx] = "storage." + apiName
    		m.Set(driveAPILatencyMicros, float64(latency.Avg().Microseconds()),
    			labels...)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 12 17:23:50 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top