Home | History | Annotate | Download | only in libdisasm

Lines Matching refs:buf

6 unsigned int x86_imm_signsized( unsigned char * buf, size_t buf_len,
17 /* Copy 'size' bytes from *buf to *op
21 *cp = *((signed char *) buf);
24 *sp = *((signed short *) buf);
28 *qp = *((qword_t *) buf);
32 *lp = *((int32_t *) buf);
38 unsigned int x86_imm_sized( unsigned char * buf, size_t buf_len, void *dest,
49 /* Copy 'size' bytes from *buf to *op
53 *cp = *((unsigned char *) buf);
56 *sp = *((unsigned short *) buf);
60 *qp = *((qword_t *) buf);
64 *lp = *((uint32_t *) buf);