Searched defs:lookup (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/av/include/media/stagefright/foundation/
H A DALookup.h30 bool lookup(const T& from, U *to) const;
34 inline bool map(const T& from, V *to) const { return lookup(from, to); }
49 bool ALookup<T, U>::lookup(const T& from, U *to) const { function in class:android::ALookup
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DALookup.h30 bool lookup(const T& from, U *to) const;
34 inline bool map(const T& from, V *to) const { return lookup(from, to); }
49 bool ALookup<T, U>::lookup(const T& from, U *to) const { function in class:android::ALookup
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DALookup.h30 bool lookup(const T& from, U *to) const;
34 inline bool map(const T& from, V *to) const { return lookup(from, to); }
49 bool ALookup<T, U>::lookup(const T& from, U *to) const { function in class:android::ALookup
/frameworks/ml/nn/runtime/test/generated/models/
H A Dhashtable_lookup_float.model.cpp9 auto lookup = model->addOperand(&type0); local
15 model->addOperation(ANEURALNETWORKS_HASHTABLE_LOOKUP, {lookup, key, value}, {output, hits});
18 {lookup, key, value},
H A Dhashtable_lookup_float_relaxed.model.cpp9 auto lookup = model->addOperand(&type0); local
15 model->addOperation(ANEURALNETWORKS_HASHTABLE_LOOKUP, {lookup, key, value}, {output, hits});
18 {lookup, key, value},
H A Dhashtable_lookup_quant8.model.cpp9 auto lookup = model->addOperand(&type0); local
15 model->addOperation(ANEURALNETWORKS_HASHTABLE_LOOKUP, {lookup, key, value}, {output, hits});
18 {lookup, key, value},
H A Dlsh_projection.model.cpp10 auto lookup = model->addOperand(&type1); local
19 model->addOperation(ANEURALNETWORKS_LSH_PROJECTION, {hash, lookup, weight, type_param}, {output});
22 {lookup, weight},
H A Dlsh_projection_2.model.cpp10 auto lookup = model->addOperand(&type1); local
19 model->addOperation(ANEURALNETWORKS_LSH_PROJECTION, {hash, lookup, weight, type_param}, {output});
22 {lookup, weight},
H A Dlsh_projection_2_relaxed.model.cpp10 auto lookup = model->addOperand(&type1); local
19 model->addOperation(ANEURALNETWORKS_LSH_PROJECTION, {hash, lookup, weight, type_param}, {output});
22 {lookup, weight},
H A Dlsh_projection_relaxed.model.cpp10 auto lookup = model->addOperand(&type1); local
19 model->addOperation(ANEURALNETWORKS_LSH_PROJECTION, {hash, lookup, weight, type_param}, {output});
22 {lookup, weight},
H A Dlsh_projection_weights_as_inputs.model.cpp10 auto lookup = model->addOperand(&type1); local
17 model->addOperation(ANEURALNETWORKS_LSH_PROJECTION, {hash, lookup, weight, type_param}, {output});
20 {hash, lookup, weight},
H A Dlsh_projection_weights_as_inputs_relaxed.model.cpp10 auto lookup = model->addOperand(&type1); local
17 model->addOperation(ANEURALNETWORKS_LSH_PROJECTION, {hash, lookup, weight, type_param}, {output});
20 {hash, lookup, weight},
/frameworks/av/drm/libmediadrm/
H A DSharedLibrary.cpp42 void *SharedLibrary::lookup(const char *symbol) const { function in class:android::SharedLibrary
/frameworks/base/cmds/incidentd/src/
H A DPrivacy.cpp28 const Privacy* lookup(const Privacy* p, uint32_t fieldId) { function in namespace:android::os::incidentd
/frameworks/base/core/java/android/text/method/
H A DDialerKeyListener.java52 * Overrides the superclass's lookup method to prefer the number field
55 protected int lookup(KeyEvent event, Spannable content) { method in class:DialerKeyListener
61 * valid and the meta lookup does not.
69 int match = super.lookup(event, content);
75 * If a meta key is active but the lookup with the meta key
/frameworks/minikin/libs/minikin/
H A DHyphenatorMap.h48 // The Hyphenator lookup works with the following rules:
55 static const Hyphenator* lookup(const Locale& locale) { function in class:minikin::HyphenatorMap
/frameworks/ml/nn/runtime/test/specs/V1_0/
H A Dhashtable_lookup_float.mod.py29 lookup = Input("lookup", "TENSOR_INT32", "{%d}" % lookups) variable
34 model = model.Operation("HASHTABLE_LOOKUP", lookup, key, value).To([output, hits])
36 input0 = {lookup: [1234, -292, -11, 0],
H A Dhashtable_lookup_quant8.mod.py29 lookup = Input("lookup", "TENSOR_INT32", "{%d}" % (lookups)) variable
34 model = model.Operation("HASHTABLE_LOOKUP", lookup, key, value).To([output, hits])
36 input0 = {lookup: [123, 250, 255, 0],
H A Dlsh_projection.mod.py25 lookup = Input("lookup", "TENSOR_INT32", "{%d, %d}" % (num_input, num_bits)) variable
29 model = model.Operation("LSH_PROJECTION", hhash, lookup, weight,
34 lookup: [12345, 54321, 67890, 9876, -12345678, -87654321],
H A Dlsh_projection_2.mod.py25 lookup = Input("lookup", "TENSOR_INT32", "{%d, %d}" % (num_input, num_bits)) variable
29 model = model.Operation("LSH_PROJECTION", hhash, lookup, weight,
35 lookup: [12345, 54321, 67890, 9876, -12345678, -87654321],
H A Dlsh_projection_weights_as_inputs.mod.py24 lookup = Input("lookup", "TENSOR_INT32", "{%d, %d}" % (num_input, num_bits)) variable
28 model = model.Operation("LSH_PROJECTION", hhash, lookup, weight, type_param).To(output)
30 input0 = {lookup: [12345, 54321, 67890, 9876, -12345678, -87654321],
/frameworks/ml/nn/runtime/test/specs/V1_1/
H A Dhashtable_lookup_float_relaxed.mod.py29 lookup = Input("lookup", "TENSOR_INT32", "{%d}" % lookups) variable
34 model = model.Operation("HASHTABLE_LOOKUP", lookup, key, value).To([output, hits])
37 input0 = {lookup: [1234, -292, -11, 0],
H A Dlsh_projection_2_relaxed.mod.py25 lookup = Input("lookup", "TENSOR_INT32", "{%d, %d}" % (num_input, num_bits)) variable
29 model = model.Operation("LSH_PROJECTION", hhash, lookup, weight,
36 lookup: [12345, 54321, 67890, 9876, -12345678, -87654321],
H A Dlsh_projection_relaxed.mod.py25 lookup = Input("lookup", "TENSOR_INT32", "{%d, %d}" % (num_input, num_bits)) variable
29 model = model.Operation("LSH_PROJECTION", hhash, lookup, weight,
35 lookup: [12345, 54321, 67890, 9876, -12345678, -87654321],
H A Dlsh_projection_weights_as_inputs_relaxed.mod.py24 lookup = Input("lookup", "TENSOR_INT32", "{%d, %d}" % (num_input, num_bits)) variable
28 model = model.Operation("LSH_PROJECTION", hhash, lookup, weight, type_param).To(output)
31 input0 = {lookup: [12345, 54321, 67890, 9876, -12345678, -87654321],

Completed in 298 milliseconds

12