HomeSort by relevance Sort by last modified time
    Searched refs:Glb (Results 1 - 10 of 10) sorted by null

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
redblack32_test.go 153 x[i] = d + d // Double everything for glb/lub testing
200 kg, g := t.Glb(d + 1)
251 kg, g := t.Glb(min)
redblack32.go 20 // Extra operations glb, lub, glbEq, lubEq are provided for
149 // Glb returns the greatest-lower-bound-exclusive of x and its associated
150 // data. If x has no glb in the tree, then (0, nil) is returned.
151 func (t *RBTint32) Glb(x int32) (k int32, d interface{}) {
152 return t.root.glb(x, false).keyAndData()
158 return t.root.glb(x, true).keyAndData()
246 func (t *node32) glb(key int32, allow_eq bool) *node32 { func
253 // t is too big, glb is to left.
sparsetreemap.go 156 // The Glb (not EQ) of this probe is either the entry-indexed end of a sparse parent
158 _, v := rbtree.Glb(blockIndex.entry + adjust)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
redblack32_test.go 153 x[i] = d + d // Double everything for glb/lub testing
200 kg, g := t.Glb(d + 1)
251 kg, g := t.Glb(min)
redblack32.go 20 // Extra operations glb, lub, glbEq, lubEq are provided for
149 // Glb returns the greatest-lower-bound-exclusive of x and its associated
150 // data. If x has no glb in the tree, then (0, nil) is returned.
151 func (t *RBTint32) Glb(x int32) (k int32, d interface{}) {
152 return t.root.glb(x, false).keyAndData()
158 return t.root.glb(x, true).keyAndData()
246 func (t *node32) glb(key int32, allow_eq bool) *node32 { func
253 // t is too big, glb is to left.
sparsetreemap.go 156 // The Glb (not EQ) of this probe is either the entry-indexed end of a sparse parent
158 _, v := rbtree.Glb(blockIndex.entry + adjust)
  /external/v8/src/compiler/
types.h 243 static bitset Glb(Type* type); // greatest lower bound that's a bitset
244 static bitset Glb(double min, double max);
643 bitset BitsetGlb() { return BitsetType::Glb(this); }
types.cc 104 // Glb and lub computation.
107 Type::bitset BitsetType::Glb(Type* type) {
117 bitset glb = local
118 BitsetType::Glb(type->AsRange()->Min(), type->AsRange()->Max());
119 return glb;
398 Type::bitset BitsetType::Glb(double min, double max) {
400 int glb = kNone; local
404 if (max < -1 || min > 0) return glb;
409 glb |= mins[i].external;
414 return glb & ~(kOtherNumber)
    [all...]
  /external/v8/src/ast/
ast-types.h 315 static bitset Glb(AstType* type); // greatest lower bound that's a bitset
316 static bitset Glb(double min, double max);
928 bitset BitsetGlb() { return AstBitsetType::Glb(this); }
    [all...]
ast-types.cc 107 // Glb and lub computation.
110 AstType::bitset AstBitsetType::Glb(AstType* type) {
120 bitset glb = AST_SEMANTIC( local
121 AstBitsetType::Glb(type->AsRange()->Min(), type->AsRange()->Max()));
122 return glb | AST_REPRESENTATION(type->BitsetLub());
395 AstType::bitset AstBitsetType::Glb(double min, double max) {
397 int glb = kNone; local
401 if (max < -1 || min > 0) return glb;
406 glb |= mins[i].external;
411 return glb & ~(AST_SEMANTIC(kOtherNumber))
    [all...]

Completed in 312 milliseconds