Home
last modified time | relevance | path

Searched full:name (Results 1 – 25 of 819) sorted by relevance

12345678910>>...33

/optee_os/core/arch/arm/dts/
H A Dstm32mp23-st-scmi-cfg.dtsi34 domain-name = "ck_icn_hs_mcu";
40 domain-name = "ck_icn_sdmmc";
46 domain-name = "ck_icn_ddr";
52 domain-name = "ck_icn_display";
58 domain-name = "ck_icn_hsl";
64 domain-name = "ck_icn_nic";
70 domain-name = "ck_icn_vid";
76 domain-name = "ck_flexgen_07";
82 domain-name = "ck_flexgen_08";
88 domain-name = "ck_flexgen_09";
[all …]
H A Dstm32mp25-st-scmi-cfg.dtsi34 domain-name = "ck_icn_hs_mcu";
40 domain-name = "ck_icn_sdmmc";
46 domain-name = "ck_icn_ddr";
52 domain-name = "ck_icn_display";
58 domain-name = "ck_icn_hsl";
64 domain-name = "ck_icn_nic";
70 domain-name = "ck_icn_vid";
76 domain-name = "ck_flexgen_07";
82 domain-name = "ck_flexgen_08";
88 domain-name = "ck_flexgen_09";
[all …]
H A Dstm32mp21-st-scmi-cfg.dtsi34 domain-name = "ck_icn_hs_mcu";
40 domain-name = "ck_icn_sdmmc";
46 domain-name = "ck_icn_ddr";
52 domain-name = "ck_icn_display";
58 domain-name = "ck_icn_hsl";
64 domain-name = "ck_icn_nic";
70 domain-name = "ck_flexgen_07";
76 domain-name = "ck_flexgen_08";
82 domain-name = "ck_flexgen_09";
88 domain-name = "ck_flexgen_10";
[all …]
/optee_os/lib/libutils/ext/include/
H A Dasm.S27 .macro FUNC name colon section=default align=4 _bti=default
29 .section .text.\name
33 .global \name
34 .type \name , %function
36 \name \colon
43 .macro LOCAL_FUNC name colon section=default align=4 _bti=default
45 .section .text.\name
49 .type \name , %function
51 \name \colon
58 .macro WEAK_FUNC name colon section=default align=4 _bti=default
[all …]
H A Dbitstring.h17 * 4. Neither the name of the University nor the names of its contributors
60 #define bit_decl(name, nbits) \ argument
61 ((name)[bitstr_size(nbits)])
63 /* is bit N of bitstring name set? */
64 #define bit_test(name, bit) \ argument
65 ((name)[_bit_byte(bit)] & _bit_mask(bit))
67 /* set bit N of bitstring name */
68 #define bit_set(name, bit) \ argument
69 ((name)[_bit_byte(bit)] |= _bit_mask(bit))
71 /* clear bit N of bitstring name */
[all …]
/optee_os/core/drivers/clk/sam/
H A Dsama7g5_clk.c94 const char *name; member
109 .name = "cpupll_fracck",
121 .name = "cpupll_divpmcck",
139 .name = "syspll_fracck",
152 .name = "syspll_divpmcck",
168 .name = "ddrpll_fracck",
180 .name = "ddrpll_divpmcck",
193 .name = "imgpll_fracck",
201 .name = "imgpll_divpmcck",
213 .name = "baudpll_fracck",
[all …]
H A Dat91_clk.h136 const char *name);
139 struct clk *pmc_register_main_rc_osc(struct pmc_data *pmc, const char *name,
142 struct clk *pmc_register_main_osc(struct pmc_data *pmc, const char *name,
146 const char *name,
152 at91_clk_register_pll(struct pmc_data *pmc, const char *name,
158 at91_clk_register_plldiv(struct pmc_data *pmc, const char *name,
162 const char *name,
170 const char *name,
180 at91_clk_register_utmi(struct pmc_data *pmc, const char *name,
184 const char *name,
[all …]
/optee_os/.github/workflows/
H A Dci.yml1 name: CI
10 name: Code style
14 - name: Checkout
18 - name: Update Git config
20 - name: Run checkpatch
31 echo "invalid.struct.name" >const_structs.checkpatch
53 - name: Run pycodestyle
60 name: Build (${{ matrix.name }})
67 - name: arm hikey
71 - name: arm hikey-hikey960
[all …]
/optee_os/core/include/drivers/
H A Dstpmic1_regulator.h14 * Return true if @name refers to a knwon regulator, return false otherwise
16 bool stpmic1_regulator_is_valid(const char *name);
19 * Enable STPMIC1 regulator identified by @name.
22 int stpmic1_regulator_enable(const char *name);
25 * Disable STPMIC1 regulator identified by @name.
28 int stpmic1_regulator_disable(const char *name);
31 * Return true if regulator identified by @name is enabled and false otherwise.
34 bool stpmic1_is_regulator_enabled(const char *name);
38 * @name: regulator identifier
42 void stpmic1_regulator_levels_mv(const char *name, const uint16_t **levels,
[all …]
/optee_os/core/drivers/
H A Dstpmic1.c574 static const struct regul_struct *get_regulator_data(const char *name) in get_regulator_data() argument
579 if (strcmp(name, regulators_table[i].dt_node_name) == 0) in get_regulator_data()
582 DMSG("Regulator %s not found", name); in get_regulator_data()
586 bool stpmic1_regulator_is_valid(const char *name) in stpmic1_regulator_is_valid() argument
588 return get_regulator_data(name); in stpmic1_regulator_is_valid()
591 void stpmic1_regulator_levels_mv(const char *name, in stpmic1_regulator_levels_mv() argument
595 const struct regul_struct *regul = get_regulator_data(name); in stpmic1_regulator_levels_mv()
611 static size_t voltage_to_index(const char *name, uint16_t millivolts) in voltage_to_index() argument
613 const struct regul_struct *regul = get_regulator_data(name); in voltage_to_index()
636 int stpmic1_regulator_enable(const char *name) in stpmic1_regulator_enable() argument
[all …]
/optee_os/lib/libutils/isoc/newlib/
H A D_ansi.h16 * 3. Neither the name of the copyright holder nor the names of its
70 #define _EXFUN(name, proto) __cdecl name proto argument
71 #define _EXPARM(name, proto) (* __cdecl name) proto argument
73 #define _EXFUN(name, proto) name proto argument
74 #define _EXPARM(name, proto) (* name) proto argument
76 #define _DEFUN(name, arglist, args) name(args) argument
77 #define _DEFUN_VOID(name) name(_NOARGS) argument
94 #define _EXFUN(name, proto) name() argument
95 #define _DEFUN(name, arglist, args) name arglist args; argument
96 #define _DEFUN_VOID(name) name() argument
/optee_os/lib/libutee/
H A Dtee_api_property.c142 static TEE_Result propget_get_property(TEE_PropSetHandle h, const char *name, in propget_get_property() argument
160 if (!strcmp(name, eps[n].name)) in propget_get_property()
165 /* get the index from the name */ in propget_get_property()
166 res = _utee_get_property_name_to_index((unsigned long)h, name, in propget_get_property()
167 strlen(name) + 1, in propget_get_property()
199 const char *name, char *value, in TEE_GetPropertyAsString() argument
212 __utee_check_instring_annotation(name); in TEE_GetPropertyAsString()
224 res = propget_get_property(propsetOrEnumerator, name, &type, in TEE_GetPropertyAsString()
300 const char *name, char *valueBuffer, in __GP11_TEE_GetPropertyAsString() argument
308 res = TEE_GetPropertyAsString(propsetOrEnumerator, name, valueBuffer, in __GP11_TEE_GetPropertyAsString()
[all …]
/optee_os/core/lib/scmi-server/include/
H A Dscmi_agent_configuration.h18 * @name: Domain name
23 const char *name; member
30 * @name: Domain name
34 const char *name; member
40 * @name: Channel name
48 const char *name; member
58 * @name: Agent name exposed through SCMI
69 const char *name; member
/optee_os/core/lib/libfdt/include/
H A Dlibfdt.h247 #define fdt_set_hdr_(name) \ argument
248 static inline void fdt_set_##name(void *fdt, uint32_t val) \
251 fdth->name = cpu_to_fdt32(val); \
441 * @name: name of the subnode to locate
442 * @namelen: number of characters of name to consider
445 * namelen characters of name for matching the subnode name. This is
451 const char *name, int namelen);
457 * @name: name of the subnode to locate
460 * offset parentoffset with the given name. name may include a unit
464 * whose name excluding unit address matches the given name.
[all …]
/optee_os/core/lib/libtomcrypt/src/misc/crypt/
H A Dcrypt_find_cipher.c11 Find a registered cipher by name
12 @param name The name of the cipher to look for
15 int find_cipher(const char *name) in find_cipher() argument
18 LTC_ARGCHK(name != NULL); in find_cipher()
21 if (cipher_descriptor[x] != NULL && !XSTRCMP(cipher_descriptor[x]->name, name)) { in find_cipher()
H A Dcrypt_find_prng.c11 Find a registered PRNG by name
12 @param name The name of the PRNG to look for
15 int find_prng(const char *name) in find_prng() argument
18 LTC_ARGCHK(name != NULL); in find_prng()
21 if ((prng_descriptor[x] != NULL) && XSTRCMP(prng_descriptor[x]->name, name) == 0) { in find_prng()
H A Dcrypt_find_hash.c11 Find a registered hash by name
12 @param name The name of the hash to look for
15 int find_hash(const char *name) in find_hash() argument
18 LTC_ARGCHK(name != NULL); in find_hash()
21 if (hash_descriptor[x] != NULL && XSTRCMP(hash_descriptor[x]->name, name) == 0) { in find_hash()
H A Dcrypt_find_hash_any.c11 Find a hash flexibly. First by name then if not present by digest size
12 @param name The name of the hash desired
15 */int find_hash_any(const char *name, int digestlen) in find_hash_any() argument
18 LTC_ARGCHK(name != NULL); in find_hash_any()
20 x = find_hash(name); in find_hash_any()
H A Dcrypt_find_cipher_any.c11 Find a cipher flexibly. First by name then if not present by block and key size
12 @param name The name of the cipher desired
17 int find_cipher_any(const char *name, int blocklen, int keylen) in find_cipher_any() argument
21 if(name != NULL) { in find_cipher_any()
22 x = find_cipher(name); in find_cipher_any()
/optee_os/core/kernel/
H A Dpm.c21 static const char no_name[] = "no-name";
38 const char *name = pm_hdl->name; in register_pm_cb() local
44 if (!name) in register_pm_cb()
45 name = no_name; in register_pm_cb()
47 if (!is_unpaged((void *)name)) { in register_pm_cb()
48 name = strdup(name); in register_pm_cb()
49 if (!name) in register_pm_cb()
61 ref[count].name = name; in register_pm_cb()
100 DMSG("%s %s", suspending ? "Suspend" : "Resume", hdl->name); in do_pm_callback()
105 "Resume", hdl->name, (void *)(vaddr_t)hdl->callback, res); in do_pm_callback()
/optee_os/ldelf/
H A Dta_elf_rel.c19 static uint32_t elf_hash(const char *name) in elf_hash() argument
21 const unsigned char *p = (const unsigned char *)name; in elf_hash()
35 static uint32_t gnu_hash(const char *name) in gnu_hash() argument
37 const unsigned char *p = (const unsigned char *)name; in gnu_hash()
48 size_t st_name, size_t st_value, const char *name, in sym_compare() argument
56 err(TEE_ERROR_BAD_FORMAT, "Symbol name out of range"); in sym_compare()
57 if (strcmp(name, elf->dynstr + st_name)) in sym_compare()
92 static bool check_found_sym(struct ta_elf *elf, const char *name, vaddr_t *val, in check_found_sym() argument
131 name, val, weak_ok); in check_found_sym()
134 static TEE_Result resolve_sym_helper(const char *name, vaddr_t *val, in resolve_sym_helper() argument
[all …]
/optee_os/core/lib/libfdt/
H A Dfdt_rw.c170 static int fdt_resize_property_(void *fdt, int nodeoffset, const char *name, in fdt_resize_property_() argument
176 *prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen); in fdt_resize_property_()
188 static int fdt_add_property_(void *fdt, int nodeoffset, const char *name, in fdt_add_property_() argument
200 namestroff = fdt_find_add_string_(fdt, name, &allocated); in fdt_add_property_()
210 fdt_del_last_string_(fdt, name); in fdt_add_property_()
220 int fdt_set_name(void *fdt, int nodeoffset, const char *name) in fdt_set_name() argument
232 newlen = strlen(name); in fdt_set_name()
239 memcpy(namep, name, newlen+1); in fdt_set_name()
243 int fdt_setprop_placeholder(void *fdt, int nodeoffset, const char *name, in fdt_setprop_placeholder() argument
251 err = fdt_resize_property_(fdt, nodeoffset, name, len, &prop); in fdt_setprop_placeholder()
[all …]
H A Dfdt_wip.c14 const char *name, int namelen, in fdt_setprop_inplace_namelen_partial() argument
21 propval = fdt_getprop_namelen_w(fdt, nodeoffset, name, namelen, in fdt_setprop_inplace_namelen_partial()
33 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name, in fdt_setprop_inplace() argument
39 propval = fdt_getprop(fdt, nodeoffset, name, &proplen); in fdt_setprop_inplace()
46 return fdt_setprop_inplace_namelen_partial(fdt, nodeoffset, name, in fdt_setprop_inplace()
47 strlen(name), 0, in fdt_setprop_inplace()
59 int fdt_nop_property(void *fdt, int nodeoffset, const char *name) in fdt_nop_property() argument
64 prop = fdt_get_property_w(fdt, nodeoffset, name, &len); in fdt_nop_property()
/optee_os/core/drivers/regulator/
H A Dregulator_dt.c22 * @name: Property name in the regulator DT node
26 const char *name; member
32 .name = "regulator-always-on",
36 .name = "regulator-pull-down",
40 .name = "regulator-boot-on",
44 .name = "regulator-over-current-protection",
280 cuint = fdt_getprop(fdt, node, "regulator-name", NULL); in parse_dt()
282 /* Replace name with the one found from the DT node */ in parse_dt()
283 char *name = (char *)cuint; in parse_dt() local
285 free(regulator->name); in parse_dt()
[all …]
/optee_os/scripts/
H A Dmem_usage.py46 def print_sect(name, addr, size, round_up=False, print_num_pages=False): argument
59 printf('%-16s %.8X - %.8X size %.8X %3d KiB', name, addr, addr + size,
66 def print_pager_stat(name, size): argument
71 printf('%-36s size %.8X %3d KiB\n', name, size, size_kib)
117 (_, name, _, addr, offs, size, _,
122 sects.append({'name': name, 'addr': addr,
141 name = sect['name']
150 print_sect(name, addr, size)
151 if name.endswith('_init'):
153 elif name.endswith('_pageable'):
[all …]

12345678910>>...33