/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue4909a.go | 30 const N1 = unsafe.Offsetof(t.X) // ERROR "indirection" 31 const N2 = unsafe.Offsetof(p.X) // ERROR "indirection"
|
issue4909b.go | 61 // Does it involve an indirection? 76 fmt.Print(` // ERROR "indirection"`)
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue4909a.go | 30 const N1 = unsafe.Offsetof(t.X) // ERROR "indirection" 31 const N2 = unsafe.Offsetof(p.X) // ERROR "indirection"
|
issue4909b.go | 61 // Does it involve an indirection? 76 fmt.Print(` // ERROR "indirection"`)
|
/toolchain/binutils/binutils-2.25/gas/config/ |
tc-m32c.c | 247 enum indirect_type indirection [3] = { none, none, none }; 260 indirection[operand] = absolute; 262 indirection[operand] = relative; 264 indirection[operand] = relative; 267 if (indirection[1] == none && indirection[2] == none) 285 if (indirection[operand] != none) 293 else if (s[0] == ']' && s[1] == ']' && indirection[operand] == relative) 298 else if (s[0] == ']' && indirection[operand] == absolute) 321 if (indirection[1] != none && indirection[2] != none 245 enum indirect_type indirection [3] = { none, none, none }; local [all...] |
/external/v8/test/mjsunit/harmony/ |
proxies-cross-realm-exception.js | 44 // 2-level proxy indirection
|
/prebuilts/go/darwin-x86/test/ |
indirect.go | 7 // Test various safe uses of indirection.
|
indirect1.go | 7 // Verify that illegal uses of indirection are caught by the compiler.
|
escape_level.go | 7 // Test indirection level computation in escape analysis.
|
nilptr.go | 7 // Test that the implementation catches nil ptr indirection
|
/prebuilts/go/linux-x86/test/ |
indirect.go | 7 // Test various safe uses of indirection.
|
indirect1.go | 7 // Verify that illegal uses of indirection are caught by the compiler.
|
escape_level.go | 7 // Test indirection level computation in escape analysis.
|
nilptr.go | 7 // Test that the implementation catches nil ptr indirection
|
/prebuilts/go/darwin-x86/src/go/types/ |
selection.go | 45 indirect bool // set if there was any pointer indirection on the path 104 // Indirect reports whether any pointer indirection was required to get from
|
/prebuilts/go/linux-x86/src/go/types/ |
selection.go | 45 indirect bool // set if there was any pointer indirection on the path 104 // Indirect reports whether any pointer indirection was required to get from
|
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
unsafe.go | 90 Yyerror("invalid expression %v: selector implies indirection of embedded %v", nn, r1.Left)
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/ |
unsafe.go | 87 Yyerror("invalid expression %v: selector implies indirection of embedded %v", nn, r1.Left)
|
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/ |
unsafe.go | 90 Yyerror("invalid expression %v: selector implies indirection of embedded %v", nn, r1.Left)
|
/prebuilts/go/linux-x86/src/cmd/compile/internal/gc/ |
unsafe.go | 87 Yyerror("invalid expression %v: selector implies indirection of embedded %v", nn, r1.Left)
|
/prebuilts/go/darwin-x86/src/encoding/gob/ |
doc.go | 36 receiver and transmitter will do all necessary indirection and dereferencing to 45 *struct { A, B int } // extra indirection of the struct 46 struct { *A, **B int } // extra indirection of the fields
|
type_test.go | 157 // at the same level of indirection.
|
/prebuilts/go/linux-x86/src/encoding/gob/ |
doc.go | 36 receiver and transmitter will do all necessary indirection and dereferencing to 45 *struct { A, B int } // extra indirection of the struct 46 struct { *A, **B int } // extra indirection of the fields
|
type_test.go | 157 // at the same level of indirection.
|
/external/v8/src/js/ |
prologue.js | 326 // indirection and slowness given how un-optimized bind is.
|