/src/sys/arch/mips/cavium/dev/ |
octeon_pko.c | 128 paddr_t buf_ptr = 0; local in function:octpko_port_config 133 buf_ptr = octfpa_load(FPA_COMMAND_BUFFER_POOL); 134 if (buf_ptr == 0) 137 KASSERT(buf_ptr != 0); 146 SET(mem_queue_ptrs, __SHIFTIN(buf_ptr, PKO_MEM_QUEUE_PTRS_BUF_PTR)); 154 sc->sc_cmdptr->cmdptr = (uint64_t)buf_ptr;
|
/src/sys/external/bsd/sljit/dist/sljit_src/ |
sljitNativeX86_32.c | 335 sljit_u8 *buf_ptr; local in function:emit_x86_instruction 416 buf_ptr = inst + size; 424 *buf_ptr = 0; 426 *buf_ptr = reg_map[a] << 3; 428 *buf_ptr = a << 3; 438 *buf_ptr = 0; 442 *buf_ptr++ |= MOD_REG + ((!(flags & EX86_SSE2_OP2)) ? reg_map[b] : b); 447 *buf_ptr |= 0x40; 449 *buf_ptr |= 0x80; 453 *buf_ptr++ |= reg_map[b & REG_MASK] [all...] |
sljitNativeX86_64.c | 348 sljit_u8 *buf_ptr; local in function:emit_x86_instruction 466 buf_ptr = inst + size; 474 *buf_ptr = 0; 476 *buf_ptr = reg_lmap[a] << 3; 478 *buf_ptr = a << 3; 488 *buf_ptr = 0; 492 *buf_ptr++ |= MOD_REG + ((!(flags & EX86_SSE2_OP2)) ? reg_lmap[b] : b); 497 *buf_ptr |= 0x40; 499 *buf_ptr |= 0x80; 503 *buf_ptr++ |= reg_lmap[b & REG_MASK] [all...] |
sljitNativeARM_32.c | 319 static sljit_s32 resolve_const_pool_index(struct sljit_compiler *compiler, struct future_patch **first_patch, sljit_uw cpool_current_index, sljit_uw *cpool_start_address, sljit_uw *buf_ptr) 367 cpool_start_address[value] = *buf_ptr; 571 sljit_uw *buf_ptr; local in function:sljit_generate_code 629 buf_ptr = (sljit_uw*)buf->memory; 630 buf_end = buf_ptr + (buf->used_size >> 2); 636 buf_ptr++; 640 if (SLJIT_UNLIKELY(resolve_const_pool_index(compiler, &first_patch, cpool_current_index, cpool_start_address, buf_ptr))) { 645 buf_ptr++; 658 else if ((*buf_ptr & 0xff000000) != PUSH_POOL) { 660 *code_ptr = *buf_ptr++ [all...] |
sljitNativeARM_T2_32.c | 350 sljit_u16 *buf_ptr; local in function:sljit_generate_code 376 buf_ptr = (sljit_u16*)buf->memory; 377 buf_end = buf_ptr + (buf->used_size >> 1); 379 *code_ptr = *buf_ptr++; 400 } while (buf_ptr < buf_end);
|
sljitNativePPC_common.c | 330 sljit_ins *buf_ptr; local in function:sljit_generate_code 364 buf_ptr = (sljit_ins*)buf->memory; 365 buf_end = buf_ptr + (buf->used_size >> 2); 367 *code_ptr = *buf_ptr++; 425 } while (buf_ptr < buf_end); 449 buf_ptr = (sljit_ins *)jump->addr; 454 addr -= (sljit_uw)SLJIT_ADD_EXEC_OFFSET(buf_ptr, executable_offset); 456 *buf_ptr = BCx | (addr & 0xfffc) | ((*buf_ptr) & 0x03ff0001); 460 *buf_ptr = BCx | (addr & 0xfffc) | 0x2 | ((*buf_ptr) & 0x03ff0001) [all...] |
sljitNativeSPARC_common.c | 284 sljit_ins *buf_ptr; local in function:sljit_generate_code 311 buf_ptr = (sljit_ins*)buf->memory; 312 buf_end = buf_ptr + (buf->used_size >> 2); 314 *code_ptr = *buf_ptr++; 341 } while (buf_ptr < buf_end); 361 buf_ptr = (sljit_ins *)jump->addr; 364 addr = (sljit_sw)(addr - (sljit_uw)SLJIT_ADD_EXEC_OFFSET(buf_ptr, executable_offset)) >> 2; 366 buf_ptr[0] = CALL | (addr & 0x3fffffff); 370 addr = (sljit_sw)(addr - (sljit_uw)SLJIT_ADD_EXEC_OFFSET(buf_ptr, executable_offset)) >> 2; 372 buf_ptr[0] = (buf_ptr[0] & ~DISP_MASK) | (addr & DISP_MASK) [all...] |
sljitNativeX86_common.c | 482 sljit_u8 *buf_ptr; local in function:sljit_generate_code 508 buf_ptr = buf->memory; 509 buf_end = buf_ptr + buf->used_size; 511 len = *buf_ptr++; 514 SLJIT_MEMCPY(code_ptr, buf_ptr, len); 516 buf_ptr += len; 519 if (*buf_ptr >= 2) { 522 code_ptr = generate_near_jump_code(jump, code_ptr, code, *buf_ptr - 2, executable_offset); 525 code_ptr = generate_far_jump_code(jump, code_ptr, *buf_ptr - 2, executable_offset); 527 code_ptr = generate_far_jump_code(jump, code_ptr, *buf_ptr - 2) [all...] |
sljitNativeARM_64.c | 214 sljit_ins *buf_ptr; local in function:sljit_generate_code 242 buf_ptr = (sljit_ins*)buf->memory; 243 buf_end = buf_ptr + (buf->used_size >> 2); 245 *code_ptr = *buf_ptr++; 266 } while (buf_ptr < buf_end); 286 buf_ptr = (sljit_ins *)jump->addr; 289 addr = (sljit_sw)(addr - (sljit_uw)SLJIT_ADD_EXEC_OFFSET(buf_ptr, executable_offset)) >> 2; 291 buf_ptr[0] = ((jump->flags & IS_BL) ? BL : B) | (addr & 0x3ffffff); 293 buf_ptr[-1] -= (4 << 5); 297 addr = (sljit_sw)(addr - (sljit_uw)SLJIT_ADD_EXEC_OFFSET(buf_ptr, executable_offset)) >> 2 [all...] |
sljitNativeMIPS_common.c | 362 sljit_ins *buf_ptr; local in function:sljit_generate_code 389 buf_ptr = (sljit_ins*)buf->memory; 390 buf_end = buf_ptr + (buf->used_size >> 2); 392 *code_ptr = *buf_ptr++; 418 } while (buf_ptr < buf_end); 438 buf_ptr = (sljit_ins *)jump->addr; 441 addr = (sljit_sw)(addr - ((sljit_uw)SLJIT_ADD_EXEC_OFFSET(buf_ptr, executable_offset) + sizeof(sljit_ins))) >> 2; 443 buf_ptr[0] = (buf_ptr[0] & 0xffff0000) | (addr & 0xffff); 447 SLJIT_ASSERT((addr & ~0xfffffff) == (((sljit_uw)SLJIT_ADD_EXEC_OFFSET(buf_ptr, executable_offset) + sizeof(sljit_ins)) & ~0xfffffff)) [all...] |
sljitNativeTILEGX_64.c | 1003 sljit_ins *buf_ptr; local in function:sljit_generate_code 1026 buf_ptr = (sljit_ins *)buf->memory; 1027 buf_end = buf_ptr + (buf->used_size >> 3); 1029 *code_ptr = *buf_ptr++; 1059 } while (buf_ptr < buf_end); 1079 buf_ptr = (sljit_ins *)jump->addr; 1084 buf_ptr[0] = (buf_ptr[0] & ~(BOFF_X1(-1))) | BOFF_X1(addr); 1088 print_insn_tilegx(buf_ptr); 1096 buf_ptr[0] = (buf_ptr[0] & ~(JOFF_X1(-1))) | JOFF_X1(addr) [all...] |
/src/sys/arch/evbmips/stand/sbmips/common/ |
cfe_api_int.h | 94 cfe_xptr_t buf_ptr; /* pointer to a buffer */ member in struct:xiocb_buffer_s
|
/src/sys/arch/mips/cfe/ |
cfe_api_int.h | 94 cfe_xptr_t buf_ptr; /* pointer to a buffer */ member in struct:xiocb_buffer_s
|
/src/sys/arch/sbmips/stand/common/ |
cfe_api_int.h | 94 cfe_xptr_t buf_ptr; /* pointer to a buffer */ member in struct:xiocb_buffer_s
|
/src/sys/external/bsd/drm/dist/shared-core/ |
mach64_dma.c | 1230 u32 *buf_ptr; local in function:mach64_do_dispatch_pseudo_dma 1302 buf_ptr = (u32 *) ((char *)GETBUFPTR(buf) + offset); 1313 reg = le32_to_cpu(*buf_ptr++); 1340 MACH64_WRITE(reg, le32_to_cpu(*buf_ptr++));
|
/src/sys/external/bsd/drm2/dist/include/uapi/drm/ |
panfrost_drm.h | 205 __u64 buf_ptr; member in struct:drm_panfrost_perfcnt_dump
|
/src/sys/arch/x68k/stand/libdos/ |
dos.h | 227 unsigned char *buf_ptr; member in struct:dos_prcctrl 247 struct dos_prcctrl *buf_ptr; member in struct:dos_prcptr
|
/src/usr.bin/make/ |
parse.c | 134 char *buf_ptr; /* next char to be read from buf */ member in struct:IncludedFile 2234 curFile->buf_ptr = curFile->buf.data; 2358 curFile->buf_ptr = curFile->buf.data; 2417 char *line = curFile->buf_ptr; 2477 curFile->buf_ptr = p;
|