Home
last modified time | relevance | path

Searched full:table (Results 1 – 25 of 21891) sorted by relevance

12345678910>>...876

/aosp_15_r20/external/jsoup/src/test/resources/fuzztests/
HD1697.html.gz ... template<table<table<table<table<table<table<table<table<table<< ...
HD1577.html.gz ... s<s<s<s<s<table><table><table><<caption ...
HD1611.html.gz
/aosp_15_r20/external/vulkan-validation-layers/layers/generated/
H A Dvk_dispatch_table_helper.h395 static inline void layer_init_device_dispatch_table(VkDevice device, VkLayerDispatchTable *table, P… in layer_init_device_dispatch_table() argument
396 memset(table, 0, sizeof(*table)); in layer_init_device_dispatch_table()
398 table->GetDeviceProcAddr = gpa; in layer_init_device_dispatch_table()
399 table->DestroyDevice = (PFN_vkDestroyDevice) gpa(device, "vkDestroyDevice"); in layer_init_device_dispatch_table()
400 table->GetDeviceQueue = (PFN_vkGetDeviceQueue) gpa(device, "vkGetDeviceQueue"); in layer_init_device_dispatch_table()
401 table->QueueSubmit = (PFN_vkQueueSubmit) gpa(device, "vkQueueSubmit"); in layer_init_device_dispatch_table()
402 table->QueueWaitIdle = (PFN_vkQueueWaitIdle) gpa(device, "vkQueueWaitIdle"); in layer_init_device_dispatch_table()
403 table->DeviceWaitIdle = (PFN_vkDeviceWaitIdle) gpa(device, "vkDeviceWaitIdle"); in layer_init_device_dispatch_table()
404 table->AllocateMemory = (PFN_vkAllocateMemory) gpa(device, "vkAllocateMemory"); in layer_init_device_dispatch_table()
405 table->FreeMemory = (PFN_vkFreeMemory) gpa(device, "vkFreeMemory"); in layer_init_device_dispatch_table()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRuntimeLibcallSignatures.cpp14 /// table providing type signatures for all runtime library functions that LLVM
97 std::vector<RuntimeLibcallSignature> Table; member
100 RuntimeLibcallSignatureTable() : Table(RTLIB::UNKNOWN_LIBCALL, unsupported) { in RuntimeLibcallSignatureTable()
102 Table[RTLIB::SHL_I16] = i16_func_i16_i16; in RuntimeLibcallSignatureTable()
103 Table[RTLIB::SHL_I32] = i32_func_i32_i32; in RuntimeLibcallSignatureTable()
104 Table[RTLIB::SHL_I64] = i64_func_i64_i64; in RuntimeLibcallSignatureTable()
105 Table[RTLIB::SHL_I128] = i64_i64_func_i64_i64_i32; in RuntimeLibcallSignatureTable()
106 Table[RTLIB::SRL_I16] = i16_func_i16_i16; in RuntimeLibcallSignatureTable()
107 Table[RTLIB::SRL_I32] = i32_func_i32_i32; in RuntimeLibcallSignatureTable()
108 Table[RTLIB::SRL_I64] = i64_func_i64_i64; in RuntimeLibcallSignatureTable()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
H A DWebAssemblyRuntimeLibcallSignatures.cpp14 /// table providing type signatures for all runtime library functions that LLVM
96 std::vector<RuntimeLibcallSignature> Table; member
99 RuntimeLibcallSignatureTable() : Table(RTLIB::UNKNOWN_LIBCALL, unsupported) { in RuntimeLibcallSignatureTable()
101 Table[RTLIB::SHL_I16] = i16_func_i16_i16; in RuntimeLibcallSignatureTable()
102 Table[RTLIB::SHL_I32] = i32_func_i32_i32; in RuntimeLibcallSignatureTable()
103 Table[RTLIB::SHL_I64] = i64_func_i64_i64; in RuntimeLibcallSignatureTable()
104 Table[RTLIB::SHL_I128] = i64_i64_func_i64_i64_i32; in RuntimeLibcallSignatureTable()
105 Table[RTLIB::SRL_I16] = i16_func_i16_i16; in RuntimeLibcallSignatureTable()
106 Table[RTLIB::SRL_I32] = i32_func_i32_i32; in RuntimeLibcallSignatureTable()
107 Table[RTLIB::SRL_I64] = i64_func_i64_i64; in RuntimeLibcallSignatureTable()
[all …]
/aosp_15_r20/external/armnn/docs/
H A D02_operator_list.dox15 Arm NN supports operators that are listed in below table.
41 <table>
63 <table>
72 </table>
80 <table>
85 </table>
93 <table>
97 </table>
120 <table>
128 </table>
[all …]
/aosp_15_r20/external/mesa3d/src/nouveau/vulkan/
H A Dnvk_descriptor_table.c14 struct nvk_descriptor_table *table, in nvk_descriptor_table_grow_locked() argument
22 assert(new_alloc > table->alloc && new_alloc <= table->max_alloc); in nvk_descriptor_table_grow_locked()
24 const uint32_t new_mem_size = new_alloc * table->desc_size; in nvk_descriptor_table_grow_locked()
32 if (table->mem) { in nvk_descriptor_table_grow_locked()
33 assert(new_mem_size >= table->mem->size_B); in nvk_descriptor_table_grow_locked()
34 memcpy(new_mem->map, table->mem->map, table->mem->size_B); in nvk_descriptor_table_grow_locked()
35 nvkmd_mem_unref(table->mem); in nvk_descriptor_table_grow_locked()
37 table->mem = new_mem; in nvk_descriptor_table_grow_locked()
39 assert((table->alloc % BITSET_WORDBITS) == 0); in nvk_descriptor_table_grow_locked()
42 BITSET_WORDS(table->alloc) * sizeof(BITSET_WORD); in nvk_descriptor_table_grow_locked()
[all …]
/aosp_15_r20/external/guava/guava-tests/test/com/google/common/collect/
H A DArrayTableTest.java26 import com.google.common.collect.Table.Cell;
47 ArrayTable<String, Integer, Character> table = in create() local
49 populate(table, data); in create()
50 return table; in create()
55 assertEquals(9, table.size()); in assertSize()
72 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); in testContains()
73 assertTrue(table.contains("foo", 1)); in testContains()
74 assertTrue(table.contains("bar", 1)); in testContains()
75 assertTrue(table.contains("foo", 3)); in testContains()
76 assertTrue(table.contains("foo", 2)); in testContains()
[all …]
H A DTableCollectionTest.java26 import com.google.common.collect.Table.Cell;
51 * Collection tests for {@link Table} implementations.
84 // Not testing rowKeySet() or columnKeySet() of Table.transformValues() in suite()
92 Table<String, Integer, Character> table = in suite()
94 populateForRowKeySet(table, elements); in suite()
95 return table.rowKeySet(); in suite()
112 Table<String, Integer, Character> table = HashBasedTable.create(); in suite()
113 populateForRowKeySet(table, elements); in suite()
114 return table.rowKeySet(); in suite()
127 TreeBasedTable<String, Integer, Character> table = TreeBasedTable.create(); in suite()
[all …]
/aosp_15_r20/external/guava/android/guava-tests/test/com/google/common/collect/
H A DArrayTableTest.java26 import com.google.common.collect.Table.Cell;
47 ArrayTable<String, Integer, Character> table = in create() local
49 populate(table, data); in create()
50 return table; in create()
55 assertEquals(9, table.size()); in assertSize()
72 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c'); in testContains()
73 assertTrue(table.contains("foo", 1)); in testContains()
74 assertTrue(table.contains("bar", 1)); in testContains()
75 assertTrue(table.contains("foo", 3)); in testContains()
76 assertTrue(table.contains("foo", 2)); in testContains()
[all …]
H A DTableCollectionTest.java26 import com.google.common.collect.Table.Cell;
51 * Collection tests for {@link Table} implementations.
84 // Not testing rowKeySet() or columnKeySet() of Table.transformValues() in suite()
92 Table<String, Integer, Character> table = in suite()
94 populateForRowKeySet(table, elements); in suite()
95 return table.rowKeySet(); in suite()
112 Table<String, Integer, Character> table = HashBasedTable.create(); in suite()
113 populateForRowKeySet(table, elements); in suite()
114 return table.rowKeySet(); in suite()
127 TreeBasedTable<String, Integer, Character> table = TreeBasedTable.create(); in suite()
[all …]
/aosp_15_r20/external/armnn/src/armnnSerializer/
H A DArmnnSchema.fbs66 table TensorInfo {
83 table ByteData {
87 table ShortData {
91 table IntData {
95 table LongData {
101 table ConstTensor {
106 table InputSlot {
111 table OutputSlot {
189 // Base layer table to be used as part of other layers
190 table LayerBase {
[all …]
/aosp_15_r20/external/autotest/database/
H A Dschema_129.sql19 -- Table structure for table `afe_aborted_host_queue_entries`
22 DROP TABLE IF EXISTS `afe_aborted_host_queue_entries`;
25 CREATE TABLE `afe_aborted_host_queue_entries` (
37 -- Table structure for table `afe_acl_groups`
40 DROP TABLE IF EXISTS `afe_acl_groups`;
43 CREATE TABLE `afe_acl_groups` (
52 -- Table structure for table `afe_acl_groups_hosts`
55 DROP TABLE IF EXISTS `afe_acl_groups_hosts`;
58 CREATE TABLE `afe_acl_groups_hosts` (
71 -- Table structure for table `afe_acl_groups_users`
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/python/kernel_tests/data_structures/
H A Dlookup_ops_test.py73 def initialize_table(self, table): argument
75 self.evaluate(table.initializer)
80 "creation op (e.g. AnonymousHashTable) which will create a new table "
96 table = self.getHashTable()(
100 self.assertEqual(table._is_anonymous, is_anonymous)
101 self.initialize_table(table)
103 self.assertAllEqual(3, self.evaluate(table.size()))
106 output = table.lookup(input_string)
112 exported_keys_tensor, exported_values_tensor = table.export()
124 table = self.getHashTable()(
[all …]
/aosp_15_r20/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/data/measurement/
DMeasurementTables.java26 * Container class for Measurement PPAPI table definitions and constants.
33 * Array of all Measurement related tables. The AdTechUrls table is not included in the
39 MeasurementTables.SourceContract.TABLE,
40 MeasurementTables.SourceDestination.TABLE,
41 SourceAttributionScopeContract.TABLE,
42 SourceNamedBudgetContract.TABLE,
43 MeasurementTables.TriggerContract.TABLE,
44 MeasurementTables.EventReportContract.TABLE,
45 MeasurementTables.AggregateReport.TABLE,
46 MeasurementTables.AggregateEncryptionKey.TABLE,
[all …]
/aosp_15_r20/external/angle/src/third_party/volk/
H A Dvolk.c52 static void volkGenLoadDeviceTable(struct VolkDeviceTable* table, void* context, PFN_vkVoidFunction…
189 void volkLoadDeviceTable(struct VolkDeviceTable* table, VkDevice device) in volkLoadDeviceTable() argument
191 volkGenLoadDeviceTable(table, device, vkGetDeviceProcAddrStub); in volkLoadDeviceTable()
1279 static void volkGenLoadDeviceTable(struct VolkDeviceTable* table, void* context, PFN_vkVoidFunction… in volkGenLoadDeviceTable() argument
1283table->vkAllocateCommandBuffers = (PFN_vkAllocateCommandBuffers)load(context, "vkAllocateCommandBu… in volkGenLoadDeviceTable()
1284table->vkAllocateDescriptorSets = (PFN_vkAllocateDescriptorSets)load(context, "vkAllocateDescripto… in volkGenLoadDeviceTable()
1285 table->vkAllocateMemory = (PFN_vkAllocateMemory)load(context, "vkAllocateMemory"); in volkGenLoadDeviceTable()
1286 table->vkBeginCommandBuffer = (PFN_vkBeginCommandBuffer)load(context, "vkBeginCommandBuffer"); in volkGenLoadDeviceTable()
1287 table->vkBindBufferMemory = (PFN_vkBindBufferMemory)load(context, "vkBindBufferMemory"); in volkGenLoadDeviceTable()
1288 table->vkBindImageMemory = (PFN_vkBindImageMemory)load(context, "vkBindImageMemory"); in volkGenLoadDeviceTable()
[all …]
/aosp_15_r20/out/soong/.intermediates/packages/modules/GeoTZ/s2storage/s2storage_ro/android_common/turbine/
Ds2storage_ro.jarcom/android/storage/block/read/Block$BlockVisitor.class <Unknown> package ...
/aosp_15_r20/external/perfetto/src/trace_processor/db/
H A Dquery_executor_benchmark.cc35 #include "src/trace_processor/db/table.h"
243 SliceTableForBenchmark& table, in BenchmarkSliceTableFilter() argument
248 benchmark::DoNotOptimize(table.table_.FilterToIterator(q)); in BenchmarkSliceTableFilter()
251 benchmark::Counter(static_cast<double>(table.table_.row_count()), in BenchmarkSliceTableFilter()
255 benchmark::Counter(CountRows(table.table_.FilterToIterator(q)), in BenchmarkSliceTableFilter()
261 SliceTableForBenchmark& table, in BenchmarkSliceTableSort() argument
264 benchmark::DoNotOptimize(table.table_.Sort(ob)); in BenchmarkSliceTableSort()
267 benchmark::Counter(static_cast<double>(table.table_.row_count()), in BenchmarkSliceTableSort()
274 ExpectedFrameTimelineTableForBenchmark& table, in BenchmarkExpectedFrameTableQuery() argument
277 benchmark::DoNotOptimize(table.table_.FilterToIterator(q)); in BenchmarkExpectedFrameTableQuery()
[all …]
/aosp_15_r20/external/freetype/src/base/
H A Dftdbgmem.c226 ft_mem_table_alloc( FT_MemTable table, in ft_mem_table_alloc() argument
229 FT_Memory memory = table->memory; in ft_mem_table_alloc()
233 memory->user = table->memory_user; in ft_mem_table_alloc()
234 block = table->alloc( memory, size ); in ft_mem_table_alloc()
235 memory->user = table; in ft_mem_table_alloc()
242 ft_mem_table_free( FT_MemTable table, in ft_mem_table_free() argument
245 FT_Memory memory = table->memory; in ft_mem_table_free()
248 memory->user = table->memory_user; in ft_mem_table_free()
249 table->free( memory, block ); in ft_mem_table_free()
250 memory->user = table; in ft_mem_table_free()
[all …]
/aosp_15_r20/external/ComputeLibrary/docs/user_guide/
H A Doperator_list.dox33 Compute Library supports operators that are listed in below table.
60 <table>
88 <table>
95 </table>
103 <table>
110 </table>
125 <table>
132 </table>
140 <table>
147 </table>
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202302/MdePkg/Include/IndustryStandard/
H A DTpm20.h22 // Table 205 - Defines for SHA1 Hash Values
26 // Table 206 - Defines for SHA256 Hash Values
30 // Table 207 - Defines for SHA384 Hash Values
34 // Table 208 - Defines for SHA512 Hash Values
38 // Table 209 - Defines for SM3_256 Hash Values
42 // Table 210 - Defines for Architectural Limits Values
47 // Table 211 - Defines for Logic Values
53 // Table 215 - Defines for RSA Algorithm Constants
57 // Table 216 - Defines for ECC Algorithm Constants
61 // Table 217 - Defines for AES Algorithm Constants
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202111/MdePkg/Include/IndustryStandard/
H A DTpm20.h23 // Table 205 - Defines for SHA1 Hash Values
27 // Table 206 - Defines for SHA256 Hash Values
31 // Table 207 - Defines for SHA384 Hash Values
35 // Table 208 - Defines for SHA512 Hash Values
39 // Table 209 - Defines for SM3_256 Hash Values
43 // Table 210 - Defines for Architectural Limits Values
48 // Table 211 - Defines for Logic Values
54 // Table 215 - Defines for RSA Algorithm Constants
58 // Table 216 - Defines for ECC Algorithm Constants
62 // Table 217 - Defines for AES Algorithm Constants
[all …]
/aosp_15_r20/external/coreboot/src/vendorcode/intel/edk2/edk2-stable202005/MdePkg/Include/IndustryStandard/
H A DTpm20.h23 // Table 205 - Defines for SHA1 Hash Values
27 // Table 206 - Defines for SHA256 Hash Values
31 // Table 207 - Defines for SHA384 Hash Values
35 // Table 208 - Defines for SHA512 Hash Values
39 // Table 209 - Defines for SM3_256 Hash Values
43 // Table 210 - Defines for Architectural Limits Values
48 // Table 211 - Defines for Logic Values
54 // Table 215 - Defines for RSA Algorithm Constants
58 // Table 216 - Defines for ECC Algorithm Constants
62 // Table 217 - Defines for AES Algorithm Constants
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/core/function/polymorphism/
H A Dtype_dispatch_test.py62 table = type_dispatch.TypeDispatchTable()
63 table.add_target(MockShape(None, None, None))
64 table.add_target(MockShape(None, None, 1))
65 table.add_target(MockShape(None, 1, 1))
66 table.add_target(MockShape(1, 1, 1))
68 list(table.targets), [
76 table = type_dispatch.TypeDispatchTable()
77 table.add_target(MockShape(1,))
78 table.add_target(MockShape(1, 2))
79 table.add_target(MockShape(1, 2, 3))
[all …]

12345678910>>...876