Searched defs:bp (Results 1 - 25 of 67) sorted by relevance

123

/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/
H A Dw16stdio.c72 char *bp; local
74 bp = fgets( buf, (int) amount, stdin );
75 if ( bp == NULL )
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/
H A Dstrptime.c88 const unsigned char *bp; local
92 bp = (const unsigned char *)buf;
94 while (bp != NULL && (c = *fmt++) != '\0') {
101 while (isspace(*bp))
102 bp++;
113 if (c != *bp++)
171 bp = (const unsigned char *)strptime((const char *)bp,
181 bp = find_string(bp,
381 find_string(const unsigned char *bp, int *tgt, const char * const *n1, const char * const *n2, int c) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/gdtoa/
H A Dgethex.c42 gethex( CONST char **sp, CONST FPI *fpi, Long *expt, Bigint **bp, int sign) argument
167 *bp = 0;
189 *bp = b;
195 *bp = 0;
246 *bp = b;
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/core/
H A Dgdbmach.c64 static void gdbmach_commit_hwbp ( struct hwbp *bp ) {
65 unsigned int regnum = bp - hwbps;
71 __asm__ __volatile__ ( "movl %0, %%dr0\n" : : "r" ( bp->addr ) );
74 __asm__ __volatile__ ( "movl %0, %%dr1\n" : : "r" ( bp->addr ) );
77 __asm__ __volatile__ ( "movl %0, %%dr2\n" : : "r" ( bp->addr ) );
80 __asm__ __volatile__ ( "movl %0, %%dr3\n" : : "r" ( bp->addr ) );
86 dr7 |= bp->type << ( 16 + 4 * regnum );
90 dr7 |= bp->len << ( 18 + 4 * regnum );
94 dr7 |= bp->enabled << 2 * regnum;
98 struct hwbp *bp; local
[all...]
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_buf.c53 dt_buf_create(dtrace_hdl_t *dtp, dt_buf_t *bp, const char *name, size_t len) argument
58 bp->dbu_buf = bp->dbu_ptr = dt_zalloc(dtp, len);
59 bp->dbu_len = len;
61 if (bp->dbu_buf == NULL)
62 bp->dbu_err = dtrace_errno(dtp);
64 bp->dbu_err = 0;
66 bp->dbu_resizes = 0;
67 bp->dbu_name = name;
71 dt_buf_destroy(dtrace_hdl_t *dtp, dt_buf_t *bp) argument
80 dt_buf_reset(dtrace_hdl_t *dtp, dt_buf_t *bp) argument
89 dt_buf_write(dtrace_hdl_t *dtp, dt_buf_t *bp, const void *buf, size_t len, size_t align) argument
143 dt_buf_offset(const dt_buf_t *bp, size_t align) argument
150 dt_buf_len(const dt_buf_t *bp) argument
156 dt_buf_error(const dt_buf_t *bp) argument
162 dt_buf_ptr(const dt_buf_t *bp) argument
168 dt_buf_claim(dtrace_hdl_t *dtp, dt_buf_t *bp) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dns_addr.c115 register char *bp = buf; local
158 while (*bp) switch (*bp++) {
174 *--bp = '0';
183 *--bp = 0; /* Ends Loop */
196 for (bp = buf; *bp++; ) clen++;
200 bp = clen + buf - 3;
204 (void)sscanf(bp, fmt, hp);
205 bp[
[all...]
H A Dgetnetbydns.c127 char *in, *st, *pauxt, *bp, **ap; local
150 bp = netbuf;
167 n = dn_expand(answer->buf, eom, cp, bp, buflen);
168 if ((n < 0) || !res_dnok(bp))
172 (void)strncpy(&ans[0], bp, sizeof(ans) - 1);
179 n = dn_expand(answer->buf, eom, cp, bp, buflen);
180 if ((n < 0) || !res_hnok(bp)) {
185 *ap++ = bp;
186 bp += strlen(bp)
[all...]
H A Dns_name.c177 u_char *label, *bp, *eom; local
182 bp = dst;
184 label = bp++;
213 c = ((int)(bp - label) - 1);
226 if (bp >= eom) {
230 *bp++ = '\0';
232 if ((bp - dst) > MAXCDNAME) {
242 label = bp++;
245 if (bp >= eom) {
249 *bp
[all...]
/vbox/src/VBox/Devices/Network/lwip/src/netif/ppp/
H A Dvj.c462 u_short *bp; local
567 bp = (u_short *) &cs->cs_ip;
570 tmp += *bp++;
/vbox/src/VBox/Devices/Network/lwip-new/src/netif/ppp/
H A Dvj.c469 u_short *bp; local
579 bp = (u_short *) &cs->cs_ip;
582 tmp += *bp++;
/vbox/src/VBox/RDP/client-1.8.3/
H A Dutils.c148 char bp[PATH_MAX]; local
162 pt[0] = bp[0] = '\0';
163 strcpy(bp, path);
165 ptok = strtok(bp, "/");
171 if (ptok != bp)
/vbox/src/VBox/Devices/PC/BIOS/
H A Dinvop.c48 uint16_t bp; /* 82Ah */ member in struct:tag_ldall_286
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/
H A Dregisters.h21 * %dx, %si, %di, %bp or %sp.
72 uint16_t bp; member in union:i386_regs::__anon15045
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9002_phy.c302 int bp = 0; local
303 for (bp = 0; bp < 30; bp++) {
305 pilot_mask = pilot_mask | 0x1 << bp;
306 chan_mask = chan_mask | 0x1 << bp;
/vbox/src/libs/xpcom18a4/xpcom/base/
H A DnsStackFrameUnix.cpp99 void **bp = (void**) local
107 for ( ; (void**)*bp > bp; bp = (void**)*bp) {
108 void *pc = *(bp+1);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/
H A Dxf86int10.h40 int bp; member in struct:__anon6948
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/
H A Dxf86int10.h40 int bp; member in struct:__anon7259
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86int10.h40 int bp; member in struct:__anon7622
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86int10.h40 int bp; member in struct:__anon7987
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/
H A Dxf86int10.h40 int bp; member in struct:__anon8305
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/
H A Dxf86int10.h40 int bp; member in struct:__anon8618
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/
H A Dxf86int10.h40 int bp; member in struct:__anon8938
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/
H A Dxf86int10.h40 int bp; member in struct:__anon9255
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dxf86int10.h40 int bp; member in struct:__anon9576
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/
H A Dxf86int10.h41 int bp; member in struct:__anon4775

Completed in 176 milliseconds

123