Searched refs:pb (Results 226 - 243 of 243) sorted by relevance

12345678910

/netbsd-6-1-5-RELEASE/usr.sbin/moused/
H A Dmoused.c2070 register int pb; local
2123 for (pb = 0; (pb < MOUSE_MAXBUTTON) && (pbuttons != 0); ++pb) {
2124 lbuttons |= (pbuttons & 1) ? p2l[pb] : 0;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libmudflap/
H A Dmf-hooks2.c630 struct mf_filebuffer **pb = & mf_filebuffers; local
635 *pb = b->next;
640 pb = & b->next;
/netbsd-6-1-5-RELEASE/sys/dev/ic/
H A Dncr53c9x.c1596 uint8_t *pb; local
1605 pb = sc->sc_imess + 1;
1609 pb = sc->sc_imess;
1614 if (__verify_msg_format(pb, plen))
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/xz/
H A Dmessage.c979 // With LZMA1 also lc/lp/pb are known when
990 ",pb=%" PRIu32
993 opt->lc, opt->lp, opt->pb,
1172 " pb=NUM number of position bits (0-4; 2)\n"
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dflow.c1398 basic_block pb = e->src;
1399 if (pb->aux == NULL)
1401 *qtail++ = pb;
1404 pb->aux = pb;
1395 basic_block pb = e->src; local
H A Dtree-ssa-structalias.c3063 fieldoff_compare (const void *pa, const void *pb) argument
3066 const fieldoff_s *fob = (const fieldoff_s *)pb;
/netbsd-6-1-5-RELEASE/sys/dev/raidframe/
H A Drf_netbsdkintf.c2009 RF_SectorCount_t num_blocks, pb, sum; local
2063 pb = (bp->b_bcount & raidPtr->sectorMask) ? 1 : 0;
2064 sum = raid_addr + num_blocks + pb;
2068 (int) pb, (int) bp->b_resid));
2071 || (sum < num_blocks) || (sum < pb)) {
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-reassoc.c322 sort_by_operand_rank (const void *pa, const void *pb) argument
325 const operand_entry_t oeb = *(const operand_entry_t *)pb;
H A Ddbxout.c2468 output_types_sort (const void *pa, const void *pb)
2471 const tree rhs = *((const tree *)pb);
2460 output_types_sort(const void *pa, const void *pb) argument
H A Dtree-ssa-sccvn.c2712 compare_ops (const void *pa, const void *pb) argument
2715 const tree opb = *((const tree *)pb);
H A Dtree-ssa-structalias.c4183 fieldoff_compare (const void *pa, const void *pb) argument
4186 const fieldoff_s *fob = (const fieldoff_s *)pb;
/netbsd-6-1-5-RELEASE/sys/netbt/
H A Dhci.h391 #define HCI_MK_CON_HANDLE(h, pb, bc) \
392 (((h) & 0x0fff) | (((pb) & 3) << 12) | (((bc) & 3) << 14))
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dkern_exec.c321 check_exec(struct lwp *l, struct exec_package *epp, struct pathbuf *pb) argument
328 NDINIT(&nd, LOOKUP, FOLLOW | LOCKLEAF | TRYEMULROOT, pb);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/binutils/
H A Dieee.c6037 struct ieee_buflist *pb;
6064 pb = &info->global_types;
6078 pb = &info->types;
6082 if (! ieee_append_buffer (info, pb, &info->type_stack->type.strdef)
6033 struct ieee_buflist *pb; local
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/src/
H A Drcs.c2210 char *rev, *pa, *pb; local
2266 pb = Xasprintf ("%s.%d.%s", rev, RCS_MAGIC_BRANCH, pa);
2268 rev = pb;
/netbsd-6-1-5-RELEASE/sys/dev/stbi/
H A Dstb_image.c2643 int pb = abs(p-b); local
2645 if (pa <= pb && pa <= pc) return a;
2646 if (pb <= pc) return b;
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dtommath.tex2536 \hspace{3mm}5.2 $pb \leftarrow \mbox{min}(b.used, digs - ix)$ \\
2537 \hspace{3mm}5.3 If $pb < 1$ then goto step 6. \\
2538 \hspace{3mm}5.4 for $iy$ from $0$ to $pb - 1$ do \\
2542 \hspace{3mm}5.5 if $ix + pb < digs$ then do \\
2543 \hspace{6mm}5.5.1 $t_{ix + pb} \leftarrow u$ \\
2567 All of step 5 is the infamous $O(n^2)$ multiplication loop slightly modified to only produce upto $digs$ digits of output. The $pb$ variable
2568 is given the count of digits to read from $b$ inside the nested loop. If $pb \le 1$ then no more output digits can be produced and the algorithm
2569 will exit the loop. The best way to think of the loops are as a series of $pb \times 1$ multiplications. That is, in each pass of the
2599 At step 5.5 the nested loop is finished and any carry that was left over should be forwarded. The carry does not have to be added to the $ix+pb$'th
2600 digit since that digit is assumed to be zero at this point. However, if $ix + pb \g
[all...]
/netbsd-6-1-5-RELEASE/external/public-domain/sqlite/dist/
H A Dsqlite3.c27438 struct ByteRangeLockPB2 pb; local
27441 pb.unLockFlag = setLockFlag ? 0 : 1;
27442 pb.startEndFlag = 0;
27443 pb.offset = offset;
27444 pb.length = length;
27445 pb.fd = pFile->h;
27448 (setLockFlag?"ON":"OFF"), pFile->h, (pb.fd==-1?"[testval-1]":""),
27450 err = fsctl(path, afpfsByteRangeLock2FSCTL, &pb, 0);
[all...]

Completed in 568 milliseconds

12345678910