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

1 2 3 4

  /external/brotli/csharp/org/brotli/dec/
Context.cs 8 /// <summary>Common context lookup table for all context modes.</summary>
11 internal static readonly int[] Lookup = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 12, 16, 12, 12, 20, 12, 16, 24, 28, 12, 12, 32, 12, 36, 12, 44, 44, 44, 44, 44, 44, 44, 44
  /external/llvm/lib/DebugInfo/PDB/
PDBExtras.cpp 273 static const char *Lookup = "0123456789ABCDEF";
282 OS << Lookup[HighNibble] << Lookup[LowNibble];
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
Formatters.cpp 28 static const char *Lookup = "0123456789ABCDEF";
36 Stream << Lookup[HighNibble] << Lookup[LowNibble];
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
custom_call_target_registry.cc 32 void* CustomCallTargetRegistry::Lookup(const std::string& symbol) const {
  /external/tensorflow/tensorflow/cc/framework/
grad_op_registry.cc 32 Status GradOpRegistry::Lookup(const string& op, GradFunc* func) const {
  /external/tensorflow/tensorflow/python/lib/core/
py_exception_registry.cc 41 PyObject* PyExceptionRegistry::Lookup(TF_Code code) {
43 "before PyExceptionRegistry::Lookup()";
46 << "Unknown error code passed to PyExceptionRegistry::Lookup: " << code;
  /external/v8/src/ast/
context-slot-cache.cc 23 int ContextSlotCache::Lookup(Object* data, String* name, VariableMode* mode,
  /external/v8/src/
lookup-cache-inl.h 8 #include "src/lookup-cache.h"
26 int DescriptorLookupCache::Lookup(Map* source, Name* name) {
address-map.h 31 Entry* entry = Lookup(key, Hash(key));
61 int Lookup(HeapObject* obj) {
dateparser.cc 153 int DateParser::KeywordTable::Lookup(const uint32_t* pre, int len) {
  /development/host/windows/usb/api/
adb_object_handle.cpp 148 AdbObjectHandle* AdbObjectHandle::Lookup(ADBAPIHANDLE adb_hndl) {
  /external/syzkaller/vendor/golang.org/x/text/unicode/bidi/
prop.go 64 return Lookup(buf[:n])
67 // TODO: these lookup methods are based on the generated trie code. The returned
82 // Lookup returns properties for the first rune in s and the width in bytes of
85 func Lookup(s []byte) (p Properties, sz int) {
  /external/boringssl/src/crypto/lhash/
lhash_test.cc 49 static const char *Lookup(
115 EXPECT_EQ(Lookup(&dummy_lh, key.get()), value);
117 // Do the same lookup with |lh_char_retrieve_key|.
126 EXPECT_EQ(Lookup(&dummy_lh, key.get()), value);
134 EXPECT_EQ(Lookup(&dummy_lh, key.get()), previous);
142 EXPECT_EQ(Lookup(&dummy_lh, key.get()), value);
  /external/icu/icu4c/source/common/
ucmndata.h 82 * "Virtual" functions for data lookup.
84 * p->vFuncs.Lookup(p, tocEntryName, pErrorCode);
100 LookupFn Lookup;
  /external/tensorflow/tensorflow/core/framework/
collective.cc 179 Status CollectiveRegistry::Lookup(
229 "CollectiveRegistry::Lookup did not find collective implementation ",
  /art/libdexfile/dex/
type_lookup_table.cc 100 uint32_t TypeLookupTable::Lookup(const char* str, uint32_t hash) const {
  /build/kati/
var.go 298 // Lookup looks up named make variable.
299 func (vt Vars) Lookup(name string) Var {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramStateTrait.h 73 static lookup_type Lookup(data_type B, key_type K) {
74 return B.lookup(K);
  /external/pdfium/core/fxcrt/xml/
cxml_element.cpp 64 pwsSpace = pElement->Lookup("", "xmlns");
66 pwsSpace = pElement->Lookup("xmlns", qName);
94 const WideString* pValue = Lookup(ByteString(bsSpace), ByteString(bsName));
105 const WideString* pwsValue = Lookup(ByteString(bsSpace), ByteString(bsName));
158 const WideString* CXML_Element::Lookup(const ByteString& space,
  /external/perf_data_converter/src/
intervalmap.h 32 bool Lookup(uint64 key, V* value) const;
121 bool IntervalMap<V>::Lookup(uint64 key, V* value) const {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
PointerSumType.h 74 create(typename HelperT::template Lookup<N>::PointerT Pointer) {
76 void *V = HelperT::template Lookup<N>::TraitsT::getAsVoidPointer(Pointer);
87 template <TagT N> typename HelperT::template Lookup<N>::PointerT get() const {
89 return HelperT::template Lookup<N>::TraitsT::getFromVoidPointer(P);
93 typename HelperT::template Lookup<N>::PointerT cast() const {
95 return HelperT::template Lookup<N>::TraitsT::getFromVoidPointer(getImpl());
117 /// compile-time lookup of the member from a particular tag value, along with
130 template <TagT N> struct Lookup {
131 // Compute a particular member type by resolving the lookup helper ovorload.
184 typename HelperT::template Lookup<HelperT::MinTag>::PointerT
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
Legacy.h 40 virtual SymbolNameSet lookup(std::shared_ptr<AsynchronousSymbolQuery> Query,
53 LambdaSymbolResolver(LookupFlagsFnRef &&LookupFlags, LookupFnRef &&Lookup)
55 Lookup(std::forward<LookupFnRef>(Lookup)) {}
61 SymbolNameSet lookup(std::shared_ptr<AsynchronousSymbolQuery> Query,
63 return Lookup(std::move(Query), std::move(Symbols));
68 LookupFn Lookup;
79 createSymbolResolver(LookupFlagsFn &&LookupFlags, LookupFn &&Lookup) {
86 std::forward<LookupFlagsFn>(LookupFlags), std::forward<LookupFn>(Lookup));
94 Expected<LookupResult> lookup(const LookupSet &Symbols) override
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DynamicLibrary.cpp 92 void *Lookup(const char *Symbol, DynamicLibrary::SearchOrdering Order) {
194 if (void *Ptr = OpenedHandles->Lookup(SymbolName, SearchOrder))
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
Analyze.cpp 56 Lookup[H].push_back(Entry{TI, Record});
62 DenseMap<uint32_t, std::list<Entry>> Lookup;
93 for (const auto &H : Hasher.Lookup) {
122 auto CollisionsIter = Hasher.Lookup.find(*HeadRecord.Hash);
123 if (CollisionsIter == Hasher.Lookup.end())
145 uint32_t DistinctHashValues = Hasher.Lookup.size();
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
LegacyAPIInteropTest.cpp 49 EXPECT_EQ(Result->count(Foo), 1U) << "Missing lookup result for foo";
50 EXPECT_EQ(Result->count(Bar), 1U) << "Missing lookup result for bar";
62 auto Unresolved = Resolver->lookup(std::move(Q), Symbols);
82 auto Lookup = [&](std::shared_ptr<AsynchronousSymbolQuery> Query,
88 createSymbolResolver(std::move(LookupFlags), std::move(Lookup));
102 auto LR = Resolver.lookup(Names);
103 EXPECT_TRUE(!!LR) << "lookup failed";
104 EXPECT_EQ(LR->size(), 1U) << "lookup returned the wrong number of results";
105 EXPECT_EQ(LR->count(*Foo), 1U) << "lookup did not contain a result for 'foo'";
107 << "lookup returned the wrong result for flags of 'foo'"
    [all...]

Completed in 1244 milliseconds

1 2 3 4