HomeSort by: relevance | last modified time | path
    Searched defs:rnum (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/games/backgammon/common_source/
back.h 46 #define rnum(r) ((int)(random()%r)) macro
  /src/crypto/external/apache2/openssl/lib/libdes/
oenc_read.c 100 long num=0,rnum; local
166 rnum=(num < 8)?8:((num+7)/8*8);
169 while (net_num < rnum)
171 i=read(fd,(void *)&(net[net_num]),rnum-net_num);
196 /* >output is a multiple of 8 byes, if len < rnum
201 if (len < rnum)
oenc_writ.c 86 long rnum; local
133 rnum=8;
138 rnum=((len+7)/8*8); /* round up to nearest eight */
149 outnum=rnum+HDRSIZE;
  /src/crypto/external/bsd/openssl/lib/libdes/
oenc_read.c 100 long num=0,rnum; local
166 rnum=(num < 8)?8:((num+7)/8*8);
169 while (net_num < rnum)
171 i=read(fd,(void *)&(net[net_num]),rnum-net_num);
196 /* >output is a multiple of 8 byes, if len < rnum
201 if (len < rnum)
oenc_writ.c 86 long rnum; local
133 rnum=8;
138 rnum=((len+7)/8*8); /* round up to nearest eight */
149 outnum=rnum+HDRSIZE;
  /src/crypto/external/bsd/openssl.old/lib/libdes/
oenc_read.c 100 long num=0,rnum; local
166 rnum=(num < 8)?8:((num+7)/8*8);
169 while (net_num < rnum)
171 i=read(fd,(void *)&(net[net_num]),rnum-net_num);
196 /* >output is a multiple of 8 byes, if len < rnum
201 if (len < rnum)
oenc_writ.c 86 long rnum; local
133 rnum=8;
138 rnum=((len+7)/8*8); /* round up to nearest eight */
149 outnum=rnum+HDRSIZE;
  /src/external/gpl2/mkhybrid/dist/libhfs_iso/
node.c 48 np->rnum = -1;
167 np->rnum = i;
225 if (right.rnum < mid)
273 if (right.rnum >= 0)
324 int rnum, i; local
327 rnum = np->rnum + 1;
332 ptr > HFS_NODEREC(*np, rnum) + reclen; --ptr)
337 for (i = np->nd.ndNRecs; i > rnum; --i)
342 memcpy(HFS_NODEREC(*np, rnum), record, reclen)
    [all...]
internal.h 80 # define HFS_NODEREC(nd, rnum) ((nd).data + (nd).roff[rnum])
271 int rnum; /* current record index */ member in struct:_node_
  /src/sys/dev/rasops/
