Searched defs:wordsize (Results 1 - 3 of 3) sorted by relevance

/external/strace/
H A Dexecve.c47 const unsigned int wordsize = current_wordsize; local
50 for (n = 0; addr; sep = ", ", addr += wordsize, ++n) {
57 if (umoven(tcp, addr, wordsize, cp.data)) {
64 if (!(wordsize < sizeof(cp.p64) ? cp.p32 : cp.p64)) {
74 printstr(tcp, wordsize < sizeof(cp.p64) ? cp.p32 : cp.p64);
/external/tcpdump/
H A Dcpack.c52 /* Advance to the next wordsize boundary. Return NULL if fewer than
53 * wordsize bytes remain in the buffer after the boundary. Otherwise,
57 cpack_align_and_reserve(struct cpack_state *cs, size_t wordsize) argument
62 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize);
64 /* Too little space for wordsize bytes? */
65 if (next - cs->c_buf + wordsize > cs->c_len)
/external/python/cpython2/Modules/_ctypes/libffi/src/sparc/
H A Dffi.c254 int wordsize; local
258 wordsize = 4;
264 cif->bytes += wordsize;
274 wordsize = 8;
286 cif->bytes += 16 * wordsize;
291 cif->bytes = ALIGN(cif->bytes, 2 * wordsize);

Completed in 147 milliseconds