Home
last modified time | relevance | path

Searched refs:table (Results 1 – 25 of 37) sorted by relevance

12

/tf-a-ffa_el3_spmc/lib/zlib/
A Dinftrees.c32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work) in inflate_table() argument
36 code FAR * FAR *table;
121 *(*table)++ = here; /* make a table to force an error */
122 *(*table)++ = here;
201 next = *table; /* current table to fill in */
284 (*table)[low].op = (unsigned char)curr;
285 (*table)[low].bits = (unsigned char)root;
286 (*table)[low].val = (unsigned short)(next - *table);
301 *table += used;
A Dzutil.c209 local ptr_table table[MAX_PTR]; variable
234 table[next_ptr].org_ptr = buf; in zcalloc()
239 table[next_ptr++].new_ptr = buf; in zcalloc()
255 if (ptr != table[n].new_ptr) continue; in zcfree()
257 farfree(table[n].org_ptr); in zcfree()
259 table[n-1] = table[n]; in zcfree()
A Dinftrees.h61 unsigned codes, code FAR * FAR *table,
A Dcrc32.c165 local void write_table(out, table) in write_table() argument
167 const z_crc_t FAR *table;
173 (unsigned long)(table[n]),
/tf-a-ffa_el3_spmc/docs/_static/css/
A Dcustom.css10 * a table will collapse into a single whitespace,
13 .wy-table-responsive table td {
/tf-a-ffa_el3_spmc/docs/components/
A Dromlib-design.rst12 ROM. The "library at ROM" contains a jump table with the list of functions that
49 table. Also, for additional flexibility and modularity, the index file can
63 BL image --> wrapper function --> jump table entry --> library at ROM
65 The index file is used to create a jump table which is placed in ROM. Then, the
66 wrappers refer to the jump table to call the "library at ROM" functions. The
67 wrappers essentially contain a branch instruction to the jump table entry
80 1. ``romlib_generate.py gentbl [args]`` - Generates the jump table by parsing
83 2. ``romlib_generator.py genvar [args]`` - Generates the jump table global
84 variable (**not** the jump table itself) with the absolute address in ROM.
85 This global variable is, basically, a pointer to the jump table.
A Dxlat-tables-lib-v2-design.rst79 The granularity controls the translation table level to go down to when mapping
84 - using a single level-2 translation table entry;
85 - using a level-2 intermediate entry to a level-3 translation table (which
92 here, a level-3 table will need to be allocated on the fly and the level-2
93 modified to point to this new level-3 table. This has a performance cost at
139 excluding the initial lookup level translation table, which is always
148 translation table : the library will allocate as many entries as is required
352 The most common reason for needing a sub-table is when a specific mapping
362 on the page size, levels 0 and 1 of translation may only allow table
384 that uses the changed translation table entries.
[all …]
/tf-a-ffa_el3_spmc/lib/xlat_tables/aarch32/
A Dnonlpae_tables.c396 uint32_t *table, in init_xlation_table_inner() argument
408 VERBOSE("init xlat table at %p (level%1u)\n", (void *)table, level); in init_xlation_table_inner()
451 if (*table) { in init_xlation_table_inner()
452 assert((*table & 3) == SECTION_PT_PT); in init_xlation_table_inner()
453 assert(((*table & SECTION_PT_NOTSECURE) == 0U) in init_xlation_table_inner()
456 xlat_table = (*table) & in init_xlation_table_inner()
458 desc = *table; in init_xlation_table_inner()
482 *table++ = desc; in init_xlation_table_inner()
/tf-a-ffa_el3_spmc/lib/romlib/
A Djmptbl.i10 # Holes can be introduced in the table by using a special keyword "reserved".
13 # The jump table will contain an invalid instruction instead of branch
/tf-a-ffa_el3_spmc/plat/mediatek/common/
A Dmtk_cirq.c200 cirq_all_events.table[cirq_reg].mask |= mask; in collect_all_wakeup_events()
211 cirq_all_events.table[cirq_reg].pol |= mask; in collect_all_wakeup_events()
219 cirq_all_events.table[cirq_reg].sen |= mask; in collect_all_wakeup_events()
222 cirq_all_events.table[cirq_reg].used = 1U; in collect_all_wakeup_events()
223 cirq_all_events.table[cirq_reg].reg_num = cirq_reg; in collect_all_wakeup_events()
319 reg = &cirq_all_events.table[i]; in __cirq_fast_clone()
504 reg = &cirq_all_events.table[i]; in cirq_fast_sw_flush()
A Dmtk_cirq.h116 struct cirq_reg table[CIRQ_REG_NUM]; member
/tf-a-ffa_el3_spmc/lib/xlat_tables/
A Dxlat_tables_private.h37 void init_xlation_table(uintptr_t base_va, uint64_t *table,
A Dxlat_tables_common.c326 uint64_t *table, in init_xlation_table_inner() argument
391 *table++ = desc; in init_xlation_table_inner()
399 void init_xlation_table(uintptr_t base_va, uint64_t *table, in init_xlation_table() argument
414 init_xlation_table_inner(mmap, base_va, table, level); in init_xlation_table()
/tf-a-ffa_el3_spmc/lib/xlat_tables_v2/
A Dxlat_tables_utils.c270 uint64_t *table; in find_xlat_table_entry() local
275 table = xlat_table_base; in find_xlat_table_entry()
290 desc = table[idx]; in find_xlat_table_entry()
305 return &table[idx]; in find_xlat_table_entry()
310 return &table[idx]; in find_xlat_table_entry()
314 table = (uint64_t *)(uintptr_t)(desc & TABLE_ADDR_MASK); in find_xlat_table_entry()
A Dxlat_tables_core.c43 static int xlat_table_get_index(const xlat_ctx_t *ctx, const uint64_t *table) in xlat_table_get_index() argument
46 if (ctx->tables[i] == table) in xlat_table_get_index()
70 const uint64_t *table) in xlat_table_inc_regions_count() argument
72 int idx = xlat_table_get_index(ctx, table); in xlat_table_inc_regions_count()
79 const uint64_t *table) in xlat_table_dec_regions_count() argument
81 int idx = xlat_table_get_index(ctx, table); in xlat_table_dec_regions_count()
87 static bool xlat_table_is_empty(const xlat_ctx_t *ctx, const uint64_t *table) in xlat_table_is_empty() argument
89 return ctx->tables_mapped_regions[xlat_table_get_index(ctx, table)] == 0; in xlat_table_is_empty()
/tf-a-ffa_el3_spmc/drivers/nxp/auth/csf_hdr_parser/
A Dinput_bl2_ch234 # Specify SG table address, only for (2041/3041/4080/5020/5040) with ESBC=0 - [Optional]
60 # Specify the file names of csf header and sg table. (Default :hdr.out) [Optional]
71 # Specify the output file name of sg table. (Default :sg_table.out). [Optional]
/tf-a-ffa_el3_spmc/docs/plat/
A Dindex.rst51 In addition to the platforms ports listed within the table of contents, there
A Dhikey.rst72 - Generate l-loader.bin and partition table for aosp. The eMMC capacity is either 8GB or 4GB. Just…
/tf-a-ffa_el3_spmc/docs/components/spd/
A Dtlk-dispatcher.rst48 • Page table management
/tf-a-ffa_el3_spmc/docs/
A Dglossary.rst215 Translation (abbr.). For example, "XLAT table".
/tf-a-ffa_el3_spmc/docs/plat/marvell/armada/
A Dporting.rst140 …- if different comphy index is used for specific feature, move it to proper table entry and then a…
143 The final table size with comphy parameters can be different, depending
/tf-a-ffa_el3_spmc/docs/threat_model/
A Dthreat_model.rst42 .. table:: Table 1: TF-A Data Flow Diagram Description
90 .. table:: Table 2: TF-A Assets
114 .. table:: Table 3: Threat Agents
156 .. table:: Table 4: Rating and score as applied to impact and likelihood
204 the finding's overall risk level, as shown in the following table.
206 .. table:: Table 5: Overall risk levels and corresponding aggregate scores
/tf-a-ffa_el3_spmc/plat/nvidia/tegra/scat/
A Dbl31.scat74 * security. GOT is a table of addresses so ensure 8-byte alignment.
/tf-a-ffa_el3_spmc/drivers/nxp/ddr/nxp-ddr/
A Dddr.c271 const static struct dynamic_odt *table[2][5] = { in cal_odt() local
281 pdodt = table[dimm_slot_per_ctrl - 1][pdimm->n_ranks - 1]; in cal_odt()
/tf-a-ffa_el3_spmc/docs/security_advisories/
A Dsecurity-advisory-tfv-3.rst24 The translation table library in ARM Trusted Firmware (TF) (under

Completed in 31 milliseconds

12