HomeSort by: relevance | last modified time | path
    Searched refs:immediate (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/sys/dev/microcode/aic7xxx/
aicasm_insformat.h 47 uint32_t immediate : 8, member in struct:ins_format1
59 immediate : 8;
83 uint32_t immediate : 8, member in struct:ins_format3
93 immediate : 8;
aicasm_gram.y 207 %type <expression> expression immediate immediate_or_a
907 immediate: label
1214 T_BMOV destination ',' source ',' immediate ret ';'
1231 T_MVI destination ',' immediate ret ';'
1239 * that can't know the immediate's value and
1294 * It also seems more logical as the "immediate"
1341 T_OR reg_symbol ',' immediate jmp_jc_jnc_call address ';'
1372 T_MVI immediate jmp_jc_jnc_call address ';'
1619 /* Ensure that immediate makes sense for this destination */
1631 f1_instr->immediate = immed->value
    [all...]
  /src/usr.bin/make/unit-tests/
posix-varassign.mk 25 VAR::= posix-immediate-expansion
28 .elif ${${:UVAR\:}} != "posix-immediate-expansion"
72 VAR:= immediate ${REF}
74 .if ${VAR} != "immediate before"
deptgt-end-jobs.mk 46 # immediate commands.
deptgt-end.mk 45 # immediate commands.
var-op-append.mk 13 # This implementation does not support the immediate-expansion macros
depsrc-ignore.mk 38 # the immediate call to fflush(stdout) copies it to STDOUT_FILENO.
dep-var.mk 14 # Using a double dollar in order to circumvent immediate expression expansion
varmod-indirect.mk 96 # as the immediate value of the expression.
  /src/usr.sbin/mopd/common/
pf.c 76 int immediate; local in function:pfInit
101 /* Set immediate mode so packets are processed as they arrive. */
102 immediate = 1;
103 if (ioctl(fd, BIOCIMMEDIATE, &immediate) < 0) {
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/therm/
nouveau_nvkm_subdev_therm_fan.c 37 nvkm_fan_update(struct nvkm_fan *fan, bool immediate, int target)
67 if (!immediate && duty >= 0) {
127 nvkm_therm_fan_set(struct nvkm_therm *therm, bool immediate, int percent)
129 return nvkm_fan_update(therm->fan, immediate, percent);
  /src/sys/dev/iscsi/
iscsi_ioctl.h 209 unsigned int immediate:1; member in struct:__anonb1d6e0de0608::__anonb1d6e0de0708
228 immediate Indicates that the command should be sent
iscsi_ioctl.c 1391 par->options.immediate, par->connection_id);
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/hw/
hubp.h 83 bool immediate; member in struct:surface_flip_registers
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dmub/inc/
dmub_cmd.h 165 uint8_t immediate :1; member in struct:dmub_cmd_PLAT_54186_wa::__anona7e1e4e50108
  /src/usr.sbin/rarpd/
rarpd.c 291 * Set immediate mode, and set a filter that accepts only RARP requests.
299 int immediate; local in function:rarp_open
320 /* Set immediate mode so packets are processed as they arrive. */
321 immediate = 1;
322 if (ioctl(fd, BIOCIMMEDIATE, &immediate) < 0) {
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn21/
amdgpu_dcn21_hubp.c 703 SURFACE_FLIP_TYPE, flip_regs->immediate,
784 PLAT_54186_wa.flip.flip_params.immediate = flip_regs->immediate;
899 flip_regs.immediate = flip_immediate;
  /src/sys/dev/ic/
aic7xxxvar.h 84 uint32_t immediate : 8, member in struct:ins_format1
96 immediate : 8;
120 uint32_t immediate : 8, member in struct:ins_format3
130 immediate : 8;
771 * of immediate notify ccbs.
aic7xxx.c 3743 * Send an immediate notify ccb to all target mord peripheral
6018 * Send an immediate notify ccb to all target more peripheral
6192 printf("immediate event %x:%x lost\n",
6212 * for immediate notify resources.
6472 fmt1_ins->immediate = dconsts[fmt1_ins->immediate];
6482 * (AND with an immediate of FF).
6484 if (fmt1_ins->immediate != 1)
6488 fmt1_ins->immediate = 0xff;
6509 fmt3_ins->immediate
    [all...]
  /src/sbin/scsictl/
scsictl.c 101 { "format", "[blocksize [immediate]]", device_format },
457 int i, j, immediate; local in function:device_format
571 * Signal target for an immediate return from Format.
576 immediate = 1;
578 immediate = 0;
587 if (immediate) {
  /src/lib/libnvmm/
libnvmm_x86.c 1055 bool immediate:1; member in struct:x86_opcode
1102 .immediate = true,
1113 .immediate = true,
1125 .immediate = true,
1141 .immediate = true,
1152 .immediate = true,
1168 .immediate = true,
1179 .immediate = true,
2014 /* The immediate is the source */
2066 if (opcode->immediate) {
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
intel_gtt.c 118 bool immediate)
139 if (pvec->nr <= (immediate ? 0 : PAGEVEC_SIZE - 1))
  /src/sys/dev/scsipi/
st.c 1967 st_rewind(struct st_softc *st, u_int immediate, int flags)
1983 /* If requestor asked for immediate response, set a short timeout */
1984 timeout = immediate ? ST_CTL_TIME : ST_SPC_TIME;
1986 /* ATAPI tapes always need immediate to be set */
1988 immediate = SR_IMMED;
1992 cmd.byte2 = immediate;
  /src/sys/dev/pci/cxgb/
cxgb_sge.c 276 * Return a packet containing the immediate data of the given response.
661 * up). Since control queues use immediate data exclusively we don't
1303 * write_imm - write a packet into a Tx descriptor as immediate data
1306 * @len: the length of packet data to write as immediate data
1309 * Writes a packet as immediate data into a Tx descriptor. The packet
1386 * that send only immediate data (presently just the control queues) and
1401 immediate(const struct mbuf *m) function in typeref:typename:int
1413 * a control queue must fit entirely as immediate data in a single Tx
1422 if (__predict_false(!immediate(m))) {
1726 if (immediate(m))
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce110/
amdgpu_dce110_mem_input_v.c 46 bool immediate)

Completed in 36 milliseconds

1 2