rasops_bitops.h 222 int height, width, lnum, rnum, sb, db, full, cnt, sboff; local
294 rnum = (dst + num) & 31;
315 if ((sboff -= rnum) < 0) {
325 GETBITS(sp, sboff, rnum, tmp);
326 PUTBITS(tmp, 0, rnum, dp);
386 GETBITS(sp, sboff, rnum, tmp);
387 PUTBITS(tmp, 0, rnum, dp);
  /src/games/adventure/
io.c 61 static int rnum(void);
194 static char breakch; /* tell which char ended rnum */
275 rnum(void) function
302 if ((locc = rnum()) != oldloc && oldloc >= 0 /* finished msg */
366 if ((locc = rnum()) != oldloc && oldloc >= 0 && t) {
404 t->tverb = rnum(); /* get verb from the file */
443 idx = rnum();
465 if ((obj = rnum()) < 0)
467 plac[obj] = rnum(); /* initial loc for this obj */
469 fixd[obj] = rnum();
    [all...]
  /src/external/bsd/less/dist/
os.c 409 uintmax rnum = r * num; local
410 uintmax quot = qnum + rnum / den;
411 uintmax rem = rnum % den;
  /src/external/cddl/osnet/dist/cmd/zfs/
zfs_iter.c 291 uint64_t lnum, rnum; local
298 * Otherwise, we compare 'lnum' and 'rnum'.
346 &rnum, NULL, NULL, 0);
358 else if (lnum < rnum)
360 else if (lnum > rnum)
  /src/sys/arch/sparc/dev/
ts102.c 308 int node, slot, rnum, base, size; local
372 for (rnum = 0; rnum < TS102_RANGE_CNT; rnum++) {
373 base = (slot * TS102_RANGE_CNT + rnum) * 5;
374 TSPRINTF("%d: %08x %08x ",rnum,ranges[base + 3],
387 td->td_space[rnum] = hrang;
  /src/sys/arch/luna68k/dev/
omrasops.c 1287 int sb, eb, db, sboff, full, cnt, lnum, rnum; local
1323 rnum = (dstx + w) & ALIGNMASK;
1364 GETBITS(P0(sp), sboff, rnum, tmp); local
1365 PUTBITS(tmp, 0, rnum, P0(dp));
1378 sboff -= rnum;
1387 if (rnum != 0) {
1388 GETBITS(P0(sp), sboff, rnum, tmp); local
1389 PUTBITS(tmp, 0, rnum, P0(dp));
1420 int sb, eb, db, sboff, full, cnt, lnum, rnum; local
1462 rnum = (dstx + w) & ALIGNMASK
1515 GETBITS(P0(sp), sboff, rnum, tmp); local
1517 GETBITS(P1(sp), sboff, rnum, tmp); local
1519 GETBITS(P2(sp), sboff, rnum, tmp); local
1521 GETBITS(P3(sp), sboff, rnum, tmp); local
1545 GETBITS(P0(sp), sboff, rnum, tmp); local
1547 GETBITS(P1(sp), sboff, rnum, tmp); local
1549 GETBITS(P2(sp), sboff, rnum, tmp); local
1551 GETBITS(P3(sp), sboff, rnum, tmp); local
    [all...]
  /src/sys/arch/x86/include/
bootinfo.h 210 uint8_t rnum; member in struct:btinfo_framebuffer
  /src/external/bsd/openldap/dist/tests/progs/
slapd-tester.c 158 int rnum = 0; local
446 rnum = get_read_entries( rfile, rreqs, rflts );
447 if ( rnum < 0 ) {
450 rfile, -2*(rnum + 1) );
830 if ( DOREQ( rnum, j ) ) {
831 int jj = j % rnum;
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
dfa.c 3287 int lnum, rnum; local
3297 for (rnum = 0; right[rnum] != NULL; ++rnum)
3299 temp = comsubs(left[lnum], right[rnum]);
  /src/external/gpl2/grep/dist/src/
dfa.c 3298 int lnum, rnum; local
3308 for (rnum = 0; right[rnum] != NULL; ++rnum)
3310 temp = comsubs(left[lnum], right[rnum]);
  /src/external/gpl3/gcc/dist/gcc/
dwarf2cfi.cc 285 const unsigned int rnum = DWARF2_FRAME_REG_OUT (dnum, 1);
286 const unsigned int dcol = DWARF_REG_TO_UNWIND_COLUMN (rnum);
293 if (rnum >= DWARF_FRAME_REGISTERS)
283 const unsigned int rnum = DWARF2_FRAME_REG_OUT (dnum, 1); local
  /src/external/gpl3/gcc.old/dist/gcc/
dwarf2cfi.cc 285 const unsigned int rnum = DWARF2_FRAME_REG_OUT (dnum, 1);
286 const unsigned int dcol = DWARF_REG_TO_UNWIND_COLUMN (rnum);
293 if (rnum >= DWARF_FRAME_REGISTERS)
283 const unsigned int rnum = DWARF2_FRAME_REG_OUT (dnum, 1); local
  /src/sys/dev/pci/
pci_subr.c 4415 int rnum; local
4418 rnum = PCIREG_SHIFTOUT(reg, PCI_LMR_LCTL_RNUM);
4420 printf("%s\n", pcie_receive_number_up[rnum]);
4422 printf("%s\n", pcie_receive_number_dp[rnum]);
4424 printf("%x\n", rnum);
  /src/external/gpl3/binutils/dist/gas/config/
tc-z80.c 990 int rnum = symbol_get_value_expression (op->X_add_symbol)->X_add_number; local
991 if ( ((REG_IX != rnum) && (REG_IY != rnum)) || contains_register (op->X_op_symbol))
1021 op->X_add_number = rnum;
1308 int rnum; local
1310 rnum = arg->X_add_number;
1316 if (rnum != REG_HL)
1322 rnum = 6;
1326 if ((prefix == 0) && (rnum & R_INDEX))
1328 prefix = (rnum & R_IX) ? 0xDD : 0xFD
1519 int rnum; local
1569 int rnum; local
1640 int rnum; local
1702 int rnum; local
2925 int rnum; local
3112 int rnum; local
    [all...]
  /src/external/gpl3/binutils.old/dist/gas/config/
tc-z80.c 990 int rnum = symbol_get_value_expression (op->X_add_symbol)->X_add_number; local
991 if ( ((REG_IX != rnum) && (REG_IY != rnum)) || contains_register (op->X_op_symbol))
1021 op->X_add_number = rnum;
1308 int rnum; local
1310 rnum = arg->X_add_number;
1316 if (rnum != REG_HL)
1322 rnum = 6;
1326 if ((prefix == 0) && (rnum & R_INDEX))
1328 prefix = (rnum & R_IX) ? 0xDD : 0xFD
1544 int rnum; local
1594 int rnum; local
1665 int rnum; local
1727 int rnum; local
2950 int rnum; local
3137 int rnum; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/msp430/
msp430.cc 3227 unsigned int rnum = DWARF2_FRAME_REG_OUT (dnum, 1);
3229 if (rnum < DWARF_FRAME_REGISTERS)
3231 HOST_WIDE_INT offset = rnum * GET_MODE_SIZE (QImode);
3218 unsigned int rnum = DWARF2_FRAME_REG_OUT (dnum, 1); local

Completed in 126 milliseconds

1 2