| /netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/regex/internal/ |
| H A D | backtracking.d | 10 import std.regex.internal.ir; 314 pc, counter, disassemble(re.ir, pc, re.dict), in BacktrackingMatcher() 316 switch (re.ir[pc].code) in BacktrackingMatcher() 321 uint len = re.ir[pc].sequence; in BacktrackingMatcher() 323 if (re.ir[pc].data != front && re.ir[pc+1].data != front) in BacktrackingMatcher() 326 if (re.ir[pc].data == front) in BacktrackingMatcher() 335 if (atEnd || front != re.ir[pc].data) in BacktrackingMatcher() 347 if (atEnd || !re.charsets[re.ir[pc].data].scanFor(front)) in BacktrackingMatcher() 353 if (atEnd || !re.matchers[re.ir[pc].data][front]) in BacktrackingMatcher() 441 pc += re.ir[pc].data + IRL!(IR.InfiniteStart); in BacktrackingMatcher() [all …]
|
| H A D | parser.d | 10 import std.regex.internal.ir; 19 ir = g.ir; in makeRegex() 254 Bytecode[] ir; // resulting bytecode 269 ir.reserve((length*5+2)/4); in start() 288 canFind!(fix => ir[fix].code == IR.GroupStart && ir[fix].data == n)(); in isOpenGroup() 293 enforce(ir.length < maxCompiledLength, in put() 295 ir ~= code; in put() 300 enforce(ir.length < maxCompiledLength, in putRaw() 302 ir ~= Bytecode.fromRaw(number); in putRaw() 410 ir[fix] = Bytecode(ir[fix].code, in fixLookaround() [all …]
|
| H A D | generator.d | 18 import std.regex.internal.ir : Regex, IR, IRL; in SampleGenerator() 47 switch (re.ir[pc].code) in SampleGenerator() 50 formattedWrite(app,"%s", cast(dchar) re.ir[pc].data); in SampleGenerator() 54 uint len = re.ir[pc].sequence; in SampleGenerator() 55 formattedWrite(app, "%s", cast(dchar) re.ir[pc + rand(len)].data); in SampleGenerator() 60 auto set = re.charsets[re.ir[pc].data]; in SampleGenerator() 76 pc += IRL!(IR.GotoEndOr)+re.ir[pc].data; in SampleGenerator() 77 assert(re.ir[pc].code == IR.OrEnd); in SampleGenerator() 86 uint next = pc + re.ir[pc].data + IRL!(IR.Option); in SampleGenerator() 89 while (re.ir[next].code == IR.Option) in SampleGenerator() [all …]
|
| H A D | thompson.d | 14 import std.regex.internal.ir; 96 finish(t, matches, re.ir[t.pc].data); in with() 246 t.pc += re.ir[t.pc].data + IRL!(IR.InfiniteStart); 253 t.pc += re.ir[t.pc].data + IRL!(IR.InfiniteBloomStart); 260 t.pc += re.ir[t.pc].data + IRL!(IR.InfiniteQStart); 267 t.pc += re.ir[t.pc].data + IRL!(IR.RepeatStart); 274 t.pc += re.ir[t.pc].data + IRL!(IR.RepeatQStart); 284 uint len = re.ir[t.pc].data; in with() 285 uint step = re.ir[t.pc+2].raw; in with() 286 uint min = re.ir[t.pc+3].raw; in with() [all …]
|
| H A D | kickstart.d | 10 import std.regex.internal.ir; 152 switch (re.ir[i].code) in ShiftOr() 155 fChar = re.ir[i].data; in ShiftOr() 188 switch (re.ir[t.pc].code) in ShiftOr() 191 uint s = charLen(re.ir[t.pc].data); in ShiftOr() 194 t.add(re.ir[t.pc].data); in ShiftOr() 199 uint len = re.ir[t.pc].sequence; in ShiftOr() 205 auto x = charLen(re.ir[t.pc+i].data); in ShiftOr() 211 t.add(re.ir[i].data); in ShiftOr() 229 auto set = re.charsets[re.ir[t.pc].data]; in ShiftOr() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/ |
| H A D | backtracking.d | 10 import std.regex.internal.ir; 342 pc, counter, disassemble(re.ir, pc, re.dict), in matchImpl() 344 switch (re.ir[pc].code) in matchImpl() 349 uint len = re.ir[pc].sequence; in matchImpl() 351 if (re.ir[pc].data != front && re.ir[pc+1].data != front) in matchImpl() 354 if (re.ir[pc].data == front) in matchImpl() 363 if (atEnd || front != re.ir[pc].data) in matchImpl() 375 if (atEnd || !re.charsets[re.ir[pc].data].scanFor(front)) in matchImpl() 381 if (atEnd || !re.matchers[re.ir[pc].data][front]) in matchImpl() 469 pc += re.ir[pc].data + IRL!(IR.InfiniteStart); in matchImpl() [all …]
|
| H A D | parser.d | 7 import std.regex.internal.ir; 23 ir = g.ir; in makeRegex() 173 Bytecode[] ir; // resulting bytecode 188 ir.reserve((length*5+2)/4); in start() 207 canFind!(fix => ir[fix].code == IR.GroupStart && ir[fix].data == n)(); in isOpenGroup() 212 enforce(ir.length < maxCompiledLength, in put() 214 ir ~= code; in put() 219 enforce(ir.length < maxCompiledLength, in putRaw() 221 ir ~= Bytecode.fromRaw(number); in putRaw() 329 ir[fix] = Bytecode(ir[fix].code, in fixLookaround() [all …]
|
| H A D | generator.d | 18 import std.regex.internal.ir : Regex, IR, IRL; in SampleGenerator() 47 switch (re.ir[pc].code) in SampleGenerator() 50 formattedWrite(app,"%s", cast(dchar) re.ir[pc].data); in SampleGenerator() 54 uint len = re.ir[pc].sequence; in SampleGenerator() 55 formattedWrite(app, "%s", cast(dchar) re.ir[pc + rand(len)].data); in SampleGenerator() 60 auto set = re.charsets[re.ir[pc].data]; in SampleGenerator() 76 pc += IRL!(IR.GotoEndOr)+re.ir[pc].data; in SampleGenerator() 77 assert(re.ir[pc].code == IR.OrEnd); in SampleGenerator() 86 uint next = pc + re.ir[pc].data + IRL!(IR.Option); in SampleGenerator() 89 while (re.ir[next].code == IR.Option) in SampleGenerator() [all …]
|
| H A D | thompson.d | 14 import std.regex.internal.ir; 96 finish(t, matches, re.ir[t.pc].data); in with() 246 t.pc += re.ir[t.pc].data + IRL!(IR.InfiniteStart); 253 t.pc += re.ir[t.pc].data + IRL!(IR.InfiniteBloomStart); 260 t.pc += re.ir[t.pc].data + IRL!(IR.InfiniteQStart); 267 t.pc += re.ir[t.pc].data + IRL!(IR.RepeatStart); 274 t.pc += re.ir[t.pc].data + IRL!(IR.RepeatQStart); 284 uint len = re.ir[t.pc].data; in with() 285 uint step = re.ir[t.pc+2].raw; in with() 286 uint min = re.ir[t.pc+3].raw; in with() [all …]
|
| H A D | kickstart.d | 10 import std.regex.internal.ir; 152 switch (re.ir[i].code) in ShiftOr() 155 fChar = re.ir[i].data; in ShiftOr() 188 switch (re.ir[t.pc].code) in ShiftOr() 191 uint s = charLen(re.ir[t.pc].data); in ShiftOr() 194 t.add(re.ir[t.pc].data); in ShiftOr() 199 uint len = re.ir[t.pc].sequence; in ShiftOr() 205 auto x = charLen(re.ir[t.pc+i].data); in ShiftOr() 211 t.add(re.ir[i].data); in ShiftOr() 229 auto set = re.charsets[re.ir[t.pc].data]; in ShiftOr() [all …]
|
| /netbsd-src/share/i18n/esdb/ISO646/ |
| H A D | ISO646.alias | 4 IRV:1983 iso-ir-2 irv 5 GB iso646-gb bs_4730 iso-ir-4 6 US iso646-us ansi_x3.4-1968 iso-ir-6 ansi_x3.4-1986 iso_646.irv:1991 ascii us-ascii us ibm367 cp36… 7 SE iso646-se sen_850200_b iso-ir-10 fi iso646-fi se 8 SE2 iso646-se2 sen_850200_c iso-ir-11 se2 9 JP iso646-jp iso-ir-14 jis_c6220-1969-ro jp 10 IT iso646-it it iso-ir-15 11 PT iso646-pt pt iso-ir-16 12 ES iso646-es es iso-ir-17 13 DE iso646-de din_66003 iso-ir-21 de [all …]
|
| /netbsd-src/sys/dev/isa/ |
| H A D | isv.c | 123 isv_read(struct isv_regs *ir, bus_size_t reg) in isv_read() argument 125 return bus_space_read_2(ir->ir_bt, ir->ir_bh, reg); in isv_read() 129 isv_write(struct isv_regs *ir, bus_size_t reg, uint16_t val) in isv_write() argument 131 bus_space_write_2(ir->ir_bt, ir->ir_bh, reg, val); in isv_write() 135 isv_retrace(struct isv_regs *ir) in isv_retrace() argument 139 video = isv_read(ir, ISV_STATUS) & ISV_STATUS_VIDEO_MASK; in isv_retrace() 174 isv_probe(struct isv_regs *ir) in isv_probe() argument 181 isv_write(ir, ISV_CONTROL, in isv_probe() 192 if (isv_delta(&state, isv_retrace(ir))) in isv_probe() 207 struct isv_regs ir; in isv_match() local [all …]
|
| /netbsd-src/sys/arch/hppa/spmath/ |
| H A D | fpudispatch.c | 116 decode_0c(unsigned ir,unsigned class,unsigned subop,unsigned fpregs[]) in decode_0c() argument 123 if (ir == COPR_INST) { in decode_0c() 128 r1 = extru(ir,fpr1pos,5) * sizeof(double)/sizeof(unsigned); in decode_0c() 131 t = extru(ir,fptpos,5) * sizeof(double)/sizeof(unsigned); in decode_0c() 134 fmt = extru(ir,fpfmtpos,2); /* get fmt completer */ in decode_0c() 198 df = extru(ir,fpdfpos,2); /* get dest format */ in decode_0c() 274 r2 = extru(ir, fpr2pos, 5) * sizeof(double)/sizeof(unsigned); in decode_0c() 289 extru(ir,fptpos,5),status)); in decode_0c() 292 extru(ir,fptpos,5),status)); in decode_0c() 307 return(ftest(0,extru(ir,fptpos,5), in decode_0c() [all …]
|
| /netbsd-src/sys/arch/hppa/hppa/ |
| H A D | intr.c | 74 struct hppa_interrupt_register *ir) in hppa_interrupt_register_establish() argument 79 memset(ir, 0, sizeof(*ir)); in hppa_interrupt_register_establish() 80 ir->ir_ci = ci; in hppa_interrupt_register_establish() 83 ir->ir_bits_map[idx] = IR_BIT_UNUSED; in hppa_interrupt_register_establish() 85 ir->ir_bits = ~0; in hppa_interrupt_register_establish() 92 hppa_interrupt_registers[idx] = ir; in hppa_interrupt_register_establish() 128 struct hppa_interrupt_register *ir, int bit_pos) in hppa_intr_establish() argument 131 struct cpu_info *ci = ir->ir_ci; in hppa_intr_establish() 144 if (IR_BIT_USED_P(ir->ir_bits_map[31 ^ bit_pos])) in hppa_intr_establish() 159 ir->ir_bits_map[31 ^ bit_pos] = IR_BIT_REG(idx); in hppa_intr_establish() [all …]
|
| /netbsd-src/sys/crypto/camellia/ |
| H A D | camellia.c | 105 #define CAMELLIA_F(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \ argument 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) \ argument 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); \ [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/hcrypto/ |
| H A D | camellia-ntt.c | 117 #define CAMELLIA_F(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \ argument 120 ir = xr ^ kr; \ 122 t1 = ir >> 16; \ 123 yl = CAMELLIA_SP1110(ir & 0xff) \ 126 ^ CAMELLIA_SP4404((ir >> 8) & 0xff); \ 158 #define CAMELLIA_ROUNDSM(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) \ argument 160 ir = CAMELLIA_SP1110(xr & 0xff) \ 169 ir ^= kr; \ 170 ir ^= il; \ 172 il ^= ir; \ [all …]
|
| /netbsd-src/usr.bin/make/unit-tests/ |
| H A D | var-scope-local.mk | 29 .SUFFIXES: .ir-gen-from .ir-from .ir-to 35 all: target-rule.ir-gen-from dir/subdir/target-rule-dir.ir-gen-from 36 target-rule.ir-gen-from dir/subdir/target-rule-dir.ir-gen-from: 43 .ir-from.ir-to: 49 .ir-gen-from.ir-from: 57 all: inference-rule.ir-to dir/subdir/inference-rule.ir-to 58 inference-rule.ir-from: .PHONY 59 dir/subdir/inference-rule.ir-from: .PHONY 62 all: inference-rule-chain.ir-to dir/subdir/inference-rule-chain.ir-to 63 inference-rule-chain.ir-gen-from: .PHONY [all …]
|
| /netbsd-src/sys/dev/ieee1394/ |
| H A D | fwdev.c | 102 struct fw_xferq *ir; member 182 if (d->ir != NULL) { in fw_close() 183 struct fw_xferq *ir = d->ir; in fw_close() local 185 if ((ir->flag & FWXFERQ_OPEN) == 0) in fw_close() 187 if (ir->flag & FWXFERQ_RUNNING) { in fw_close() 188 ir->flag &= ~FWXFERQ_RUNNING; in fw_close() 189 fc->irx_disable(fc, ir->dmach); in fw_close() 192 fwdev_freebuf(ir); in fw_close() 194 for (xfer = STAILQ_FIRST(&ir->q); xfer != NULL; in fw_close() 195 xfer = STAILQ_FIRST(&ir->q)) { in fw_close() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/test/recipes/80-test_cmp_http_data/ |
| H A D | test_enrollment.csv | 4 1,newkey, -section,, -cmd,ir, -newkey,new.key,, -newkeypass,pass:,,,BLANK,,BLANK,,BLANK,,BLANK,,BLA… 5 0,newkey missing arg, -section,, -cmd,ir, -newkey,,, -newkeypass,pass:,,,BLANK,,BLANK,,BLANK,,BLANK… 6 0,newkey is directory, -section,, -cmd,ir, -newkey,dir/,, -newkeypass,pass:,,,BLANK,,BLANK,,BLANK,,… 7 0,newkey too many parameters, -section,, -cmd,ir, -newkey,abc,def, -newkeypass,pass:,,,BLANK,,BLANK… 8 0,newkey is an RSA key, -section,, -cmd,ir, -newkey,test.RSA2048.pem,, -newkeypass,pass:,,,BLANK,,B… 10 1,newkeypass, -section,, -cmd,ir, -newkey,new_pass_12345.key,, -newkeypass,pass:12345,,,BLANK,,BLAN… 11 1,read newkeypass from file, -section,, -cmd,ir, -newkey,new_pass_12345.key,, -newkeypass,file:1234… 12 1,newkeypass no prefix, -section,, -cmd,ir, -newkey,new_pass_12345.key,, -newkeypass,12345,,,BLANK,… 13 0,no newkeypass, -section,, -cmd,ir, -newkey,new_pass_12345.key,,BLANK,,,,BLANK,,BLANK,,BLANK,,BLAN… 14 0,missing newkeypass parameter, -section,, -cmd,ir, -newkey,new_pass_12345.key,, -newkeypass,,,,BLA… [all …]
|
| H A D | test_commands.csv | 4 1,minimum options, -section,, -cmd,ir,,BLANK,,,BLANK,,,BLANK,,BLANK, 11 1,no cacertsout, -section,, -cmd,ir,,BLANK,,,BLANK,,,BLANK,,BLANK, 12 1,cacertsout given, -section,, -cmd,ir,, -cacertsout,_RESULT_DIR/test.cacerts.pem,,BLANK,,,BLANK,,B… 13 0,cacertsout missing arg, -section,, -cmd,ir,, -cacertsout,,,BLANK,,,BLANK,,BLANK, 46 1,ir + infotype, -section,, -cmd,ir,,BLANK,,, -infotype,signKeyPairTypes,,BLANK,,BLANK, 57 1,reqout ir+certConf rspout ip+pkiConf, -section,, -cmd,ir,,-reqout,_RESULT_DIR/ir.der _RESULT_DIR/… 59 1,reqin old tid, -section,, -cmd,ir,,-reqin,_RESULT_DIR/ir.der _RESULT_DIR/certConf.der,,BLANK,,,BL… 60 1,reqin new tid, -section,, -cmd,ir,,-reqin,_RESULT_DIR/ir.der _RESULT_DIR/certConf.der,,BLANK,,,BL… 61 0,reqin wrong req, -section,, -cmd,ir,,-reqin,_RESULT_DIR/cr.der _RESULT_DIR/certConf.der,,BLANK,,,… 62 1,rspin, -section,, -cmd,ir,,BLANK,,,-rspin,_RESULT_DIR/ip.der _RESULT_DIR/pkiConf.der,,BLANK,,BLAN… [all …]
|
| /netbsd-src/share/i18n/esdb/ISO-8859/ |
| H A D | ISO-8859.alias | 3 1 iso-8859-1 iso8859-1 iso_8859-1:1987 iso-ir-100 iso_8859-1 latin1 l1 ibm819 cp819 4 2 iso-8859-2 iso8859-2 iso_8859-2:1987 iso-ir-101 iso_8859-2 latin2 l2 ibm912 cp912 5 3 iso-8859-3 iso8859-3 iso_8859-3:1988 iso-ir-109 iso_8859-3 latin3 l3 ibm913 cp913 6 4 iso-8859-4 iso8859-4 iso_8859-4:1988 iso-ir-110 iso_8859-4 latin4 l4 ibm914 cp914 7 5 iso-8859-5 iso8859-5 iso_8859-5:1988 iso-ir-144 iso_8859-5 cyrillic ibm915 cp915 8 6 iso-8859-6 iso-8859-6-i iso-8859-6-e iso8859-6 iso_8859-6:1987 iso-ir-127 iso_8859-6 ecma-114 asm… 9 7 iso-8859-7 iso8859-7 iso_8859-7:1987 iso-ir-126 iso_8859-7 elot_928 ecma-118 greek greek8 ibm813 … 10 8 iso-8859-8 iso-8859-8-i iso-8859-8-e iso8859-8 iso_8859-8:1988 iso-ir-138 iso_8859-8 hebrew ibm91… 11 9 iso-8859-9 iso8859-9 iso_8859-9:1989 iso-ir-148 iso_8859-9 latin5 l5 ibm920 cp920 12 10 iso-8859-10 iso8859-10 iso_8859-10:1992 iso-ir-157 iso_8859-10 latin6 l6 [all …]
|
| /netbsd-src/sys/dev/ir/ |
| H A D | files.ir | 1 # $NetBSD: files.ir,v 1.3 2007/03/06 20:34:36 drochner Exp $ 11 file dev/ir/irframe.c irframe | irframedrv needs-flag 16 file dev/ir/cir.c cir needs-flag 19 file dev/ir/irframe_tty.c irframetty needs-flag 21 file dev/ir/ir.c cir | irframedrv 22 file dev/ir/sir.c irdasir
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/test/profile/ |
| H A D | instrprof-value-prof.test | 7 // RUN: %clang -O2 -mllvm -disable-vp=false -mllvm -profile-generate=%t.ir.profraw -c -o %t.ir.o %… 8 // RUN: %clang_profgen -O2 -o %t.ir %t.ir.o 9 // RUN: %run %t.ir 10 // RUN: llvm-profdata merge -o %t.ir.profdata %t.ir.profraw 11 // RUN: llvm-profdata show --all-functions -ic-targets %t.ir.profdata | FileCheck %S/Inputs/instr…
|
| /netbsd-src/external/bsd/openldap/dist/libraries/liblmdb/ |
| H A D | midl.c | 227 int i,j,k,l,ir,jstack; in mdb_midl_sort() local 230 ir = (int)ids[0]; in mdb_midl_sort() 234 if (ir - l < SMALL) { /* Insertion sort */ in mdb_midl_sort() 235 for (j=l+1;j<=ir;j++) { in mdb_midl_sort() 244 ir = istack[jstack--]; in mdb_midl_sort() 247 k = (l + ir) >> 1; /* Choose median of left, center, right */ in mdb_midl_sort() 249 if (ids[l] < ids[ir]) { in mdb_midl_sort() 250 MIDL_SWAP(ids[l], ids[ir]); in mdb_midl_sort() 252 if (ids[l+1] < ids[ir]) { in mdb_midl_sort() 253 MIDL_SWAP(ids[l+1], ids[ir]); in mdb_midl_sort() [all …]
|
| /netbsd-src/sys/arch/hppa/dev/ |
| H A D | cpu.c | 92 struct hppa_interrupt_register *ir; in cpuattach() local 172 ir = &ci->ci_ir; in cpuattach() 173 hppa_interrupt_register_establish(ci, ir); in cpuattach() 174 ir->ir_iscpu = true; in cpuattach() 175 ir->ir_ci = ci; in cpuattach() 176 ir->ir_name = device_xname(self); in cpuattach() 189 ir->ir_rbits = ((1 << 28) | (1 << 27)); in cpuattach() 190 ir->ir_bits &= ~ir->ir_rbits; in cpuattach()
|