Lines Matching refs:pbuf
47 void *pbuf;
100 pbuf = (void *)s->core[cpu].buf + mailbox * 4;
102 *(unsigned int *)pbuf = (unsigned int)(data >> 32);
105 pbuf = (void *)s->core[cpu].buf + (offset - 0x20);
107 *(unsigned char *)pbuf = (unsigned char)data;
109 *(unsigned short *)pbuf = (unsigned short)data;
111 *(unsigned int *)pbuf = (unsigned int)data;
113 *(unsigned long *)pbuf = (unsigned long)data;
131 void *pbuf;
152 pbuf = (void *)s->core[cpu].buf + (offset - 0x20);
154 ret = *(unsigned char *)pbuf;
156 ret = *(unsigned short *)pbuf;
158 ret = *(unsigned int *)pbuf;
160 ret = *(unsigned long *)pbuf;