HomeSort by relevance Sort by last modified time
    Searched refs:invariants (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /external/mesa3d/src/compiler/nir/
nir_propagate_invariant.c 27 add_src(nir_src *src, struct set *invariants)
30 _mesa_set_add(invariants, src->ssa);
32 _mesa_set_add(invariants, src->reg.reg);
44 dest_is_invariant(nir_dest *dest, struct set *invariants)
47 return _mesa_set_search(invariants, &dest->ssa);
49 return _mesa_set_search(invariants, dest->reg.reg);
54 add_cf_node(nir_cf_node *cf, struct set *invariants)
58 add_src(&if_stmt->condition, invariants);
62 add_cf_node(cf->parent, invariants);
66 add_var(nir_variable *var, struct set *invariants)
184 struct set *invariants = _mesa_set_create(NULL, _mesa_hash_pointer, local
    [all...]
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
ZipField.java 80 * All invariants that this field must verify.
83 private Set<ZipFieldInvariant> invariants; field in class:ZipField
91 * @param invariants the invariants that must be verified by the field
93 ZipField(int offset, int size, @Nonnull String name, ZipFieldInvariant... invariants) {
101 this.invariants = Sets.newHashSet(invariants);
120 invariants = Sets.newHashSet();
124 * Checks whether a value verifies the field's invariants. Nothing happens if the value verifies
125 * the invariants
    [all...]
  /prebuilts/go/darwin-x86/src/container/heap/
heap.go 22 // min-heap with the following invariants (established after
37 // can be used. Init is idempotent with respect to the heap invariants
38 // and may be called whenever the heap invariants may have been invalidated.
example_pq_test.go 69 // establish the priority queue (heap) invariants.
  /prebuilts/go/linux-x86/src/container/heap/
heap.go 22 // min-heap with the following invariants (established after
37 // can be used. Init is idempotent with respect to the heap invariants
38 // and may be called whenever the heap invariants may have been invalidated.
example_pq_test.go 69 // establish the priority queue (heap) invariants.
  /prebuilts/go/darwin-x86/src/go/types/
token_test.go 5 // This file checks invariants of token.Token ordering that we rely on
stdlib_test.go 230 // Perform checks of API invariants.
  /prebuilts/go/linux-x86/src/go/types/
token_test.go 5 // This file checks invariants of token.Token ordering that we rely on
stdlib_test.go 230 // Perform checks of API invariants.
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
redblack32_test.go 19 // all of its invariants and returns a string identifying
34 // all of its invariants and returns a string identifying
check.go 11 // checkFunc checks invariants of f.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
redblack32_test.go 19 // all of its invariants and returns a string identifying
34 // all of its invariants and returns a string identifying
check.go 11 // checkFunc checks invariants of f.
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/http2/hpack/
hpack.go 329 // (same invariants and behavior as parseHeaderFieldRepr)
344 // (same invariants and behavior as parseHeaderFieldRepr)
390 // (same invariants and behavior as parseHeaderFieldRepr)
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/net/http2/hpack/
hpack.go 329 // (same invariants and behavior as parseHeaderFieldRepr)
344 // (same invariants and behavior as parseHeaderFieldRepr)
390 // (same invariants and behavior as parseHeaderFieldRepr)
  /build/soong/cc/config/
clang.go 65 "-fno-move-loop-invariants",
  /prebuilts/gradle-plugin/com/android/tools/build/apkzlib/3.2.0-alpha16/
apkzlib-3.2.0-alpha16.jar 
  /prebuilts/go/darwin-x86/src/compress/flate/
dict_decoder.go 25 // checks about the arguments. As such, the invariants documented for each
  /prebuilts/go/linux-x86/src/compress/flate/
dict_decoder.go 25 // checks about the arguments. As such, the invariants documented for each
  /prebuilts/go/darwin-x86/src/runtime/
mgcmark.go 90 // above invariants for objects that get finalizers
331 // Objects with finalizers have two GC-related invariants:
355 // the above invariants for them.
371 // the above invariants. We may also ensure the
372 // invariants, but it's okay to scan an object twice.
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mgcmark.go 90 // above invariants for objects that get finalizers
331 // Objects with finalizers have two GC-related invariants:
355 // the above invariants for them.
371 // the above invariants. We may also ensure the
372 // invariants, but it's okay to scan an object twice.
    [all...]
  /prebuilts/go/darwin-x86/src/sync/
map.go 18 // easier to maintain other invariants along with the map content.
  /prebuilts/go/linux-x86/src/sync/
map.go 18 // easier to maintain other invariants along with the map content.
  /external/tensorflow/tensorflow/python/ops/
control_flow_ops.py 567 # Check that the shapes of the inputs are less than the shape invariants,
568 # and set the shapes of `enter_vars` to the shape invariants.
607 """Check if the shapes of the loops variables are invariants.
628 "Provide shape invariants using either the `shape_invariants` "
651 "after one iteration. Provide shape invariants using either the "
669 "after one iteration. Provide shape invariants using either "
    [all...]

Completed in 473 milliseconds

1 2 3 4 5