Home
last modified time | relevance | path

Searched refs:sym (Results 1 – 10 of 10) sorted by relevance

/optee_os/core/include/
H A Dkeep.h10 .macro DECLARE_KEEP_PAGER sym
12 .global ____keep_pager_\sym
13 ____keep_pager_\sym:
14 .long \sym
18 .macro DECLARE_KEEP_INIT sym
20 .global ____keep_init_\sym
21 ____keep_init_\sym:
22 .long \sym
30 #define __DECLARE_KEEP_PAGER2(sym, file_id) \ argument
31 extern const unsigned long ____keep_pager_##sym; \
[all …]
/optee_os/core/lib/zlib/
H A Dinftrees.c42 unsigned sym; /* index of code symbols */ local
110 for (sym = 0; sym < codes; sym++)
111 count[lens[sym]]++;
147 for (sym = 0; sym < codes; sym++)
148 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
200 sym = 0; /* starting code symbol */
218 if (work[sym] + 1U < match) {
220 here.val = work[sym];
222 else if (work[sym] >= match) {
223 here.op = (unsigned char)(extra[work[sym] - match]);
[all …]
H A Dinflate.c290 unsigned sym, bits; local
294 sym = 0;
295 while (sym < 144) state->lens[sym++] = 8;
296 while (sym < 256) state->lens[sym++] = 9;
297 while (sym < 280) state->lens[sym++] = 7;
298 while (sym < 288) state->lens[sym++] = 8;
305 sym = 0;
306 while (sym < 32) state->lens[sym++] = 5;
/optee_os/lib/libutee/include/
H A Delf32.h141 #define ELF32_R_INFO(sym, type) (((sym) << 8) + (unsigned char)(type)) argument
168 #define ELF32_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size)) argument
H A Delf64.h150 #define ELF64_R_INFO(sym, type) (((sym) << 32) + ((type) & 0xffffffffL)) argument
175 #define ELF64_M_INFO(sym, size) (((sym)<<8)+(unsigned char)(size)) argument
/optee_os/core/arch/arm/include/
H A Darm64_macros.S141 .macro adr_l reg, sym argument
142 adrp \reg, \sym
143 add \reg, \reg, :lo12:\sym
/optee_os/core/include/kernel/
H A Dldelf_loader.h22 const char *sym, size_t symlen, vaddr_t *val);
/optee_os/core/pta/
H A Dsystem.c264 char *sym = NULL; in system_dlsym() local
282 &sym, &symlen); in system_dlsym()
287 res = ldelf_dlsym(uctx, &uuid, sym, symlen, &va); in system_dlsym()
/optee_os/scripts/
H A Dsymbolize.py338 sym = self.symbol_plus_offset(addr)
340 if sym or sec:
343 if sym:
344 ret += ' ' + sym
/optee_os/core/kernel/
H A Dldelf_loader.c445 const char *sym, size_t symlen, vaddr_t *val) in ldelf_dlsym() argument
466 res = copy_to_user(usr_arg->dlsym.symbol, sym, symlen + 1); in ldelf_dlsym()