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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/all/
assign.d 2 #name : assignment tests
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_proto_util.h 32 const BufferAssignment& assignment);
34 // Returns a serialized representation of the HLO state, but buffer assignment
hlo_proto_util.cc 21 const BufferAssignment& assignment) {
23 assignment.liveness().hlo_ordering().ToProto();
24 BufferAssignmentProto proto_assignment = assignment.ToProto();
buffer_assignment_test.cc 214 // the assignment are written into them.
254 const BufferAssignment& assignment) {
257 if (assignment.HasTopLevelAllocation(instruction)) {
259 assignment.GetUniqueTopLevelSlice(instruction).ConsumeValueOrDie());
264 if (assignment.HasTopLevelAllocation(instruction)) {
265 if (a_slices.count(assignment.GetUniqueTopLevelSlice(instruction)
818 auto assignment = RunBufferAssignment(module.get()); local
847 auto assignment = RunBufferAssignment(module.get()); local
880 auto assignment = RunBufferAssignment(module.get()); local
917 auto assignment = RunBufferAssignment(module.get()); local
952 auto assignment = RunBufferAssignment(module.get()); local
984 auto assignment = RunBufferAssignment(module.get()); local
1022 auto assignment = RunBufferAssignment(module.get()); local
1066 auto assignment = RunBufferAssignment(module.get()); local
1115 auto assignment = RunBufferAssignment(module.get()); local
1151 auto assignment = RunBufferAssignment(module.get()); local
1193 auto assignment = RunBufferAssignment(module.get()); local
1207 auto assignment = RunBufferAssignment(module.get()); local
1238 auto assignment = RunBufferAssignment(module.get()); local
1298 auto assignment = RunBufferAssignment(module.get()); local
1332 auto assignment = RunBufferAssignment(module.get()); local
1358 auto assignment = RunBufferAssignment(module.get()); local
1396 auto assignment = RunBufferAssignment(module.get()); local
1435 auto assignment = RunBufferAssignment(module.get(), \/*alignment=*\/1); local
    [all...]
  /build/kati/testcase/
assign_after_tab.mk 1 # This is an assignment.
  /prebuilts/go/darwin-x86/test/
convert2.go 25 s = t // ERROR "cannot use .* in assignment"
45 s = t // ERROR "cannot use .* in assignment"
46 s = u // ERROR "cannot use .* in assignment"
50 t = u // ERROR "cannot use .* in assignment"
66 s = t // ERROR "cannot use .* in assignment"
67 s = u // ERROR "cannot use .* in assignment"
71 t = u // ERROR "cannot use .* in assignment"
94 s = t // ERROR "cannot use .* in assignment"
95 s = u // ERROR "cannot use .* in assignment"
99 t = u // ERROR "cannot use .* in assignment"
    [all...]
assign.go 7 // Verify simple assignment errors are caught by the compiler.
41 x := sync.Mutex{0, 0} // ERROR "assignment.*Mutex"
45 x := sync.Mutex{key: 0} // ERROR "(unknown|assignment).*Mutex"
  /prebuilts/go/linux-x86/test/
convert2.go 25 s = t // ERROR "cannot use .* in assignment"
45 s = t // ERROR "cannot use .* in assignment"
46 s = u // ERROR "cannot use .* in assignment"
50 t = u // ERROR "cannot use .* in assignment"
66 s = t // ERROR "cannot use .* in assignment"
67 s = u // ERROR "cannot use .* in assignment"
71 t = u // ERROR "cannot use .* in assignment"
94 s = t // ERROR "cannot use .* in assignment"
95 s = u // ERROR "cannot use .* in assignment"
99 t = u // ERROR "cannot use .* in assignment"
    [all...]
assign.go 7 // Verify simple assignment errors are caught by the compiler.
41 x := sync.Mutex{0, 0} // ERROR "assignment.*Mutex"
45 x := sync.Mutex{key: 0} // ERROR "(unknown|assignment).*Mutex"
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
stream_assignment_test.cc 51 std::unique_ptr<StreamAssignment> assignment = AssignStreams(*module); local
52 EXPECT_EQ(assignment->StreamNumberForHlo(*dot1),
53 assignment->StreamNumberForHlo(*dot2));
72 std::unique_ptr<StreamAssignment> assignment = AssignStreams(*module); local
73 EXPECT_NE(assignment->StreamNumberForHlo(*dot1),
74 assignment->StreamNumberForHlo(*dot2));
116 std::unique_ptr<StreamAssignment> assignment = AssignStreams(*module); local
118 EXPECT_NE(assignment->StreamNumberForHlo(*d10),
119 assignment->StreamNumberForHlo(*d11));
121 EXPECT_NE(assignment->StreamNumberForHlo(*d20)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
assign.go 5 // This file contains tests for the useless-assignment checker.
17 // Accidental self-assignment; it should be "s.x = x"
18 x = x // ERROR "self-assignment of x to x"
20 s.x = s.x // ERROR "self-assignment of s.x to s.x"
22 s.l[0] = s.l[0] // ERROR "self-assignment of s.l.0. to s.l.0."
atomic.go 17 x = atomic.AddUint64(&x, 1) // ERROR "direct assignment to atomic value"
18 _, x = 10, atomic.AddUint64(&x, 1) // ERROR "direct assignment to atomic value"
19 x, _ = atomic.AddUint64(&x, 1), 10 // ERROR "direct assignment to atomic value"
22 *y = atomic.AddUint64(y, 1) // ERROR "direct assignment to atomic value"
25 su.Counter = atomic.AddUint64(&su.Counter, 1) // ERROR "direct assignment to atomic value"
30 *sp.Counter = atomic.AddUint64(sp.Counter, 1) // ERROR "direct assignment to atomic value"
35 au[0] = atomic.AddUint64(&au[0], 1) // ERROR "direct assignment to atomic value"
39 *ap[0] = atomic.AddUint64(ap[0], 1) // ERROR "direct assignment to atomic value"
49 x, w := atomic.AddUint64(&x, 1), 10 // ERROR "direct assignment to atomic value"
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
assign.go 5 // This file contains tests for the useless-assignment checker.
17 // Accidental self-assignment; it should be "s.x = x"
18 x = x // ERROR "self-assignment of x to x"
20 s.x = s.x // ERROR "self-assignment of s.x to s.x"
22 s.l[0] = s.l[0] // ERROR "self-assignment of s.l.0. to s.l.0."
atomic.go 17 x = atomic.AddUint64(&x, 1) // ERROR "direct assignment to atomic value"
18 _, x = 10, atomic.AddUint64(&x, 1) // ERROR "direct assignment to atomic value"
19 x, _ = atomic.AddUint64(&x, 1), 10 // ERROR "direct assignment to atomic value"
22 *y = atomic.AddUint64(y, 1) // ERROR "direct assignment to atomic value"
25 su.Counter = atomic.AddUint64(&su.Counter, 1) // ERROR "direct assignment to atomic value"
30 *sp.Counter = atomic.AddUint64(sp.Counter, 1) // ERROR "direct assignment to atomic value"
35 au[0] = atomic.AddUint64(&au[0], 1) // ERROR "direct assignment to atomic value"
39 *ap[0] = atomic.AddUint64(ap[0], 1) // ERROR "direct assignment to atomic value"
49 x, w := atomic.AddUint64(&x, 1), 10 // ERROR "direct assignment to atomic value"
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
ops.h 36 const BufferAssignment& assignment);
41 HloInstruction* fusion, const BufferAssignment& assignment) {
58 return assignment.HasAllocationAt(operand, index) &&
59 assignment.HasAllocationAt(fusion, {}) &&
60 assignment.SharesSliceAtIndex(fusion, {}, operand, index);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug289.go 12 a, b := f() // ERROR "assignment mismatch|does not match"
19 a, b = f() // ERROR "assignment mismatch|does not match"
bug285.go 7 // Test for issue 778: Map key values that are assignment
23 mb[false] = 42 // this should work: false is assignment compatible with B
66 m0[z] = 42 // this should work: z is assignment-compatible with interface{}
69 })] = 42 // this should work: *struct{x int} is assignment-compatible with interface{}
70 m0[p] = 42 // this should work: p is assignment-compatible with interface{}
71 m0[false] = 42 // this should work: false is assignment-compatible with interface{}
72 m0[17] = 42 // this should work: 17 is assignment-compatible with interface{}
73 m0["foo"] = 42 // this should work: "foo" is assignment-compatible with interface{}
79 })] = 42 // this should work: *struct{x int} is assignment-compatible with I1
80 m1[false] = 42 // this should work: false is assignment-compatible with I
    [all...]
bug161.go 16 bug161.go:8: operation LITERAL not allowed in assignment context
bug487.go 17 a, b := G() // ERROR "assignment mismatch"
18 a, b = G() // ERROR "assignment mismatch"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug289.go 12 a, b := f() // ERROR "assignment mismatch|does not match"
19 a, b = f() // ERROR "assignment mismatch|does not match"
bug285.go 7 // Test for issue 778: Map key values that are assignment
23 mb[false] = 42 // this should work: false is assignment compatible with B
66 m0[z] = 42 // this should work: z is assignment-compatible with interface{}
69 })] = 42 // this should work: *struct{x int} is assignment-compatible with interface{}
70 m0[p] = 42 // this should work: p is assignment-compatible with interface{}
71 m0[false] = 42 // this should work: false is assignment-compatible with interface{}
72 m0[17] = 42 // this should work: 17 is assignment-compatible with interface{}
73 m0["foo"] = 42 // this should work: "foo" is assignment-compatible with interface{}
79 })] = 42 // this should work: *struct{x int} is assignment-compatible with I1
80 m1[false] = 42 // this should work: false is assignment-compatible with I
    [all...]
bug161.go 16 bug161.go:8: operation LITERAL not allowed in assignment context
  /prebuilts/go/darwin-x86/test/fixedbugs/bug324.dir/
prog.go 30 // this assignment is correctly illegal:
34 // this assignment is correctly illegal:
38 // this assignment is correctly illegal:
42 // this assignment unexpectedly compiles and then executes
50 // this is a legitimate call, but because of the previous assignment,
  /prebuilts/go/linux-x86/test/fixedbugs/bug324.dir/
prog.go 30 // this assignment is correctly illegal:
34 // this assignment is correctly illegal:
38 // this assignment is correctly illegal:
42 // this assignment unexpectedly compiles and then executes
50 // this is a legitimate call, but because of the previous assignment,
  /external/jcommander/src/test/java/com/beust/jcommander/dynamic/
DSimple.java 14 @DynamicParameter(names = "-A", assignment = "@")

Completed in 1188 milliseconds

1 2 3 4 5 6 7 8 91011>>