HomeSort by relevance Sort by last modified time
    Searched defs:Indirect (Results 1 - 25 of 29) sorted by null

1 2

  /art/test/065-mismatched-implements/src/
Indirect.java 23 public class Indirect {
Main.java 23 Indirect.main();
  /art/test/066-mismatched-super/src/
Indirect.java 23 public class Indirect {
Main.java 23 Indirect.main();
  /external/flatbuffers/python/flatbuffers/
table.py 43 def Indirect(self, off):
44 """Indirect retrieves the relative offset stored at `offset`."""
  /prebuilts/go/darwin-x86/src/go/types/
selection.go 34 // Selector Kind Recv Obj Type Index Indirect
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
106 func (s *Selection) Indirect() bool { return s.indirect }
  /prebuilts/go/linux-x86/src/go/types/
selection.go 34 // Selector Kind Recv Obj Type Index Indirect
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
106 func (s *Selection) Indirect() bool { return s.indirect }
  /external/flatbuffers/go/
table.go 22 // Indirect retrieves the relative offset stored at `offset`.
23 func (t *Table) Indirect(off UOffsetT) UOffsetT {
  /external/llvm/include/llvm/CodeGen/
StackMaps.h 136 Indirect,
CallingConvLower.h 50 Indirect // The location contains pointer to the value.
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.h 47 struct tgsi_src_register Indirect;
55 struct tgsi_src_register Indirect;
tgsi_ureg.h 43 * flag from the _ext token. Indirect flag always implies ADDR[0].
52 unsigned Indirect : 1; /* BOOL */
76 unsigned Indirect : 1; /* BOOL */
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
CallingConvLower.h 41 Indirect // The location contains pointer to the value.
  /prebuilts/go/darwin-x86/src/encoding/gob/
codec_test.go 979 type Indirect struct {
992 // Marshal indirect, unmarshal to direct.
993 i := new(Indirect)
1016 t.Errorf("indirect to direct: d.A is %v not %v", d.A, ***i.A)
1019 t.Errorf("indirect to direct: d.S is %v not %v", d.S, ***i.S)
1022 t.Errorf("indirect to direct: d.M is %v not %v", d.M, ***i.M)
1024 // Marshal direct, unmarshal to indirect.
1028 i = new(Indirect)
1037 t.Errorf("direct to indirect: ***i.A is %v not %v", ***i.A, d.A)
1040 t.Errorf("direct to indirect: ***i.S is %v not %v", ***i.S, ***i.S
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
codec_test.go 979 type Indirect struct {
992 // Marshal indirect, unmarshal to direct.
993 i := new(Indirect)
1016 t.Errorf("indirect to direct: d.A is %v not %v", d.A, ***i.A)
1019 t.Errorf("indirect to direct: d.S is %v not %v", d.S, ***i.S)
1022 t.Errorf("indirect to direct: d.M is %v not %v", d.M, ***i.M)
1024 // Marshal direct, unmarshal to indirect.
1028 i = new(Indirect)
1037 t.Errorf("direct to indirect: ***i.A is %v not %v", ***i.A, d.A)
1040 t.Errorf("direct to indirect: ***i.S is %v not %v", ***i.S, ***i.S
    [all...]
  /external/guice/core/test/com/google/inject/
OptionalBindingTest.java 279 * indirect injections.
282 Indirect indirect = Guice.createInjector().getInstance(Indirect.class); local
283 assertNotNull(indirect.hasOptionalInjections);
284 indirect.hasOptionalInjections.assertNothingInjected();
287 static class Indirect {
  /external/llvm/include/llvm/Object/
StackMapParser.h 100 Register = 1, Direct = 2, Indirect = 3, Constant = 4, ConstantIndex = 5
133 /// Get the offset for this location. (Kind must be Direct or Indirect).
136 getKind() == LocationKind::Indirect) &&
137 "Not direct or indirect.");
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc.h 249 unsigned Indirect : 1; /* BOOL */
268 unsigned Indirect : 1; /* BOOL */
279 struct tgsi_src_register Indirect;
289 struct tgsi_src_register Indirect;
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 24 * - Desc - Defined, Reference, Common or Indirect
68 enum Desc { Undefined = 0, Define = 1, Common = 2, Indirect = 3, NoneDesc };
  /toolchain/binutils/binutils-2.25/include/opcode/
tic30.h 105 /* Indirect Addressing Modes Modification Fields */
106 /* Indirect Addressing with Displacement */
115 /* Indirect Addressing with Index Register IR0 */
124 /* Indirect Addressing with Index Register IR1 */
133 /* Indirect Addressing (Special Cases) */
196 #define Indirect 0x0020
209 #define GAddr1 Rn | Direct | Indirect | Imm16
211 #define TAddr1 op3T1 | Rn | Indirect
212 #define TAddr2 op3T2 | Rn | Indirect
409 { "iack" ,1,0x1B000000,AddressMode, { Direct|Indirect, 0, 0 }, Imm_None }
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
opc2c.c 100 struct Indirect * last_ind;
139 typedef struct Indirect
144 struct Indirect * ind;
147 } Indirect;
149 Indirect indirect[256]; variable
247 dump_lines (opcode * op, int level, Indirect * ind)
349 store_opcode_bits (opcode * op, int byte, Indirect * ind)
373 ind[bits].u.ind = (Indirect *) malloc (256 * sizeof (Indirect));
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/flatbuffers/include/flatbuffers/
flexbuffers.h 158 const uint8_t *Indirect(const uint8_t *offset, uint8_t byte_width) {
162 template<typename T> const uint8_t *Indirect(const uint8_t *offset) {
309 return TypedVector(Indirect(keys_offset, byte_width_),
364 case TYPE_INDIRECT_INT: return ReadInt64(Indirect(), byte_width_);
366 case TYPE_INDIRECT_UINT: return ReadUInt64(Indirect(), byte_width_);
370 ReadDouble(Indirect(), byte_width_));
391 case TYPE_INDIRECT_UINT: return ReadUInt64(Indirect(), byte_width_);
393 case TYPE_INDIRECT_INT: return ReadInt64(Indirect(), byte_width_);
397 ReadDouble(Indirect(), byte_width_));
416 case TYPE_INDIRECT_FLOAT: return ReadDouble(Indirect(), byte_width_)
    [all...]
  /prebuilts/go/darwin-x86/src/reflect/
value.go 106 // Value is indirect, and so is the interface we're making.
117 // Value is indirect, but interface is direct. We need
862 // Addressable, indirect, possibly read-only.
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
value.go 106 // Value is indirect, and so is the interface we're making.
117 // Value is indirect, but interface is direct. We need
862 // Addressable, indirect, possibly read-only.
    [all...]

Completed in 2247 milliseconds

1 2