Home
last modified time | relevance | path

Searched refs:statep (Results 1 – 7 of 7) sorted by relevance

/external/elfutils/0.153/src/
Di386_ld.c53 elf_i386_open_outfile (struct ld_state *statep, in elf_i386_open_outfile() argument
60 return old_open_outfile (statep, EM_386, ELFCLASS32, ELFDATA2LSB); in elf_i386_open_outfile()
67 elf_i386_relocate_section (struct ld_state *statep __attribute__ ((unused)), in elf_i386_relocate_section() argument
197 elf_i386_initialize_plt (struct ld_state *statep, Elf_Scn *scn) in elf_i386_initialize_plt() argument
215 data->d_size = (1 + statep->nplt) * PLT_ENTRY_SIZE; in elf_i386_initialize_plt()
221 statep->nplt_used = 1; in elf_i386_initialize_plt()
226 elf_i386_initialize_pltrel (struct ld_state *statep, Elf_Scn *scn) in elf_i386_initialize_pltrel() argument
236 size_t size = statep->nplt * sizeof (Elf32_Rel); in elf_i386_initialize_pltrel()
246 elf_i386_initialize_got (struct ld_state *statep, Elf_Scn *scn) in elf_i386_initialize_got() argument
249 assert (statep->ngot != 0); in elf_i386_initialize_got()
[all …]
Dldgeneric.c71 struct ld_state *statep);
73 struct ld_state *statep,
75 static void ld_generic_generate_sections (struct ld_state *statep);
76 static void ld_generic_create_sections (struct ld_state *statep);
77 static int ld_generic_flag_unresolved (struct ld_state *statep);
78 static int ld_generic_open_outfile (struct ld_state *statep, int machine,
80 static int ld_generic_create_outfile (struct ld_state *statep);
81 static void ld_generic_relocate_section (struct ld_state *statep,
85 static int ld_generic_finalize (struct ld_state *statep);
86 static bool ld_generic_special_section_number_p (struct ld_state *statep,
[all …]
Delflint.c1311 struct loaded_segment *loaded, enum load_state *statep) in check_one_reloc() argument
1413 if (*statep == state_undecided) in check_one_reloc()
1414 *statep = in_loaded_seg ? state_loaded : state_unloaded; in check_one_reloc()
1415 else if ((*statep == state_unloaded && in_loaded_seg) in check_one_reloc()
1416 || (*statep == state_loaded && !in_loaded_seg)) in check_one_reloc()
1421 *statep = state_error; in check_one_reloc()
/external/mksh/src/
Dlex.c151 if (++statep == state_info.end) \
152 statep = push_state_i(&state_info, statep); \
153 state = statep->type = (s); \
157 if (--statep == state_info.base) \
158 statep = pop_state_i(&state_info, statep); \
159 state = statep->type; \
166 statep->ls_start = Xsavepos(ws, wp); \
174 wp = Xrestpos(ws, wp, statep->ls_start); \
194 Lex_state states[STATE_BSIZE], *statep, *s2, *base; in yylex() local
205 statep = &states[1]; in yylex()
[all …]
/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
Dpoly1305.c164 void CRYPTO_poly1305_init(poly1305_state *statep, const uint8_t key[32]) { in CRYPTO_poly1305_init() argument
165 struct poly1305_state_st *state = (struct poly1305_state_st *)statep; in CRYPTO_poly1305_init()
170 CRYPTO_poly1305_init_neon(statep, key); in CRYPTO_poly1305_init()
210 void CRYPTO_poly1305_update(poly1305_state *statep, const uint8_t *in, in CRYPTO_poly1305_update() argument
213 struct poly1305_state_st *state = (struct poly1305_state_st *)statep; in CRYPTO_poly1305_update()
217 CRYPTO_poly1305_update_neon(statep, in, in_len); in CRYPTO_poly1305_update()
252 void CRYPTO_poly1305_finish(poly1305_state *statep, uint8_t mac[16]) { in CRYPTO_poly1305_finish() argument
253 struct poly1305_state_st *state = (struct poly1305_state_st *)statep; in CRYPTO_poly1305_finish()
260 CRYPTO_poly1305_finish_neon(statep, mac); in CRYPTO_poly1305_finish()
/external/libpng/
Dpng.c2602 png_check_fp_number(png_const_charp string, png_size_t size, int *statep,
2605 int state = *statep;
2720 *statep = state;
Dpngpriv.h1788 png_size_t size, int *statep, png_size_tp whereami),PNG_EMPTY);