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

1 2 3

  /external/compiler-rt/test/BlocksRuntime/
flagsisa.c 15 __block void *isa; local
17 ^{ flags=1; isa = (void *)isa; };
objectRRGC.c 38 long isa; member in struct:MyStruct
objectassign.c 37 long isa; member in struct:MyStruct
byrefsanity.c 49 void *isa; member in struct:Block_basic2
  /external/clang/test/Sema/
builtin_objc_msgSend.c 7 Class isa; member in struct:objc_object
  /external/grpc-grpc-java/interop-testing/src/test/java/io/grpc/testing/integration/
Http2NettyTest.java 84 InetSocketAddress isa = (InetSocketAddress) obtainRemoteClientAddr(); local
85 assertEquals(InetAddress.getLoopbackAddress(), isa.getAddress());
87 assertNotEquals(getPort(), isa.getPort());
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 30 // Use 64-bit ISA for runtime setup to make method size potentially larger
42 static ArtMethod* CreateCalleeSaveMethod(InstructionSet isa, CalleeSaveType type)
50 r->SetInstructionSet(isa);
57 static void CheckPCOffset(InstructionSet isa, CalleeSaveType type, size_t pc_offset)
59 ArtMethod* save_method = CreateCalleeSaveMethod(isa, type);
64 << " fp spills=" << frame_info.FpSpillMask() << std::dec << " ISA " << isa; variable
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.h 9 Class isa; member in struct:objc_object
  /external/clang/test/SemaTemplate/
template-id-expr.cpp 6 static void isa(const FromCl &Val) { } function in struct:isa_impl_cl
10 void isa(const Y &Val) { return isa_impl_cl<Y>::template isa<X>(Val); } function
13 void f0(const Value &Val) { isa<Value>(Val); }
  /external/clang/tools/libclang/
Index_Internal.h 34 void *isa; member in struct:_CXCursorAndRangeVisitorBlock
  /art/compiler/debug/
method_debug_info.h 36 InstructionSet isa; member in struct:art::debug::MethodDebugInfo
elf_debug_line_writer.h 52 const InstructionSet isa = builder_->GetIsa(); local
53 const bool is64bit = Is64BitInstructionSet(isa);
66 switch (isa) {
100 const uint32_t pc = stack_map.GetNativePcOffset(isa);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
23 // isa<x> Support Templates
44 // The core of the implementation of isa<X> is here; To and From should be
46 // implementation of isa<> without rewriting it from scratch.
103 // isa<X> - Return true if the parameter to the template is an instance of the
106 // if (isa<Type>(myVal)) { ... }
109 inline bool isa(const Y &Val) { function in namespace:llvm
194 assert(isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
205 assert(isa<X>(Val) && "cast_or_null<Ty>() argument of incompatible type!");
220 return isa<X>(Val) ? cast<X, Y>(Val) : 0
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /art/runtime/
parsed_options_test.cc 159 InstructionSet isa = map.GetOrDefault(Opt::ImageInstructionSet); local
160 EXPECT_EQ(kRuntimeISA, isa);
178 InstructionSet isa = map.GetOrDefault(Opt::ImageInstructionSet); local
179 EXPECT_EQ(ISAs[i], isa);
  /external/apache-http/src/org/apache/http/conn/
MultihomePlainSocketFactory.java 126 InetSocketAddress isa = local
128 sock.bind(isa);
  /external/apache-http/src/org/apache/http/conn/scheme/
PlainSocketFactory.java 110 InetSocketAddress isa = local
112 sock.bind(isa);
  /external/apache-http/src/org/apache/http/impl/conn/
ProxySelectorRoutePlanner.java 219 final InetSocketAddress isa = (InetSocketAddress) p.address(); local
221 result = new HttpHost(getHost(isa), isa.getPort());
231 * @param isa the socket address
238 protected String getHost(InetSocketAddress isa) {
243 return isa.isUnresolved() ?
244 isa.getHostName() : isa.getAddress().getHostAddress();
  /external/clang/lib/CodeGen/
Address.h 98 return llvm::isa<llvm::Constant>(addr.getPointer());
112 template <class U> inline bool isa(CodeGen::Address addr) { function in namespace:clang
  /external/clang/test/CodeGen/
blockstret.c 65 void *isa; member in struct:block_layout_abi
  /external/llvm/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
25 // isa<x> Support Templates
50 // The core of the implementation of isa<X> is here; To and From should be
52 // implementation of isa<> without rewriting it from scratch.
81 assert(Val && "isa<> used on a null pointer");
88 assert(Val && "isa<> used on a null pointer");
95 assert(Val && "isa<> used on a null pointer");
102 assert(Val && "isa<> used on a null pointer");
126 // isa<X> - Return true if the parameter to the template is an instance of the
129 // if (isa<Type>(myVal)) { ...
132 LLVM_ATTRIBUTE_UNUSED_RESULT inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
25 // isa<x> Support Templates
50 // The core of the implementation of isa<X> is here; To and From should be
52 // implementation of isa<> without rewriting it from scratch.
81 assert(Val && "isa<> used on a null pointer");
88 assert(Val && "isa<> used on a null pointer");
95 assert(Val && "isa<> used on a null pointer");
102 assert(Val && "isa<> used on a null pointer");
126 // isa<X> - Return true if the parameter to the template is an instance of the
129 // if (isa<Type>(myVal)) { ...
131 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /art/compiler/debug/dwarf/
dwarf_test.h 63 InstructionSet isa = local
67 ElfBuilder<ElfTypes> builder(isa, &output_stream);
  /external/elfutils/tests/
dwfllines.c 125 unsigned int isa; local
126 if (dwarf_lineisa (dw_line, &isa) != 0)
147 ", isa: %d, disc: %d\n",
149 dw_op_index, begin, end, pend, ebegin, block, isa, disc);
  /art/libartbase/base/
file_utils.cc 286 static void InsertIsaDirectory(const InstructionSet isa, std::string* filename) {
288 // out = /foo/bar/<isa>/baz
290 CHECK_NE(pos, std::string::npos) << *filename << " " << isa; local
292 filename->insert(pos + 1, GetInstructionSetString(isa));
295 std::string GetSystemImageFilename(const char* location, const InstructionSet isa) {
297 // filename = /system/framework/<isa>/boot.art
299 InsertIsaDirectory(isa, &filename);

Completed in 3910 milliseconds

1 2 3