Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for haveTags (0.09 sec)

  1. src/cmd/vendor/golang.org/x/text/language/match.go

    	for i, v := range h.haveTags {
    		if v.maxScript == n.maxScript &&
    			v.maxRegion == n.maxRegion &&
    			v.tag.VariantOrPrivateUseTags() == n.tag.VariantOrPrivateUseTags() {
    			for h.haveTags[i].nextMax != 0 {
    				i = int(h.haveTags[i].nextMax)
    			}
    			h.haveTags[i].nextMax = uint16(len(h.haveTags))
    			break
    		}
    	}
    	h.haveTags = append(h.haveTags, &n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			}
    			return fmt.Sprintf("%s%s", s, suffix)
    		}
    		seg := ""
    		var haveCS, haveDS, haveES, haveFS, haveGS, haveSS bool
    		switch x.Segment {
    		case CS:
    			haveCS = true
    		case DS:
    			haveDS = true
    		case ES:
    			haveES = true
    		case FS:
    			haveFS = true
    		case GS:
    			haveGS = true
    		case SS:
    			haveSS = true
    		}
    		switch inst.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top