Searched defs:statep (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
H A Dpoly1305.c164 void CRYPTO_poly1305_init(poly1305_state *statep, const uint8_t key[32]) { argument
165 struct poly1305_state_st *state = (struct poly1305_state_st *)statep;
170 CRYPTO_poly1305_init_neon(statep, key);
210 void CRYPTO_poly1305_update(poly1305_state *statep, const uint8_t *in, argument
213 struct poly1305_state_st *state = (struct poly1305_state_st *)statep;
217 CRYPTO_poly1305_update_neon(statep, in, in_len);
252 void CRYPTO_poly1305_finish(poly1305_state *statep, uint8_t mac[16]) { argument
253 struct poly1305_state_st *state = (struct poly1305_state_st *)statep;
260 CRYPTO_poly1305_finish_neon(statep, mac);
/external/elfutils/0.153/src/
H A Di386_ld.c53 elf_i386_open_outfile (struct ld_state *statep, argument
60 return old_open_outfile (statep, EM_386, ELFCLASS32, ELFDATA2LSB);
67 elf_i386_relocate_section (struct ld_state *statep __attribute__ ((unused)),
197 elf_i386_initialize_plt (struct ld_state *statep, Elf_Scn *scn) argument
215 data->d_size = (1 + statep->nplt) * PLT_ENTRY_SIZE;
221 statep->nplt_used = 1;
226 elf_i386_initialize_pltrel (struct ld_state *statep, Elf_Scn *scn) argument
236 size_t size = statep->nplt * sizeof (Elf32_Rel);
246 elf_i386_initialize_got (struct ld_state *statep, Elf_Scn *scn) argument
249 assert (statep
267 elf_i386_initialize_gotplt(struct ld_state *statep, Elf_Scn *scn) argument
362 elf_i386_finalize_plt(struct ld_state *statep, size_t nsym, size_t nsym_local, struct symbol **ndxtosym) argument
531 elf_i386_count_relocations(struct ld_state *statep, struct scninfo *scninfo) argument
719 elf_i386_create_relocations(struct ld_state *statep, const Elf32_Word *dblindirect __attribute__ ((unused))) argument
1087 elf_i386_ld_init(struct ld_state *statep) argument
[all...]
H A Delflint.c1311 struct loaded_segment *loaded, enum load_state *statep)
1413 if (*statep == state_undecided)
1414 *statep = in_loaded_seg ? state_loaded : state_unloaded;
1415 else if ((*statep == state_unloaded && in_loaded_seg)
1416 || (*statep == state_loaded && !in_loaded_seg))
1421 *statep = state_error;
1307 check_one_reloc(Ebl *ebl, GElf_Ehdr *ehdr, GElf_Shdr *relshdr, int idx, size_t cnt, const GElf_Shdr *symshdr, Elf_Data *symdata, GElf_Addr r_offset, GElf_Xword r_info, const GElf_Shdr *destshdr, bool reldyn, struct loaded_segment *loaded, enum load_state *statep) argument
H A 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,
2192 ld_generic_file_process(int fd, struct usedfiles *fileinfo, struct ld_state *statep, struct usedfiles **nextp) argument
2336 ld_generic_flag_unresolved(struct ld_state *statep) argument
2394 ld_generic_file_close(struct usedfiles *fileinfo, struct ld_state *statep) argument
2439 ld_generic_generate_sections(struct ld_state *statep) argument
2652 ld_generic_open_outfile(struct ld_state *statep, int machine, int klass, int data) argument
3125 ld_generic_create_sections(struct ld_state *statep) argument
4302 ld_generic_create_outfile(struct ld_state *statep) argument
6965 ld_generic_relocate_section(struct ld_state *statep, Elf_Scn *outscn, struct scninfo *firstp, const Elf32_Word *dblindirect) argument
6977 ld_generic_finalize(struct ld_state *statep) argument
7023 ld_generic_special_section_number_p(struct ld_state *statep, size_t number) argument
7031 ld_generic_section_type_p(struct ld_state *statep, GElf_Word type) argument
7047 ld_generic_dynamic_section_flags(struct ld_state *statep) argument
7056 ld_generic_initialize_plt(struct ld_state *statep, Elf_Scn *scn) argument
7067 ld_generic_initialize_pltrel(struct ld_state *statep, Elf_Scn *scn) argument
7078 ld_generic_initialize_got(struct ld_state *statep, Elf_Scn *scn) argument
7089 ld_generic_initialize_gotplt(struct ld_state *statep, Elf_Scn *scn) argument
7100 ld_generic_finalize_plt(struct ld_state *statep, size_t nsym, size_t nsym_dyn, struct symbol **ndxtosymp) argument
7108 ld_generic_rel_type(struct ld_state *statep) argument
7121 ld_generic_count_relocations(struct ld_state *statep, struct scninfo *scninfo) argument
7132 ld_generic_create_relocations(struct ld_state *statep, const Elf32_Word *dblindirect) argument
[all...]
/external/mksh/src/
H A 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
194 Lex_state states[STATE_BSIZE], *statep, *s2, *base; local
[all...]
/external/libpng/
H A Dpng.c2569 png_check_fp_number(png_const_charp string, png_size_t size, int *statep, argument
2572 int state = *statep;
2687 *statep = state;

Completed in 5925 milliseconds