Home
last modified time | relevance | path

Searched defs:lookup (Results 1 – 25 of 434) sorted by relevance

12345678910>>...18

/external/tensorflow/tensorflow/security/advisory/
Dtfsa-2021-090.md3 ### CVE Number
6 ### Impact
18 ### Patches
26 ### For more information
32 ### Attribution
/external/rust/crates/jni/src/wrapper/descriptors/
Dexception_desc.rs16 fn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>> { in lookup() function
26 fn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>> { in lookup() method
32 fn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>> { in lookup() method
38 fn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>> { in lookup() method
44 fn lookup(self, env: &JNIEnv<'a>) -> Result<JThrowable<'a>> { in lookup() method
Dclass_desc.rs13 fn lookup(self, env: &JNIEnv<'a>) -> Result<JClass<'a>> { in lookup() function
19 fn lookup(self, env: &JNIEnv<'a>) -> Result<JClass<'a>> { in lookup() method
26 fn lookup(self, _: &JNIEnv<'a>) -> Result<JClass<'b>> { in lookup() method
36 fn lookup(self, _: &JNIEnv<'a>) -> Result<JClass<'b>> { in lookup() function
Dmethod_desc.rs15 fn lookup(self, env: &JNIEnv<'a>) -> Result<JMethodID<'a>> { in lookup() function
25 fn lookup(self, env: &JNIEnv<'a>) -> Result<JMethodID<'a>> { in lookup() function
36 fn lookup(self, env: &JNIEnv<'a>) -> Result<JStaticMethodID<'a>> { in lookup() function
Ddesc.rs10 fn lookup(self, _: &JNIEnv<'a>) -> Result<T>; in lookup() method
14 fn lookup(self, _: &JNIEnv<'a>) -> Result<T> { in lookup() method
Dfield_desc.rs15 fn lookup(self, env: &JNIEnv<'a>) -> Result<JFieldID<'a>> { in lookup() function
26 fn lookup(self, env: &JNIEnv<'a>) -> Result<JStaticFieldID<'a>> { in lookup() function
/external/tensorflow/tensorflow/lite/kernels/
Dembedding_lookup.cc49 const TfLiteTensor* lookup; in Prepare() local
71 const TfLiteTensor* lookup, const TfLiteTensor* value, in EvalSimple()
101 const TfLiteTensor* lookup, const TfLiteTensor* value, in EvalHybrid()
139 const TfLiteTensor* lookup; in Eval() local
/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DAbstractAttributeView.java31 private final FileLookup lookup; field in AbstractAttributeView
33 protected AbstractAttributeView(FileLookup lookup) { in AbstractAttributeView()
/external/rust/crates/itertools/tests/
Dquick.rs1090 let lookup = a.into_iter().map(|i| (i % modulo, i)).into_group_map(); localVariable
1229 let lookup = a.iter() localVariable
1277 let lookup = a.iter().map(|&b| b as u64) // Avoid overflows localVariable
1300 let lookup = a.iter().map(|&b| b as u64) // Avoid overflows localVariable
1332 let lookup = a.iter().copied().into_grouping_map_by(|i| i % modulo).max(); localVariable
1349 …let lookup = a.iter().copied().into_grouping_map_by(|i| i % modulo).max_by(|_, v1, v2| v1.cmp(v2)); localVariable
1366 … let lookup = a.iter().copied().into_grouping_map_by(|i| i % modulo).max_by_key(|_, &val| val); localVariable
1383 let lookup = a.iter().copied().into_grouping_map_by(|i| i % modulo).min(); localVariable
1400 …let lookup = a.iter().copied().into_grouping_map_by(|i| i % modulo).min_by(|_, v1, v2| v1.cmp(v2)); localVariable
1417 … let lookup = a.iter().copied().into_grouping_map_by(|i| i % modulo).min_by_key(|_, &val| val); localVariable
[all …]
/external/skia/tests/graphite/
DUniformCacheTest.cpp67 SkUniformBlock* lookup = cache->lookup(result1); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() local
80 SkUniformBlock* lookup = cache->lookup(result2); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() local
94 SkUniformBlock* lookup = cache->lookup(result3); in DEF_GRAPHITE_TEST_FOR_CONTEXTS() local
/external/rust/crates/quiche/deps/boringssl/src/crypto/x509/
Dx509_d2.c64 X509_LOOKUP *lookup; in X509_STORE_set_default_paths() local
85 X509_LOOKUP *lookup; in X509_STORE_load_locations() local
/external/llvm/test/ExecutionEngine/RuntimeDyld/PowerPC/
Dppc32_elf_rel_addr16.s5 .globl lookup symbol
8 lookup: # @lookup label
/external/boringssl/src/crypto/x509/
Dx509_d2.c64 X509_LOOKUP *lookup; in X509_STORE_set_default_paths() local
85 X509_LOOKUP *lookup; in X509_STORE_load_locations() local
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DSubclassInjectionLoader.java40 Object lookup = methodHandles.getMethod("lookup").invoke(null); in tryLookup() local
59 private final Object lookup; field in SubclassInjectionLoader.WithLookup
65 WithLookup(Object lookup, Object codegenLookup, Method privateLookupIn) { in WithLookup()
/external/guice/core/src/com/google/inject/internal/
DLookupProcessor.java37 public <T> Boolean visit(MembersInjectorLookup<T> lookup) { in visit()
50 public <T> Boolean visit(ProviderLookup<T> lookup) { in visit()
DDeferredLookups.java51 ProviderLookup<T> lookup = new ProviderLookup<>(key, key); in getProvider() local
58 MembersInjectorLookup<T> lookup = new MembersInjectorLookup<>(type, type); in getMembersInjector() local
/external/dokka/core/src/main/kotlin/Utilities/
DServiceLocator.kt15 fun <T : Any> lookup(clazz: Class<T>, category: String, implementationName: String): T { in <lambda>() method
20 fun <T : Any> lookup( in <lambda>() method
90 inline fun <reified T : Any> ServiceLocator.lookup(category: String, implementationName: String): T… in lookup() method
91 inline fun <reified T : Any> ServiceLocator.lookup(desc: ServiceDescriptor): T = lookup(T::class.ja… in lookup() method
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DAtomicOrdering.h90 static const bool lookup[8][8] = { in isStrongerThan() local
105 static const bool lookup[8][8] = { in isAtLeastOrStrongerThan() local
136 static const AtomicOrderingCABI lookup[8] = { in toCABI() local
/external/llvm/include/llvm/Support/
DAtomicOrdering.h91 static const bool lookup[8][8] = { in isStrongerThan() local
107 static const bool lookup[8][8] = { in isAtLeastOrStrongerThan() local
138 static const AtomicOrderingCABI lookup[8] = { in toCABI() local
/external/javassist/src/test/test4/
DInvokeDyn.java12 MethodHandles.Lookup lookup = MethodHandles.lookup(); in boot() local
21 MethodHandles.Lookup lookup = MethodHandles.lookup(); in boot2() local
/external/protobuf/src/google/protobuf/stubs/
Dstringpiece.cc172 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_of() local
189 bool lookup[UCHAR_MAX + 1] = { false }; in find_first_not_of() local
217 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_of() local
238 bool lookup[UCHAR_MAX + 1] = { false }; in find_last_not_of() local
/external/mesa3d/src/freedreno/vulkan/
Dtu_util.h78 static const uint8_t lookup[] = { in tu6_rop() local
103 static const uint8_t lookup[] = { in tu6_primtype() local
136 static const uint8_t lookup[] = { in tu6_blend_factor() local
189 uint8_t lookup[] = { in tu6_tex_wrap() local
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DTestAttributeProvider.java100 FileLookup lookup, ImmutableMap<String, FileAttributeView> inheritedViews) { in view()
116 private final FileLookup lookup; field in TestAttributeProvider.View
119 public View(FileLookup lookup, BasicFileAttributeView basicView) { in View()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/std/
DEnumDeserializer.java212 … CompactStringObjectMap lookup = ctxt.isEnabled(DeserializationFeature.READ_ENUMS_USING_TO_STRING) in deserialize() local
231 CompactStringObjectMap lookup, String name) throws IOException in _deserializeAltString()
291 CompactStringObjectMap lookup = _lookupByToString; in _getToStringLookup() local
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
DInjectedClassRuntime.java100 static Lookup lookup() throws Exception { in lookup() method in InjectedClassRuntime.Lookup
117 final Lookup lookup) throws Exception { in privateLookupIn()

12345678910>>...18