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

1 2 3 4 5 6 7 8 9

  /src/sys/modules/ir/
Makefile 5 .PATH: ${S}/dev/ir
7 KMOD= ir
8 SRCS= ir.c
  /src/sys/arch/hppa/spmath/
fpudispatch.h 6 int decode_0c(unsigned ir, unsigned class, unsigned subop, unsigned *fpregs);
7 int decode_0e(unsigned ir, unsigned class, unsigned subop, unsigned *fpregs);
8 int decode_06(unsigned ir, unsigned *fpregs);
9 int decode_26(unsigned ir, unsigned *fpregs);
fpudispatch.c 116 decode_0c(unsigned ir,unsigned class,unsigned subop,unsigned fpregs[])
123 if (ir == COPR_INST) {
128 r1 = extru(ir,fpr1pos,5) * sizeof(double)/sizeof(unsigned);
131 t = extru(ir,fptpos,5) * sizeof(double)/sizeof(unsigned);
134 fmt = extru(ir,fpfmtpos,2); /* get fmt completer */
198 df = extru(ir,fpdfpos,2); /* get dest format */
274 r2 = extru(ir, fpr2pos, 5) * sizeof(double)/sizeof(unsigned);
289 extru(ir,fptpos,5),status));
292 extru(ir,fptpos,5),status));
307 return(ftest(0,extru(ir,fptpos,5)
    [all...]
  /src/usr.bin/make/unit-tests/
var-scope-local.exp 1 Global: .ALLTARGETS = all target-rule.ext dir/subdir/target-rule.ext target-rule.ir-gen-from dir/subdir/target-rule-dir.ir-gen-from inference-rule.ir-to dir/subdir/inference-rule.ir-to inference-rule.ir-from dir/subdir/inference-rule.ir-from inference-rule-chain.ir-to dir/subdir/inference-rule-chain.ir-to inference-rule-chain.ir-gen-from dir/subdir/inference-rule-chain.ir-gen-from on
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
i386-tdep.c 4767 struct i386_record_s *ir,
4782 if (record_full_arch_list_add_reg (ir->regcache, i))
4790 if (record_full_arch_list_add_reg (ir->regcache, i))
4797 if (record_full_arch_list_add_reg (ir->regcache, i))
4803 if (record_full_arch_list_add_reg (ir->regcache,iregnum))
4815 if (record_full_arch_list_add_reg (ir->regcache, i))
4826 i386_record_vex (struct i386_record_s *ir, uint8_t vex_w, uint8_t vex_r,
4846 i386_record_modrm (ir);
4849 record_full_arch_list_add_reg (ir->regcache,
4851 + ir->reg + vex_r * 8)
5048 struct i386_record_s ir; local
    [all...]
  /src/sys/dev/ir/
Makefile 3 INCSDIR= /usr/include/dev/ir
ir.c 1 /* $NetBSD: ir.c,v 1.6 2010/12/28 14:45:30 jmcneill Exp $ */
33 __KERNEL_RCSID(0, "$NetBSD: ir.c,v 1.6 2010/12/28 14:45:30 jmcneill Exp $");
41 #include <dev/ir/ir.h>
64 MODULE(MODULE_CLASS_DRIVER, ir, NULL);
  /src/sys/dev/isa/
isv.c 123 isv_read(struct isv_regs *ir, bus_size_t reg)
125 return bus_space_read_2(ir->ir_bt, ir->ir_bh, reg);
129 isv_write(struct isv_regs *ir, bus_size_t reg, uint16_t val)
131 bus_space_write_2(ir->ir_bt, ir->ir_bh, reg, val);
135 isv_retrace(struct isv_regs *ir)
139 video = isv_read(ir, ISV_STATUS) & ISV_STATUS_VIDEO_MASK;
174 isv_probe(struct isv_regs *ir)
181 isv_write(ir, ISV_CONTROL
207 struct isv_regs ir; local
241 struct isv_regs *ir = &sc->sc_ir; local
331 struct isv_regs *ir = &sc->sc_ir; local
447 struct isv_regs *ir = &sc->sc_ir; local
    [all...]
  /src/sys/arch/hppa/hppa/
intr.c 74 struct hppa_interrupt_register *ir)
79 memset(ir, 0, sizeof(*ir));
80 ir->ir_ci = ci;
83 ir->ir_bits_map[idx] = IR_BIT_UNUSED;
85 ir->ir_bits = ~0;
92 hppa_interrupt_registers[idx] = ir;
128 struct hppa_interrupt_register *ir, int bit_pos)
131 struct cpu_info *ci = ir->ir_ci;
144 if (IR_BIT_USED_P(ir->ir_bits_map[31 ^ bit_pos])
255 struct hppa_interrupt_register *ir; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/
parser.d 7 import std.regex.internal.ir;
23 ir = g.ir;
103 if (code[pc].code == IR.GotoEndOr)
114 if (code[pc].code == IR.LookbehindStart
115 || code[pc].code == IR.NeglookbehindStart)
128 if (code[pc].code == IR.OrStart)
133 uint i = pc + IRL!(IR.OrStart);
134 while (code[i].code == IR.Option)
136 if (code[i - 1].code != IR.OrStart
    [all...]
backtracking.d 10 import std.regex.internal.ir;
342 pc, counter, disassemble(re.ir, pc, re.dict),
344 switch (re.ir[pc].code)
346 case IR.OrChar://assumes IRL!(OrChar) == 1
349 uint len = re.ir[pc].sequence;
351 if (re.ir[pc].data != front && re.ir[pc+1].data != front)
354 if (re.ir[pc].data == front)
362 case IR.Char:
363 if (atEnd || front != re.ir[pc].data
    [all...]
generator.d 18 import std.regex.internal.ir : Regex, IR, IRL;
47 switch (re.ir[pc].code)
49 case IR.Char:
50 formattedWrite(app,"%s", cast(dchar) re.ir[pc].data);
51 pc += IRL!(IR.Char);
53 case IR.OrChar:
54 uint len = re.ir[pc].sequence;
55 formattedWrite(app, "%s", cast(dchar) re.ir[pc + rand(len)].data);
58 case IR.CodepointSet
    [all...]
thompson.d 14 import std.regex.internal.ir;
92 static bool op(IR code:IR.End)(E e, S* state)
96 finish(t, matches, re.ir[t.pc].data);
108 static bool op(IR code:IR.Wordboundary)(E e, S* state)
117 t.pc += IRL!(IR.Wordboundary);
123 t.pc += IRL!(IR.Wordboundary);
132 t.pc += IRL!(IR.Wordboundary);
140 static bool op(IR code:IR.Notwordboundary)(E e, S* state
    [all...]
kickstart.d 10 import std.regex.internal.ir;
152 switch (re.ir[i].code)
154 case IR.Char:
155 fChar = re.ir[i].data;
164 case IR.GroupStart, IR.GroupEnd:
165 i += IRL!(IR.GroupStart);
167 case IR.Bof, IR.Bol, IR.Wordboundary, IR.Notwordboundary
    [all...]
  /src/sys/modules/cir/
Makefile 5 .PATH: ${S}/dev/ir
  /src/external/gpl3/gdb.old/dist/gdb/
i386-tdep.c 4947 struct i386_record_s *ir,
4962 if (record_full_arch_list_add_reg (ir->regcache, i))
4970 if (record_full_arch_list_add_reg (ir->regcache, i))
4977 if (record_full_arch_list_add_reg (ir->regcache, i))
4983 if (record_full_arch_list_add_reg (ir->regcache,iregnum))
4995 if (record_full_arch_list_add_reg (ir->regcache, i))
5007 record_full_arch_list_add_reg (ir.regcache, ir.regmap[(regnum)])
5020 struct i386_record_s ir;
5025 memset (&ir, 0, sizeof (struct i386_record_s))
4996 struct i386_record_s ir; local
    [all...]
  /src/sys/dev/ieee1394/
fwdev.c 102 struct fw_xferq *ir; member in struct:fw_drv1
182 if (d->ir != NULL) {
183 struct fw_xferq *ir = d->ir; local
185 if ((ir->flag & FWXFERQ_OPEN) == 0)
187 if (ir->flag & FWXFERQ_RUNNING) {
188 ir->flag &= ~FWXFERQ_RUNNING;
189 fc->irx_disable(fc, ir->dmach);
192 fwdev_freebuf(ir);
194 for (xfer = STAILQ_FIRST(&ir->q); xfer != NULL
235 struct fw_xferq *ir; local
390 struct fw_xferq *ir, *it; local
693 struct fw_xferq *ir; local
    [all...]
  /src/external/bsd/openldap/dist/libraries/liblmdb/
midl.c 227 int i,j,k,l,ir,jstack; local
230 ir = (int)ids[0];
234 if (ir - l < SMALL) { /* Insertion sort */
235 for (j=l+1;j<=ir;j++) {
244 ir = istack[jstack--];
247 k = (l + ir) >> 1; /* Choose median of left, center, right */
249 if (ids[l] < ids[ir]) {
250 MIDL_SWAP(ids[l], ids[ir]);
252 if (ids[l+1] < ids[ir]) {
253 MIDL_SWAP(ids[l+1], ids[ir]);
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
print-simple-values.cc 22 * The arguments i, ir, and irr are ints or references to ints, which
43 f (int i, int &ir, int &&irr,
48 return (i + ir + irr
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
print-simple-values.cc 22 * The arguments i, ir, and irr are ints or references to ints, which
43 f (int i, int &ir, int &&irr,
48 return (i + ir + irr
  /src/sys/crypto/camellia/
camellia.c 105 #define CAMELLIA_F(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \
108 ir = xr ^ kr; \
110 t1 = ir >> 16; \
111 yl = CAMELLIA_SP1110(ir & 0xff) \
114 ^ CAMELLIA_SP4404((ir >> 8) & 0xff); \
141 #define CAMELLIA_ROUNDSM(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \
143 ir = CAMELLIA_SP1110(xr & 0xff); \
145 ir ^= CAMELLIA_SP0222((xr>>24) & 0xff); \
147 ir ^= CAMELLIA_SP3033((xr>>16) & 0xff); \
149 ir ^= CAMELLIA_SP4404((xr>>8) & 0xff);
440 uint32_t il, ir, t0, t1, w0, w1; local
647 uint32_t il, ir, t0, t1, w0, w1; \/* temporary variables *\/ local
945 uint32_t il, ir, t0, t1; local
1012 uint32_t il,ir,t0,t1; \/* temporary variables *\/ local
1082 uint32_t il,ir,t0,t1; \/* temporary variables *\/ local
1165 uint32_t il,ir,t0,t1; \/* temporary variables *\/ local
    [all...]
  /src/lib/libm/noieee_src/
n_fmod.c 85 int ir,iy; local
99 (void)frexp(r,&ir);
100 w = ldexp(y,ir-iy);
  /src/sys/arch/hppa/dev/
cpu.c 92 struct hppa_interrupt_register *ir; local
172 ir = &ci->ci_ir;
173 hppa_interrupt_register_establish(ci, ir);
174 ir->ir_iscpu = true;
175 ir->ir_ci = ci;
176 ir->ir_name = device_xname(self);
189 ir->ir_rbits = ((1 << 28) | (1 << 27));
190 ir->ir_bits &= ~ir->ir_rbits;
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/allwinner/
sun6i-a31s-cs908.dts 75 &ir {
sun8i-h3-nanopi-m1.dts 94 &ir {

Completed in 47 milliseconds

1 2 3 4 5 6 7 8 9