Searched refs:bb (Results 1 - 25 of 30) sorted by relevance

12

/barrelfish-2018-10-04/lib/libc/quad/
H A Dcmpdi2.c51 union uu aa, bb; local
54 bb.q = b;
55 return (aa.sl[H] < bb.sl[H] ? 0 : aa.sl[H] > bb.sl[H] ? 2 :
56 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Ducmpdi2.c50 union uu aa, bb; local
53 bb.uq = b;
54 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 :
55 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
H A Danddi3.c49 union uu aa, bb; local
52 bb.q = b;
53 aa.ul[0] &= bb.ul[0];
54 aa.ul[1] &= bb.ul[1];
H A Diordi3.c49 union uu aa, bb; local
52 bb.q = b;
53 aa.ul[0] |= bb.ul[0];
54 aa.ul[1] |= bb.ul[1];
H A Dxordi3.c49 union uu aa, bb; local
52 bb.q = b;
53 aa.ul[0] ^= bb.ul[0];
54 aa.ul[1] ^= bb.ul[1];
H A Dadddi3.c51 union uu aa, bb, sum; local
54 bb.q = b;
55 sum.ul[L] = aa.ul[L] + bb.ul[L];
56 sum.ul[H] = aa.ul[H] + bb.ul[H] + (sum.ul[L] < bb.ul[L]);
H A Dsubdi3.c50 union uu aa, bb, diff; local
53 bb.q = b;
54 diff.ul[L] = aa.ul[L] - bb.ul[L];
55 diff.ul[H] = aa.ul[H] - bb.ul[H] - (diff.ul[L] > aa.ul[L]);
/barrelfish-2018-10-04/usr/bench/bulk_bench/
H A Dbulkbench.c169 struct bulk_buf *bb; local
172 bb = bulk_alloc(&bt);
173 if(bb == NULL) {
177 } while(bb == NULL);
180 void *bbuf = bulk_buf_get_mem(bb);
185 uintptr_t id = bulk_prepare_send(bb);
/barrelfish-2018-10-04/lib/barrelfish/
H A Dbulk_transfer.c148 * \param bb bulk buffer to copy the data
152 void bulk_buf_copy(struct bulk_buf *bb, void *buf, size_t buf_size) argument
155 assert(buf_size <= bb->size);
156 dst = bulk_buf_get_mem(bb);
/barrelfish-2018-10-04/lib/net_device_manager/
H A Dsoft_filt_cl_impl.c368 struct bulk_buf *bb; local
372 bb = bulk_alloc(&bt_filter_tx);
373 if (bb == NULL) {
378 } while (bb == NULL);
379 void *bbuf = bulk_buf_get_mem(bb);
431 uint64_t id = bulk_prepare_send(bb);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/
H A Dfcrypt.c106 unsigned char bb[9]; local
107 unsigned char *b=bb;
150 bb[8]=0;
157 if (bb[y] & u) c|=1;
H A Ddes.c122 unsigned char bb[300]; variable
679 OPENSSL_cleanse(bb,sizeof(bb));
781 memcpy(out,bb,(unsigned int)valid);
800 i=uudecode(b,i,bb);
806 memcpy(&(out[tot]),bb,(unsigned int)j);
808 memcpy(bb,&(bb[j]),(unsigned int)i-j);
812 memcpy(&(out[tot]),bb,(unsigned int)i);
/barrelfish-2018-10-04/lib/rcce/
H A Dring_barriers.c250 struct bulk_buf *bb = bulk_alloc(&st->bt); local
251 assert(bb != NULL);
252 void *buf = bulk_buf_get_mem(bb);
259 uintptr_t id = bulk_prepare_send(bb);
/barrelfish-2018-10-04/lib/gdtoa/
H A Dstrtod.c102 Bigint *bb, *bb1, *bd, *bd0, *bs, *delta; local
184 switch((i = gethex(&s, &fpi1, &exp, &bb, sign)) & STRTOG_Retmask) {
191 if (bb) {
192 copybits(bits, fpi.nbits, bb);
193 Bfree(bb);
489 Bfree(bb);
582 bb = d2b(dval(&rv), &bbe, &bbbits); /* rv = bb * 2^bbe */
647 bb1 = mult(bs, bb);
648 Bfree(bb);
[all...]
H A Dstrtodg.c334 Bigint *ab, *bb, *bb1, *bd, *bd0, *bs, *delta, *rvb, *rvb0; local
717 bb = Balloc(rvb->k);
718 Bcopy(bb, rvb);
752 bb1 = mult(bs, bb);
753 Bfree(bb);
754 bb = bb1;
758 bb = lshift(bb, bb2);
760 rshift(bb, -bb2);
769 delta = diff(bb, b
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/asm/
H A Dppc64-mont.pl131 $ba="f0"; $bb="f1"; $bc="f2"; $bd="f3";
273 lfd $bb,`$FRAME+8`($sp)
289 fcfid $bb,$bb
317 fmul $T1b,$A1,$bb
321 fmul $T2b,$A2,$bb
325 fmul $T3b,$A3,$bb
329 fmul $T0b,$A0,$bb
425 fmul $T1b,$A1,$bb
427 fmul $T2b,$A2,$bb
[all...]
H A Dsparcv9a-mont.pl109 $ba="%f0"; $bb="%f2"; $bc="%f4"; $bd="%f6";
206 ldda [%o4+0]%asi,$bb
217 fxtod $bb,$bb
234 fmuld $alo,$bb,$alob
245 fmuld $ahi,$bb,$ahib
294 fmuld $alo,$bb,$alob
327 fmuld $ahi,$bb,$ahib
382 fmuld $alo,$bb,$alob
408 fmuld $ahi,$bb,
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Visualisation/src/com/parctechnologies/eclipse/jdotview/
H A DGraphVizPanel.java115 Rectangle2D bb = graph.getBoundingBox();
116 if(bb.getWidth() > bb.getHeight())
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_lib.c801 BN_ULONG aa,bb; local
804 bb=b[n-1];
805 if (aa != bb) return((aa > bb)?1:-1);
809 bb=b[i];
810 if (aa != bb) return((aa > bb)?1:-1);
/barrelfish-2018-10-04/include/barrelfish/
H A Dbulk_transfer.h54 void bulk_buf_copy(struct bulk_buf *bb, void *buf, size_t buf_size);
/barrelfish-2018-10-04/lib/cxx/cxx/
H A Dlocale.cpp4783 char* bb = buf; local
4786 while (bb != be)
4788 if (ct.is(ctype_base::space, *bb))
4791 for (++bb; bb != be && ct.is(ctype_base::space, *bb); ++bb)
4795 char* w = bb;
4807 bb = w;
4810 w = bb;
4934 const char* bb = buf; local
5118 const char* bb = buf; local
5147 const char* bb = buf; local
5174 const char* bb = buf; local
5991 const char* bb = lc->currency_symbol; local
6074 const char* bb = lc->int_curr_symbol; local
[all...]
/barrelfish-2018-10-04/usr/replay/
H A Dmaster.c780 struct bulk_buf *bb; local
784 bb = bulk_alloc(&sl->bt);
785 if (bb == NULL) {
788 bulk_buf_copy(bb, sl->pe->tes, sl->pe->tes_size);
789 bulk_id = bulk_prepare_send(bb);
/barrelfish-2018-10-04/usr/eclipseclp/
H A DPACK422 rpmbuild --rcfile /usr/lib/rpm/rpmrc:.rpmrc --target=$TARGET -bb "$RPM_SPEC_NAME"
H A Dconfigure2001 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
3899 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
3925 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
3993 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
4102 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
5567 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
5798 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
6634 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
7210 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
7257 rm -f core *.core core.conftest.* gmon.out bb
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Dapps.c1557 const char *aa,*bb; local
1560 for (bb=b[DB_serial]; *bb == '0'; bb++);
1561 return(strcmp(aa,bb));

Completed in 204 milliseconds

12