HomeSort by relevance Sort by last modified time
    Searched refs:assignment (Results 26 - 50 of 540) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/test/fixedbugs/
bug487.go 17 a, b := G() // ERROR "assignment mismatch"
18 a, b = G() // ERROR "assignment mismatch"
bug184.go 22 // implicit interface conversion in assignment during return
29 // implicit interface conversion in multi-assignment during return
bug331.go 32 bug331.go:12: cannot use "hello" (type string) as type float64 in assignment
33 bug331.go:12: cannot use 0 (type float64) as type os.Error in assignment:
bug010.go 23 bug10.go:7: error in shape across assignment
bug069.go 18 i, ok = <-(ca[0]); // fails: c.go:11: bad shape across assignment - cr=1 cl=2
bug075.go 15 x, ok = t.m[0]; //bug075.go:11: bad shape across assignment - cr=1 cl=2
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/hlsl/
hlslOpMap.h 60 static TOperator assignment(EHlslTokenClass op);
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
alias_analysis.h 35 AliasAnalysis(const HloModule& module, const BufferAssignment& assignment,
37 : module_(module), assignment_(assignment), context_(context) {}
61 const BufferAssignment& assignment, const HloInstruction& hlo);
66 // Assignment of the temporary buffers needed by the computation and their
  /external/mesa3d/src/compiler/glsl/
opt_vectorize.cpp 29 * and assignment.
67 assignment[0] = NULL;
68 assignment[1] = NULL;
69 assignment[2] = NULL;
70 assignment[3] = NULL;
95 ir_assignment *assignment[4]; member in class:__anon29250::ir_vectorize_visitor
106 * Rewrites the swizzles and types of a right-hand side of an assignment.
173 * assignment seen to be an equivalent vector form of the scalar assignments.
185 if (this->assignment[i]) {
188 if (this->assignment[i] != this->last_assignment)
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
buffer_assignment.cc 16 // Defines the data returned by the XLA buffer assignment packages.
650 BufferAssignment* assignment) {
651 const LogicalBuffer::SizeFunction& buffer_size = assignment->buffer_size_;
653 CHECK(!assignment->HasAllocation(buffer))
682 if (assignment->liveness().MayInterfere(assigned_buffer, buffer)) {
698 assignment->module_->entry_computation();
701 assignment->points_to_analysis().GetBuffersDefinedByInstruction(
703 if (assignment->liveness().MayInterfere(*param_buffer, buffer)) {
714 if (assignment->liveness().MaybeLiveOut(buffer) &&
721 assignment->AddAssignment(allocation, buffer, /*offset=*/0
    [all...]
computation_placer.cc 57 "Invalid device assignment topology: replica_count=%d, "
61 auto assignment = MakeUnique<DeviceAssignment>(proto.replica_count(), local
69 (*assignment)(replica, computation) =
73 return std::move(assignment);
87 DeviceAssignment assignment(replica_count, computation_count);
93 assignment(replica, computation) = device_id;
96 return std::move(assignment);
  /dalvik/dx/src/com/android/dx/ssa/
NormalSsaInsn.java 147 RegisterSpec assignment; local
150 assignment = insn.getSources().get(0);
152 assignment = getResult();
155 if (assignment == null) {
159 LocalItem local = assignment.getLocalItem();
165 return assignment;
  /external/jcommander/src/main/java/com/beust/jcommander/
DynamicParameter.java 47 String assignment() default "=";
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug184.go 22 // implicit interface conversion in assignment during return
29 // implicit interface conversion in multi-assignment during return
bug331.go 32 bug331.go:12: cannot use "hello" (type string) as type float64 in assignment
33 bug331.go:12: cannot use 0 (type float64) as type os.Error in assignment:
bug010.go 23 bug10.go:7: error in shape across assignment
bug069.go 18 i, ok = <-(ca[0]); // fails: c.go:11: bad shape across assignment - cr=1 cl=2
bug075.go 15 x, ok = t.m[0]; //bug075.go:11: bad shape across assignment - cr=1 cl=2
bug144.go 18 bug144.go:8: operation LITERAL not allowed in assignment context
bug389.go 12 var f func(arg int) = fn // ERROR "cannot use fn .type func.float32.. as type func.int. in assignment|different parameter types"
bug498.go 7 // Gccgo incorrectly rejected an assignment to multiple instances of
issue4620.go 7 // Issue 4620: map indexes are not evaluated before assignment of other elements
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
copylock.go 48 *p = *x // ERROR "assignment copies lock value to \*p: sync.Mutex"
53 *tp = t // ERROR "assignment copies lock value to \*tp: testdata.Tlock contains sync.Once contains sync.Mutex"
54 t = *tp // ERROR "assignment copies lock value to t: testdata.Tlock contains sync.Once contains sync.Mutex"
56 y := *x // ERROR "assignment copies lock value to y: sync.Mutex"
77 muB := muA // ERROR "assignment copies lock value to muB: sync.Mutex"
78 muA = muB // ERROR "assignment copies lock value to muA: sync.Mutex"
83 mmuB := mmuA // ERROR "assignment copies lock value to mmuB: sync.Mutex"
84 mmuA = mmuB // ERROR "assignment copies lock value to mmuA: sync.Mutex"
125 rwmuY := rwmuX // ERROR "assignment copies lock value to rwmuY: sync.RWMutex"
126 rwmuY = rwmuX // ERROR "assignment copies lock value to rwmuY: sync.RWMutex
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
copylock.go 48 *p = *x // ERROR "assignment copies lock value to \*p: sync.Mutex"
53 *tp = t // ERROR "assignment copies lock value to \*tp: testdata.Tlock contains sync.Once contains sync.Mutex"
54 t = *tp // ERROR "assignment copies lock value to t: testdata.Tlock contains sync.Once contains sync.Mutex"
56 y := *x // ERROR "assignment copies lock value to y: sync.Mutex"
77 muB := muA // ERROR "assignment copies lock value to muB: sync.Mutex"
78 muA = muB // ERROR "assignment copies lock value to muA: sync.Mutex"
83 mmuB := mmuA // ERROR "assignment copies lock value to mmuB: sync.Mutex"
84 mmuA = mmuB // ERROR "assignment copies lock value to mmuA: sync.Mutex"
125 rwmuY := rwmuX // ERROR "assignment copies lock value to rwmuY: sync.RWMutex"
126 rwmuY = rwmuX // ERROR "assignment copies lock value to rwmuY: sync.RWMutex
    [all...]
  /build/blueprint/parser/
parser.go 198 p.errorf("expected assignment or module definition, found %s",
206 assigner string) (assignment *Assignment) {
208 assignment = new(Assignment)
216 assignment.Name = name
217 assignment.NamePos = namePos
218 assignment.Value = value
219 assignment.OrigValue = value
220 assignment.EqualsPos = po
    [all...]

Completed in 964 milliseconds

12 3 4 5 6 7 8 91011>>