/external/llvm/include/llvm/ADT/ |
SparseSet.h | 15 // a moderately sized universe. The sparse set uses more memory than other 31 /// be uniquely converted to a small integer less than the set's universe. This 82 /// SparseSet allocates memory proportional to the size of the key universe, so 95 /// iteration independent on the size of the universe. 99 /// the sparse array which is the size of the key universe. The SparseT 104 /// array uses 4 x Universe bytes. 130 unsigned Universe; 146 SparseSet() : Sparse(nullptr), Universe(0) {} 149 /// setUniverse - Set the universe size which determines the largest key the 150 /// set can hold. The universe must be sized before any elements can b [all...] |
SparseMultiSet.h | 14 // from a moderately sized universe. The sparse multiset uses more memory than 32 /// universe, so it is not recommended for building composite data structures. 45 /// independent on the size of the universe. 49 /// the sparse array which is the size of the key universe. The SparseT template 53 /// sparse array uses 4 x Universe bytes. 117 unsigned Universe; 128 assert(ValIndexOf(Val) < Universe && 191 : Sparse(nullptr), Universe(0), FreelistIdx(SMSNode::INVALID), NumFree(0) {} 195 /// Set the universe size which determines the largest key the set can hold. 196 /// The universe must be sized before any elements can be added [all...] |
/prebuilts/go/darwin-x86/src/go/types/ |
universe.go | 5 // This file sets up the universe scope and the unsafe package. 16 Universe *Scope 100 // universe scope 171 if Universe.Lookup("assert") != nil { 179 Universe = NewScope(nil, token.NoPos, token.NoPos, "universe") 188 universeIota = Universe.Lookup("iota").(*Const) 189 universeByte = Universe.Lookup("byte").(*TypeName).typ.(*Basic) 190 universeRune = Universe.Lookup("rune").(*TypeName).typ.(*Basic) 195 // scope; other objects are inserted in the universe scope [all...] |
scope.go | 37 // don't add children to Universe scope! 38 if parent != nil && parent != Universe { 116 // for Universe and package scopes. 129 // The result is also nil for the Universe scope. 135 if s.parent == Universe {
|
eval.go | 22 // If pkg == nil, the Universe scope is used and the provided 41 scope = Universe
|
package.go | 29 scope := NewScope(Universe, token.NoPos, token.NoPos, fmt.Sprintf("package %q", path))
|
builtins_test.go | 116 for _, name := range Universe.Names() { 117 if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] {
|
stdlib_test.go | 209 errorError := Universe.Lookup("error").Type().Underlying().(*Interface).ExplicitMethod(0) // (error).Error 211 predeclared := obj == Universe.Lookup(obj.Name()) || obj == errorError
|
object.go | 24 Pkg() *Package // nil for objects in the Universe scope and labels 119 // fields in Universe scope; this can only happen for types
|
/prebuilts/go/linux-x86/src/go/types/ |
universe.go | 5 // This file sets up the universe scope and the unsafe package. 16 Universe *Scope 100 // universe scope 171 if Universe.Lookup("assert") != nil { 179 Universe = NewScope(nil, token.NoPos, token.NoPos, "universe") 188 universeIota = Universe.Lookup("iota").(*Const) 189 universeByte = Universe.Lookup("byte").(*TypeName).typ.(*Basic) 190 universeRune = Universe.Lookup("rune").(*TypeName).typ.(*Basic) 195 // scope; other objects are inserted in the universe scope [all...] |
scope.go | 37 // don't add children to Universe scope! 38 if parent != nil && parent != Universe { 116 // for Universe and package scopes. 129 // The result is also nil for the Universe scope. 135 if s.parent == Universe {
|
eval.go | 22 // If pkg == nil, the Universe scope is used and the provided 41 scope = Universe
|
package.go | 29 scope := NewScope(Universe, token.NoPos, token.NoPos, fmt.Sprintf("package %q", path))
|
builtins_test.go | 116 for _, name := range Universe.Names() { 117 if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] {
|
stdlib_test.go | 209 errorError := Universe.Lookup("error").Type().Underlying().(*Interface).ExplicitMethod(0) // (error).Error 211 predeclared := obj == Universe.Lookup(obj.Name()) || obj == errorError
|
object.go | 24 Pkg() *Package // nil for objects in the Universe scope and labels 119 // fields in Universe scope; this can only happen for types
|
/prebuilts/go/darwin-x86/src/io/ioutil/ |
ioutil_test.go | 45 "build bigger and better idiot-proof programs, and the Universe trying " + 46 "to produce bigger and better idiots. So far, the Universe is winning."
|
/prebuilts/go/linux-x86/src/io/ioutil/ |
ioutil_test.go | 45 "build bigger and better idiot-proof programs, and the Universe trying " + 46 "to produce bigger and better idiots. So far, the Universe is winning."
|
/external/iproute2/doc/ |
ip-tunnels.tex | 392 ip tunnel add Universe local 193.233.7.65 \ 394 ip addr add 10.0.0.1/16 dev Universe 395 ip link set Universe up 406 echo 0 > /proc/sys/net/ipv4/neigh/Universe/mcast_solicit 410 ip neigh add 10.0.0.2 lladdr 128.6.190.2 dev Universe nud permanent
|
/prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/ |
parser.go | 660 gccgoBuiltinERROR: types.Universe.Lookup("error").Type(), 661 gccgoBuiltinBYTE: types.Universe.Lookup("byte").Type(), 662 gccgoBuiltinRUNE: types.Universe.Lookup("rune").Type(),
|
/prebuilts/go/linux-x86/src/go/internal/gccgoimporter/ |
parser.go | 660 gccgoBuiltinERROR: types.Universe.Lookup("error").Type(), 661 gccgoBuiltinBYTE: types.Universe.Lookup("byte").Type(), 662 gccgoBuiltinRUNE: types.Universe.Lookup("rune").Type(),
|
/prebuilts/go/darwin-x86/src/cmd/vet/ |
shadow.go | 219 // Don't complain if it's shadowing a universe-declared identifier; that's fine. 220 if shadowed.Parent() == types.Universe {
|
/prebuilts/go/linux-x86/src/cmd/vet/ |
shadow.go | 219 // Don't complain if it's shadowing a universe-declared identifier; that's fine. 220 if shadowed.Parent() == types.Universe {
|
/prebuilts/go/darwin-x86/src/encoding/xml/ |
marshal_test.go | 79 type Universe struct { 80 XMLName struct{} `xml:"universe"` 477 {Value: &Universe{Visible: 9.3e13}, ExpectXML: `<universe>9.3e+13</universe>`}, [all...] |
/prebuilts/go/linux-x86/src/encoding/xml/ |
marshal_test.go | 79 type Universe struct { 80 XMLName struct{} `xml:"universe"` 477 {Value: &Universe{Visible: 9.3e13}, ExpectXML: `<universe>9.3e+13</universe>`}, [all...] |