Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Index (0.25 sec)

  1. src/cmd/internal/obj/arm64/asm7.go

    	case 73: /* vmov V.<T>[index], R */
    		rf := int(p.From.Reg)
    		rt := int(p.To.Reg)
    		imm5 := 0
    		o1 = 7<<25 | 0xf<<10
    		index := int(p.From.Index)
    		switch (p.From.Reg >> 5) & 15 {
    		case ARNG_B:
    			c.checkindex(p, index, 15)
    			imm5 |= 1
    			imm5 |= index << 1
    		case ARNG_H:
    			c.checkindex(p, index, 7)
    			imm5 |= 2
    			imm5 |= index << 2
    		case ARNG_S:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

            preWriteCleanup(now);
    
            int newCount = this.count - 1;
            AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
            int index = hash & (table.length() - 1);
            ReferenceEntry<K, V> first = table.get(index);
    
            for (e = first; e != null; e = e.getNext()) {
              K entryKey = e.getKey();
              if (e.getHash() == hash
                  && entryKey != null
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/LocalCache.java

            preWriteCleanup(now);
    
            int newCount = this.count - 1;
            AtomicReferenceArray<ReferenceEntry<K, V>> table = this.table;
            int index = hash & (table.length() - 1);
            ReferenceEntry<K, V> first = table.get(index);
    
            for (e = first; e != null; e = e.getNext()) {
              K entryKey = e.getKey();
              if (e.getHash() == hash
                  && entryKey != null
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    func avx2gatherValid(ctxt *obj.Link, p *obj.Prog) bool {
    	// If any pair of the index, mask, or destination registers
    	// are the same, illegal instruction trap (#UD) is triggered.
    	index := regIndex(p.GetFrom3().Index)
    	mask := regIndex(p.From.Reg)
    	dest := regIndex(p.To.Reg)
    	if dest == mask || dest == index || mask == index {
    		ctxt.Diag("mask, index, and destination registers should be distinct: %v", p)
    		return false
    	}
    
    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/vendor/github.com/ianlancetaylor/demangle/ast.go

    type FunctionParam struct {
    	Index int
    }
    
    func (fp *FunctionParam) print(ps *printState) {
    	if fp.Index == 0 {
    		ps.writeString("this")
    	} else if ps.llvmStyle {
    		if fp.Index == 1 {
    			ps.writeString("fp")
    		} else {
    			fmt.Fprintf(&ps.buf, "fp%d", fp.Index-2)
    		}
    	} else {
    		fmt.Fprintf(&ps.buf, "{parm#%d}", fp.Index)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	case obj.TYPE_NONE:
    		return C_NONE
    
    	case obj.TYPE_REG:
    		return c.aclassreg(a.Reg)
    
    	case obj.TYPE_MEM:
    		if a.Index != 0 {
    			if a.Name != obj.NAME_NONE || a.Offset != 0 {
    				c.ctxt.Logf("Unexpected Instruction operand index %d offset %d class %d \n", a.Index, a.Offset, a.Class)
    
    			}
    			return C_XOREG
    		}
    		switch a.Name {
    		case obj.NAME_GOTREF, obj.NAME_TOCREF:
    			return C_ADDR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

       *     uniqueIndex(allColors, c -> c.toString());
       * assertThat(colorForName).containsEntry("red", red);
       * }</pre>
       *
       * <p>If your index may associate multiple values with each key, use {@link
       * Multimaps#index(Iterable, Function) Multimaps.index}.
       *
       * <p><b>Note:</b> on Java 8+, it is usually better to use streams. For example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    // If there isn't one, findInternal returns ok=false.
    // Otherwise, findInternal returns ok=true and the index of the "internal".
    func findInternal(path string) (index int, ok bool) {
    	// Three cases, depending on internal at start/end of string or not.
    	// The order matters: we must return the index of the final element,
    	// because the final one produces the most restrictive requirement
    	// on the importer.
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    			}
    
    			const cgoLdflag = "//go:cgo_ldflag"
    			idx := bytes.Index(src, []byte(cgoLdflag))
    			for idx >= 0 {
    				// We are looking at //go:cgo_ldflag.
    				// Find start of line.
    				start := bytes.LastIndex(src[:idx], []byte("\n"))
    				if start == -1 {
    					start = 0
    				}
    
    				// Find end of line.
    				end := bytes.Index(src[idx:], []byte("\n"))
    				if end == -1 {
    					end = len(src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	authority = (*SidIdentifierAuthority)(unsafe.Pointer(r0))
    	return
    }
    
    func getSidSubAuthority(sid *SID, index uint32) (subAuthority *uint32) {
    	r0, _, _ := syscall.Syscall(procGetSidSubAuthority.Addr(), 2, uintptr(unsafe.Pointer(sid)), uintptr(index), 0)
    	subAuthority = (*uint32)(unsafe.Pointer(r0))
    	return
    }
    
    func getSidSubAuthorityCount(sid *SID) (count *uint8) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top