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

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
mi-py-modify-bp.py 19 bp = bps[0] variable
21 bp.thread = 1
22 bp.thread = None
24 bp.inferior = 1
25 bp.inferior = None
  /src/external/zlib/pigz/dist/zopfli/
zopfli_lib.c 28 unsigned char bp = 0; local
30 in, insize, &bp, out, outsize);
  /src/sys/arch/alpha/stand/common/
putulong.c 32 char buf[sizeof (ul) * 2], *bp; local
34 for (bp = buf; ul != 0; ul >>= 4)
35 *bp++ = hexdigits[ul & 0xf];
36 while (bp-- > buf)
37 putchar(*bp);
  /src/usr.sbin/tcpdchk/
percent_m.c 32 char *bp = obuf; local
35 while ((*bp = *cp) != '\0')
37 strcpy(bp, strerror(errno));
38 bp += strlen(bp);
41 bp++, cp++;
  /src/external/bsd/iscsi/dist/src/lib/
crc32.c 137 const uint8_t *bp = (const uint8_t *) buff; local
141 crc = ((crc >> 8) & 0x00ffffff) ^ crc_table[(crc ^ *bp++) & 0xff];
  /src/external/bsd/ntp/dist/libntp/
modetoa.c 16 char *bp; local
30 LIB_GETBUF(bp);
31 snprintf(bp, LIB_BUFLENGTH, "mode#%zu", mode);
32 return bp;
humandate.c 20 char * bp; local
29 LIB_GETBUF(bp);
31 snprintf(bp, LIB_BUFLENGTH, "%2d %s %02d:%02d:%02d",
35 return bp;
48 char * bp; local
55 LIB_GETBUF(bp);
57 snprintf(bp, LIB_BUFLENGTH, "%02d:%02d:%02d",
60 return bp;
uglydate.c 20 char *bp; local
28 LIB_GETBUF(bp);
46 snprintf(bp, LIB_BUFLENGTH,
51 return bp;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
py-breakpoint-create-fail.py 27 bp = MyBP("does_not_exist", gdb.BP_WATCHPOINT) variable
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
mi-py-modify-bp.py 19 bp = bps[0] variable
21 bp.thread = 1
22 bp.thread = None
24 bp.inferior = 1
25 bp.inferior = None
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
py-breakpoint-create-fail.py 27 bp = MyBP("does_not_exist", gdb.BP_WATCHPOINT) variable
  /src/sys/arch/luna68k/stand/boot/
ufs_disksubr.c 97 uint8_t *bp = lbl_buff; local
112 if (scsi_immed_command(ctlr, id, 0, &cdb, bp, DEV_BSIZE) != 0) {
115 for (dlp = (struct disklabel *)bp;
116 dlp <= (struct disklabel *)(bp + DEV_BSIZE - sizeof(*dlp));
  /src/usr.sbin/lpr/common_source/
common_vars.c 50 char *bp; /* pointer into printcap buffer. */ variable
  /src/external/bsd/libarchive/dist/libarchive/
archive_entry_strmode.c 43 char *bp = entry->strmode; local
48 strcpy(bp, "?rwxrwxrwx ");
52 case AE_IFREG: bp[0] = '-'; break;
53 case AE_IFBLK: bp[0] = 'b'; break;
54 case AE_IFCHR: bp[0] = 'c'; break;
55 case AE_IFDIR: bp[0] = 'd'; break;
56 case AE_IFLNK: bp[0] = 'l'; break;
57 case AE_IFSOCK: bp[0] = 's'; break;
58 case AE_IFIFO: bp[0] = 'p'; break;
61 bp[0] = 'h'
    [all...]
  /src/games/mille/
varpush.c 84 char buf[80], *bp; local
88 if ((bp = strchr(buf, '\n')) != NULL)
89 *bp = '\0';
  /src/sbin/efi/
utils.h 61 char *bp; local
63 bp = emalloc(len * 2 + 1);
65 snprintf(&bp[i * 2], 3, "%02x", data[i]);
66 bp[len * 2] = '\0';
68 return bp;
  /src/sys/external/bsd/drm2/include/drm/
drm_sysctl.h 33 const void *bp, *ep, *bd, *ed; member in struct:drm_sysctl_def
  /src/tests/lib/csu/
h_preinit_array.c 18 static void (*bp) (void) __attribute__((__section__(".preinit_array"), __used__)) = variable
  /src/tests/net/bpf/
t_div-by-zero.c 22 struct bpf_program bp; local
37 bp.bf_len = __arraycount(bins);
38 bp.bf_insns = bins;
43 ATF_REQUIRE_EQ_MSG(rump_sys_ioctl(fd, BIOCSETF, &bp), -1,
  /src/external/bsd/nvi/dist/common/
args.h 24 CHAR_T *bp; /* Argument. */ member in struct:_args
  /src/external/ibm-public/postfix/dist/src/util/
argv_split.c 69 char *bp = saved_string; local
72 while ((arg = mystrtok(&bp, delim)) != 0)
85 char *bp = saved_string; local
90 while (count-- > 1 && (arg = mystrtok(&bp, delim)) != 0)
92 if (*bp)
93 bp += strspn(bp, delim);
94 if (*bp)
95 argv_add(argvp, bp, (char *) 0);
106 char *bp = saved_string local
    [all...]
argv_split_at.c 76 char *bp = saved_string; local
79 while ((arg = split_at(bp, sep)) != 0) {
80 argv_add(argvp, bp, (char *) 0);
81 bp = arg;
83 argv_add(argvp, bp, (char *) 0);
95 char *bp = saved_string; local
100 while (count-- > 1 && (arg = split_at(bp, sep)) != 0) {
101 argv_add(argvp, bp, (char *) 0);
102 bp = arg;
104 argv_add(argvp, bp, (char *) 0)
115 char *bp = saved_string; local
    [all...]
argv_splitq.c 73 char *bp = saved_string; local
76 while ((arg = mystrtokq(&bp, delim, parens)) != 0)
90 char *bp = saved_string; local
95 while (count-- > 1 && (arg = mystrtokq(&bp, delim, parens)) != 0)
97 if (*bp)
98 bp += strspn(bp, delim);
99 if (*bp)
100 argv_add(argvp, bp, (char *) 0);
112 char *bp = saved_string local
    [all...]
  /src/external/lgpl3/mpfr/dist/src/
cmpabs.c 33 mp_limb_t *bp, *cp; local
74 bp = MPFR_MANT(b);
79 if (bp[bn] > cp[cn])
81 if (bp[bn] < cp[cn])
86 if (bp[bn])
  /src/games/sail/
dr_5.c 75 struct BP *bp; local
82 bp = isdefense ? from->file->DBP : from->file->OBP;
83 for (n=0; n < NBP; n++, bp++) {
84 if (bp->turnsent && bp->toship == to)
85 men += bp->mensent;

Completed in 25 milliseconds

1 2 3 4 5 6 7 8 91011>>