Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for Ord (0.02 sec)

  1. src/runtime/map_test.go

    			}
    			// Check that iterating over the map produces at least two different orderings.
    			ord := func() []int {
    				var s []int
    				for key := range m {
    					s = append(s, key)
    				}
    				return s
    			}
    			first := ord()
    			ok := false
    			for try := 0; try < 100; try++ {
    				if !reflect.DeepEqual(first, ord()) {
    					ok = true
    					break
    				}
    			}
    			if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. src/math/big/float.go

    		y.validate()
    	}
    
    	mx := x.ord()
    	my := y.ord()
    	switch {
    	case mx < my:
    		return -1
    	case mx > my:
    		return +1
    	}
    	// mx == my
    
    	// only if |mx| == 1 we have to compare the mantissae
    	switch mx {
    	case -1:
    		return y.ucmp(x)
    	case +1:
    		return x.ucmp(y)
    	}
    
    	return 0
    }
    
    // ord classifies x and returns:
    //
    //	-2 if -Inf == x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  3. src/debug/pe/file.go

    			} else { // 32bit
    				va := binary.LittleEndian.Uint32(d[0:4])
    				d = d[4:]
    				if va == 0 {
    					break
    				}
    				if va&0x80000000 > 0 { // is Ordinal
    					// TODO add dynimport ordinal support.
    					//ord := va&0x0000FFFF
    				} else {
    					fn, _ := getString(names, int(va-ds.VirtualAddress+2))
    					all = append(all, fn+":"+dt.dll)
    				}
    			}
    		}
    	}
    
    	return all, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    ompile|complex|delattr|dict|dir|divmod|enumerate|eval|execfile|file|filter|float|format|frozenset|getattr|globals|hasattr|hash|help|hex|id|input|int|intern|isinstance|issubclass|iter|len|list|locals|long|map|max|memoryview|min|next|object|oct|open|ord|pow|property|range|raw_input|reduce|reload|repr|reversed|round|set|setattr|slice|sorted|staticmethod|str|sum|super|tuple|type|unichr|unicode|vars|xrange|zip)\b/,boolean:/\b(?:True|False|None)\b/,number:/(?:\b(?=\d)|\B(?=\.))(?:0[bo])?(?:(?:\d|0x[\d...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "ULT", controls: 1},
    		{name: "ULE", controls: 1},
    		{name: "UGT", controls: 1},
    		{name: "UGE", controls: 1},
    		{name: "EQF", controls: 1},
    		{name: "NEF", controls: 1},
    		{name: "ORD", controls: 1}, // FP, ordered comparison (parity zero)
    		{name: "NAN", controls: 1}, // FP, unordered comparison (parity one)
    	}
    
    	archs = append(archs, arch{
    		name:            "386",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
Back to top