Searched defs:lookup (Results 126 - 150 of 216) sorted by relevance

123456789

/external/ltrace/
H A Dprototype.c245 struct lookup { struct
271 struct lookup *lookup = data; local
272 struct dict *dict = (*lookup->getter)(*plibp);
274 lookup->result = dict_find(dict, &lookup->name);
275 if (lookup->result != NULL)
278 if (lookup->imports && each_import(*plibp, NULL, &protolib_lookup_rec,
279 lookup) != NULL) {
280 assert(lookup
293 struct lookup lookup = { name, getter, imports, NULL }; local
[all...]
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_video.c111 static const int lookup[64] = { local
123 if (!db[lookup[i]]) { j += 2; continue; }
124 dec->data[dec->data_pos++] = (db[lookup[i]] << 16) | j;
/external/qemu/distrib/libselinux/src/
H A Dlabel_file.c27 struct selabel_lookup_rec lr; /* holds contexts for lookup result */
679 static struct selabel_lookup_rec *lookup(struct selabel_handle *rec, function
727 rec->func_lookup = &lookup;
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dconvolve_test.cc418 uint16_t lookup(uint8_t *list, int index) const { function in class:__anon12976::ConvolveTest
527 ASSERT_EQ(lookup(out, y * kOutputStride + x),
528 lookup(in, y * kInputStride + x))
545 ASSERT_EQ(lookup(out, y * kOutputStride + x),
546 lookup(in, y * kInputStride + x))
563 ASSERT_EQ(lookup(out, y * kOutputStride + x),
564 lookup(in, y * kInputStride + x))
643 ASSERT_EQ(lookup(ref, y * kOutputStride + x),
644 lookup(out, y * kOutputStride + x))
722 ASSERT_EQ(lookup(re
[all...]
/external/chromium_org/v8/src/
H A Dfull-codegen.h860 Iterator lookup(Literal* literal) { function in class:v8::internal::AccessorTable
H A Dd8.js532 // Build a lookup request.
533 var request = this.createRequest('lookup');
1314 var value = protocolPackage.lookup(handle);
1494 var scope_object_value = response.lookup(body.object.ref);
1500 case 'lookup':
1596 var script_value = response.lookup(body[i].evalFromScript.ref);
1763 ProtocolPackage.prototype.lookup = function(handle) {
1882 return this.packet_.lookup(ctor.ref);
1892 return this.packet_.lookup(proto.ref);
1936 return this.packet_.lookup(propert
[all...]
/external/chromium_org/v8/src/ic/arm/
H A Dhandler-compiler-arm.cc484 void NamedStoreHandlerCompiler::GenerateStoreField(LookupIterator* lookup, argument
487 DCHECK(lookup->representation().IsHeapObject());
489 HeapType::Iterator<Map> it = lookup->GetFieldType()->Classes();
503 StoreFieldStub stub(isolate(), lookup->GetFieldIndex(),
504 lookup->representation());
532 // fast and global objects or do negative lookup for normal objects.
/external/chromium_org/v8/src/ic/arm64/
H A Dhandler-compiler-arm64.cc521 void NamedStoreHandlerCompiler::GenerateStoreField(LookupIterator* lookup, argument
524 DCHECK(lookup->representation().IsHeapObject());
526 HeapType::Iterator<Map> it = lookup->GetFieldType()->Classes();
540 StoreFieldStub stub(isolate(), lookup->GetFieldIndex(),
541 lookup->representation());
568 // fast and global objects or do negative lookup for normal objects.
/external/chromium_org/v8/src/ic/mips/
H A Dhandler-compiler-mips.cc480 void NamedStoreHandlerCompiler::GenerateStoreField(LookupIterator* lookup, argument
483 DCHECK(lookup->representation().IsHeapObject());
485 HeapType::Iterator<Map> it = lookup->GetFieldType()->Classes();
501 StoreFieldStub stub(isolate(), lookup->GetFieldIndex(),
502 lookup->representation());
530 // fast and global objects or do negative lookup for normal objects.
/external/chromium_org/v8/src/ic/mips64/
H A Dhandler-compiler-mips64.cc480 void NamedStoreHandlerCompiler::GenerateStoreField(LookupIterator* lookup, argument
483 DCHECK(lookup->representation().IsHeapObject());
485 HeapType::Iterator<Map> it = lookup->GetFieldType()->Classes();
501 StoreFieldStub stub(isolate(), lookup->GetFieldIndex(),
502 lookup->representation());
530 // fast and global objects or do negative lookup for normal objects.
/external/deqp/modules/gles2/functional/
H A Des2fShaderTextureFunctionTests.cpp228 ShaderTextureFunctionCase (Context& context, const char* name, const char* desc, const TextureLookupSpec& lookup, const TextureSpec& texture, TexEvalFunc evalFunc, bool isVertexCase);
251 ShaderTextureFunctionCase::ShaderTextureFunctionCase (Context& context, const char* name, const char* desc, const TextureLookupSpec& lookup, const TextureSpec& texture, TexEvalFunc evalFunc, bool isVertexCase) argument
253 , m_lookupSpec (lookup)
415 // Set lookup scale & bias
/external/deqp/modules/glshared/
H A DglsFboUtil.hpp117 const typename M::mapped_type& lookup (const M& map, function in namespace:deqp::gls
/external/dnsmasq/src/
H A Dcache.c647 struct crec *lookup = cache_find_by_name(NULL, cache->name.sname, 0, flags & (F_IPV4 | F_IPV6)); local
652 if (lookup && (lookup->flags & F_HOSTS))
655 if (memcmp(&lookup->addr.addr, addr, addrlen) == 0)
675 for (lookup = hash_table[i]; lookup; lookup = lookup->hash_next)
676 if ((lookup->flags & F_HOSTS) &&
677 (lookup
[all...]
/external/e2fsprogs/misc/
H A Dfsck.c380 static struct fs_info *lookup(char *filesys) function
1315 fs = lookup(devices[i]);
/external/libsepol/src/
H A Dwrite.c105 uint32_t buf32[10], lookup, val; local
137 lookup = AVTAB_AV;
139 lookup = AVTAB_TYPE;
142 for (node = avtab_search_node_next(cur, lookup);
144 node = avtab_search_node_next(node, lookup)) {
1932 ERR(fp->handle, "compatibility lookup failed for policy "
/external/llvm/include/llvm/ADT/
H A DDenseMap.h142 /// lookup - Return the entry for the specified key, or a default
144 ValueT lookup(const KeyT &Val) const { function in class:llvm::DenseMapBase
428 // table completely filled with tombstones, no lookup would ever succeed,
429 // causing infinite loops in lookup.
/external/llvm/lib/Analysis/
H A DLazyValueInfo.cpp320 /// entries, allowing us to do a lookup with a binary search.
339 /// recursive value lookup process.
383 ValueCacheEntryTy &lookup(Value *V) { function in class:__anon25688::LazyValueInfoCache
486 return lookup(Val)[BB];
493 ValueCacheEntryTy &Cache = lookup(Val);
/external/qemu/hw/android/goldfish/
H A Dpipe.c212 Pipe** lookup = pipe_list_findp_waked(list, pipe); local
213 Pipe* node = *lookup;
216 (*lookup) = node->next_waked;
974 Pipe** lookup = pipe_list_findp_channel(&dev->pipes, dev->channel); local
975 Pipe* pipe = *lookup;
1006 *lookup = pipe->next;
1353 Pipe** lookup; local
1359 lookup = pipe_list_findp_waked(&dev->signaled_pipes, pipe);
1360 if (!*lookup) {
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeVerticalData.cpp213 const LookupTable* lookup(uint16_t index, const SharedBuffer& buffer) const function in struct:blink::OpenType::LookupList
233 const LookupTable* lookup = lookups->lookup(lookupListIndex[i], buffer); local
234 if (!lookup || !lookup->getSubstitutions(map, buffer))
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashTable.h478 ValueType* lookup(KeyPeekInType key) { return lookup<IdentityTranslatorType, KeyPeekInType>(key); } function in class:WTF::HashTable
479 template<typename HashTranslator, typename T> ValueType* lookup(T);
480 template<typename HashTranslator, typename T> const ValueType* lookup(T) const;
636 inline Value* HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::lookup(T key) function in class:WTF::HashTable
638 return const_cast<Value*>(const_cast<const HashTable*>(this)->lookup<HashTranslator, T>(key));
643 inline const Value* HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits, Allocator>::lookup(T key) const function in class:WTF::HashTable
918 ValueType* entry = lookup<HashTranslator>(key);
929 ValueType* entry = const_cast<HashTable*>(this)->lookup<HashTranslator>(key);
940 return const_cast<HashTable*>(this)->lookup<HashTranslato
[all...]
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DSymtab.py298 # The outer_scope is the next scope in the lookup chain.
574 entry.type.namespace = self.outer_scope.lookup(self.name).type
743 entry = self.lookup(name)
764 def lookup(self, name): member in class:Scope
768 or (self.outer_scope and self.outer_scope.lookup(name))
784 entry = self.lookup(name)
793 method = obj_type.scope.lookup("operator%s" % operator)
798 function = self.lookup("operator%s" % operator)
870 def lookup(self, name, language_level=None): member in class:BuiltinScope
875 return Scope.lookup(sel
1038 def lookup(self, name): member in class:ModuleScope
1538 def lookup(self, name): member in class:LocalScope
1683 def lookup(self, name): member in class:ClassScope
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Drbt_pars.cpp149 virtual const UnicodeString* lookup(const UnicodeString& s) const;
182 const UnicodeString* ParseData::lookup(const UnicodeString& name) const { function in class:ParseData
227 // Note that we cannot use data.lookup() because the
242 // Note that we cannot use data.lookup() because the
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_asconf.c678 /* skip the lookup address parameter */
683 "handle_asconf: couldn't get lookup addr!\n");
688 offset += ntohs(p_addr->ph.param_length); /* skip lookup addr */
960 * without doing a new routing lookup and source address selection,
2394 SCTPDBG(SCTP_DEBUG_ASCONF1, "is_addr_pending: couldn't get lookup addr!\n");
2610 * it's simpler to fill in the asconf chunk header lookup address on
2632 /* save pointers to lookup address and asconf params */
2667 struct sctp_ipv6addr_param *lookup; local
2670 lookup = (struct sctp_ipv6addr_param *)lookup_ptr;
2671 lookup
2712 struct sctp_ipv6addr_param *lookup; local
[all...]
/external/chromium_org/v8/src/ic/
H A Dic.cc228 // If there is a getter, return; otherwise loop to perform the lookup.
612 // Named lookup in the object.
859 void LoadIC::UpdateCaches(LookupIterator* lookup) { argument
864 TRACE_IC("LoadIC", lookup->name());
869 if (lookup->state() == LookupIterator::JSPROXY ||
870 lookup->state() == LookupIterator::ACCESS_CHECK) {
872 } else if (!lookup->IsFound()) {
874 code = NamedLoadHandlerCompiler::ComputeLoadNonexistent(lookup->name(),
882 code = ComputeHandler(lookup);
885 PatchCache(lookup
897 ComputeHandler(LookupIterator* lookup, Handle<Object> value) argument
947 CompileHandler(LookupIterator* lookup, Handle<Object> unused, CacheHolderFlag cache_holder) argument
1402 UpdateCaches(LookupIterator* lookup, Handle<Object> value, JSReceiver::StoreFromKeyed store_mode) argument
1423 CompileHandler(LookupIterator* lookup, Handle<Object> value, CacheHolderFlag cache_holder) argument
[all...]
/external/clang/include/clang/AST/
H A DDeclBase.h92 /// identifiers. C++ describes lookup completely differently:
97 /// C++ can look into the "tag" namespace during ordinary lookup.
116 /// lookup in member expressions. In C++, they're found by
117 /// normal lookup.
149 /// C++ lexical operator lookup looks for these.
274 /// \brief Whether this declaration is hidden from normal name lookup, e.g.,
1035 /// storage added since the last lookup. In this case, \c LookupPtr's
1037 /// another lookup.
1040 /// \brief Pointer to the data structure used to lookup declarations
1217 /// information needed to perform name lookup int
1529 lookup_const_result lookup(DeclarationName Name) const { function in class:clang::DeclContext
[all...]

Completed in 521 milliseconds

123456789