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

1 2

  /src/usr.sbin/umcpmioctl/
putflash.c 58 uint8_t *bbuf = &current_flash.res.get_blob[0]; local
62 fprintf(stderr, "%02x ", bbuf[i]);
174 uint8_t *bbuf = &current_flash.res.get_blob[0]; local
178 fprintf(stderr, "%02x ", bbuf[i]);
346 uint8_t *bbuf = &current_flash.res.get_blob[0]; local
350 fprintf(stderr, "%02x ", bbuf[i]);
415 uint8_t *bbuf = &current_flash.res.get_blob[0]; local
419 fprintf(stderr, "%02x ", bbuf[i]);
431 bbuf = &req->cmd;
435 fprintf(stderr, "%02x ", bbuf[i])
    [all...]
  /src/bin/ln/
ln.c 237 char bbuf[PATH_MAX]; local
260 if (strlcpy(bbuf, source, sizeof(bbuf)) >= sizeof(bbuf) ||
261 (p = basename(bbuf)) == NULL ||
286 strlcpy(bbuf, target, sizeof(bbuf));
287 p = dirname(bbuf);
  /src/sys/arch/hppa/stand/common/
lif.c 163 char bbuf[DEV_BSIZE]; local
164 size_t bsize, count = sizeof(bbuf);
173 for (p = bbuf; size; fp->f_seek += bsize, p += bsize) {
180 if (p == bbuf) {
181 bsize = sizeof(bbuf) - (foff & (sizeof(bbuf) - 1));
183 memcpy(buf, bbuf + (foff & (sizeof(bbuf) - 1)), bsize);
  /src/sys/arch/macppc/dev/
ofb.c 397 u_char rbuf[256], gbuf[256], bbuf[256]; local
409 error = copyin(cm->blue, &bbuf[index], count);
415 memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
platinumfb.c 988 u_char rbuf[256], gbuf[256], bbuf[256]; local
999 error = copyin(cm->blue, &bbuf[index], count);
1005 memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
  /src/sys/arch/newsmips/apbus/
xafb.c 392 u_char rbuf[256], gbuf[256], bbuf[256]; local
404 error = copyin(cm->blue, &bbuf[index], count);
410 memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
  /src/sys/arch/prep/pci/
gten.c 396 u_char rbuf[256], gbuf[256], bbuf[256]; local
407 error = copyin(cm->blue, &bbuf[index], count);
413 memcpy(&gt->gt_cmap_blue[index], &bbuf[index], count);
  /src/sys/arch/sparc64/dev/
gfb.c 402 u_char rbuf[256], gbuf[256], bbuf[256]; local
416 error = copyin(cm->blue, &bbuf[index], count);
422 memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
  /src/tests/crypto/libcrypto/ecdh/
ecdhtest.c 129 unsigned char *abuf = NULL, *bbuf = NULL; local
236 bbuf = (unsigned char *)OPENSSL_malloc(blen);
238 ECDH_compute_key(bbuf, blen, EC_KEY_get0_public_key(a), b, KDF1_SHA1);
243 sprintf(buf, "%02X", bbuf[i]);
252 if ((aout < 4) || (bout != aout) || (memcmp(abuf, bbuf, aout) != 0)) {
274 sprintf(buf, "%02X", bbuf[i]);
298 if (bbuf != NULL)
299 OPENSSL_free(bbuf);
  /src/external/gpl2/xcvs/dist/src/
add.c 541 char *bbuf; local
544 bbuf = Xasprintf (" on branch `%s'",
548 bbuf = "";
551 finfo.fullname, bbuf, vers->vn_rcs);
553 free (bbuf);
  /src/crypto/external/apache2/openssl/dist/ssl/
ssl_cert.c 715 unsigned char *abuf = NULL, *bbuf = NULL; local
722 blen = i2d_X509_NAME((X509_NAME *)b, &bbuf);
729 ret = memcmp(abuf, bbuf, alen);
732 OPENSSL_free(bbuf);
  /src/crypto/external/bsd/openssl/dist/ssl/
ssl_cert.c 595 unsigned char *abuf = NULL, *bbuf = NULL; local
602 blen = i2d_X509_NAME((X509_NAME *)b, &bbuf);
609 ret = memcmp(abuf, bbuf, alen);
612 OPENSSL_free(bbuf);
  /src/crypto/external/bsd/openssl.old/dist/ssl/
ssl_cert.c 572 unsigned char *abuf = NULL, *bbuf = NULL; local
579 blen = i2d_X509_NAME((X509_NAME *)b, &bbuf);
586 ret = memcmp(abuf, bbuf, alen);
589 OPENSSL_free(bbuf);
  /src/crypto/external/bsd/openssl.old/dist/test/
dhtest.c 43 unsigned char *bbuf = NULL; local
186 if (!TEST_ptr(bbuf = OPENSSL_malloc(blen))
187 || !TEST_true((bout = DH_compute_key(bbuf, apub_key, b)) != -1))
196 || !TEST_mem_eq(abuf, aout, bbuf, bout)
214 OPENSSL_free(bbuf);
631 unsigned char *bbuf = NULL; local
665 if (!TEST_ptr(bbuf = OPENSSL_malloc(blen))
666 || !TEST_true((bout = DH_compute_key(bbuf, apub_key, b)) != -1))
670 || !TEST_mem_eq(abuf, aout, bbuf, bout))
677 OPENSSL_free(bbuf);
    [all...]
  /src/sys/dev/ic/
ct65550.c 338 u_char rbuf[256], gbuf[256], bbuf[256]; local
352 error = copyin(cm->blue, &bbuf[index], count);
358 memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
  /src/crypto/external/apache2/openssl/dist/test/
dhtest.c 52 unsigned char *bbuf = NULL; local
215 if (!TEST_ptr(bbuf = OPENSSL_malloc(blen))
216 || !TEST_int_gt((bout = DH_compute_key(bbuf, apub_key, b)), 0))
225 || !TEST_mem_eq(abuf, aout, bbuf, bout)
243 OPENSSL_free(bbuf);
667 unsigned char *bbuf = NULL; local
701 if (!TEST_int_gt(blen, 0) || !TEST_ptr(bbuf = OPENSSL_malloc(blen))
702 || !TEST_int_gt((bout = DH_compute_key(bbuf, apub_key, b)), 0))
706 || !TEST_mem_eq(abuf, aout, bbuf, bout))
713 OPENSSL_free(bbuf);
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
dhtest.c 52 unsigned char *bbuf = NULL; local
215 if (!TEST_ptr(bbuf = OPENSSL_malloc(blen))
216 || !TEST_true((bout = DH_compute_key(bbuf, apub_key, b)) != -1))
225 || !TEST_mem_eq(abuf, aout, bbuf, bout)
243 OPENSSL_free(bbuf);
667 unsigned char *bbuf = NULL; local
701 if (!TEST_int_gt(blen, 0) || !TEST_ptr(bbuf = OPENSSL_malloc(blen))
702 || !TEST_true((bout = DH_compute_key(bbuf, apub_key, b)) != -1))
706 || !TEST_mem_eq(abuf, aout, bbuf, bout))
713 OPENSSL_free(bbuf);
    [all...]
  /src/external/bsd/pcc/dist/pcc/cc/cpp/
cpp.h 117 usch bbuf[BBUFSZ]; member in struct:includ
119 usch *bbuf; member in struct:includ
  /src/sys/arch/arm/ti/
omap3_dss.c 697 u_char rbuf[256], gbuf[256], bbuf[256]; local
708 error = copyin(cm->blue, &bbuf[index], count);
714 memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
  /src/sys/arch/hppa/dev/
gftfb.c 721 u_char rbuf[256], gbuf[256], bbuf[256]; local
732 error = copyin(cm->blue, &bbuf[index], count);
738 memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
hyperfb.c 712 u_char rbuf[256], gbuf[256], bbuf[256]; local
723 error = copyin(cm->blue, &bbuf[index], count);
729 memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
summitfb.c 790 u_char rbuf[256], gbuf[256], bbuf[256]; local
801 error = copyin(cm->blue, &bbuf[index], count);
807 memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
  /src/sys/arch/sparc/dev/
cgfourteen.c 897 u_char rbuf[256], gbuf[256], bbuf[256]; local
908 error = copyin(cm->blue, &bbuf[index], count);
915 sc->sc_cmap.cm_map[index][1] = bbuf[index];
929 uint8_t rbuf[256], gbuf[256], bbuf[256]; local
941 bbuf[i] = sc->sc_cmap.cm_map[index][1];
951 error = copyout(bbuf, cm->blue, count);
  /src/sys/dev/pci/
pm2fb.c 662 u_char rbuf[256], gbuf[256], bbuf[256]; local
676 error = copyin(cm->blue, &bbuf[index], count);
682 memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);
pm3fb.c 537 u_char rbuf[256], gbuf[256], bbuf[256]; local
548 error = copyin(cm->blue, &bbuf[index], count);
554 memcpy(&sc->sc_cmap_blue[index], &bbuf[index], count);

Completed in 66 milliseconds

1 2