| /src/common/lib/libc/arch/arm/quad/ |
| __aeabi_lcmp.c | 42 const union uu aa = { .q = a }, bb = { .q = b }; local 44 if (aa.sl[H] < bb.sl[H]) 46 if (aa.sl[H] > bb.sl[H]) 49 if (aa.sl[L] < bb.sl[L]) 51 if (aa.sl[L] > bb.sl[L])
|
| __aeabi_ulcmp.c | 42 const union uu aa = { .uq = a }, bb = { .uq = b }; local 44 if (aa.ul[H] < bb.ul[H]) 46 if (aa.ul[H] > bb.ul[H]) 49 if (aa.ul[L] < bb.ul[L]) 51 if (aa.ul[L] > bb.ul[L])
|
| /src/common/lib/libc/quad/ |
| adddi3.c | 55 union uu aa, bb, sum; local 58 bb.q = b; 59 sum.ul[L] = aa.ul[L] + bb.ul[L]; 60 sum.ul[H] = aa.ul[H] + bb.ul[H] + (sum.ul[L] < bb.ul[L]);
|
| anddi3.c | 53 union uu aa, bb; local 56 bb.q = b; 57 aa.ul[0] &= bb.ul[0]; 58 aa.ul[1] &= bb.ul[1];
|
| cmpdi2.c | 55 union uu aa, bb; local 58 bb.q = b; 59 return (aa.sl[H] < bb.sl[H] ? 0 : aa.sl[H] > bb.sl[H] ? 2 : 60 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
|
| iordi3.c | 53 union uu aa, bb; local 56 bb.q = b; 57 aa.ul[0] |= bb.ul[0]; 58 aa.ul[1] |= bb.ul[1];
|
| subdi3.c | 54 union uu aa, bb, diff; local 57 bb.q = b; 58 diff.ul[L] = aa.ul[L] - bb.ul[L]; 59 diff.ul[H] = aa.ul[H] - bb.ul[H] - (diff.ul[L] > aa.ul[L]);
|
| ucmpdi2.c | 54 union uu aa, bb; local 57 bb.uq = b; 58 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 : 59 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
|
| xordi3.c | 53 union uu aa, bb; local 56 bb.q = b; 57 aa.ul[0] ^= bb.ul[0]; 58 aa.ul[1] ^= bb.ul[1];
|
| /src/external/lgpl3/gmp/dist/mpz/ |
| ui_pow_ui.c | 40 mp_limb_t bb[2]; local 41 bb[0] = b & GMP_NUMB_MASK; 42 bb[1] = b >> GMP_NUMB_BITS; 43 mpz_n_pow_ui (r, bb, (mp_size_t) 2, e);
|
| /src/external/lgpl3/mpc/dist/src/ |
| ui_div.c | 28 mpc_t bb; local 30 mpc_init2 (bb, sizeof(unsigned long int) * CHAR_BIT); 31 mpc_set_ui (bb, b, rnd); /* exact */ 32 inex = mpc_div (a, bb, c, rnd); 33 mpc_clear (bb);
|
| /src/usr.sbin/installboot/arch/ |
| sparc64.c | 92 char bb[SPARC64_BOOT_BLOCK_MAX_SIZE]; local 106 rv = pread(params->fsfd, &bb, sizeof(bb), SPARC64_BOOT_BLOCK_OFFSET); 110 } else if (rv != sizeof(bb)) { 116 memset(&bb, 0, sizeof(bb)); 124 rv = pwrite(params->fsfd, &bb, sizeof(bb), SPARC64_BOOT_BLOCK_OFFSET); 128 } else if (rv != sizeof(bb)) { 139 char bb[SPARC64_BOOT_BLOCK_MAX_SIZE] local [all...] |
| x68k.c | 95 uint8_t *bb) 100 assert(bb != NULL); 102 memset(bb, 0, X68K_LABELOFFSET); 110 char bb[X68K_BOOT_BLOCK_MAX_SIZE]; local 151 memset(&bb, 0, sizeof bb); 152 rv = read(params->s1fd, &bb, sizeof bb); 158 memcpy(&bb[X68K_LABELOFFSET], &label, sizeof label); 172 rv = pwrite(params->fsfd, &bb, X68K_BOOT_BLOCK_MAX_SIZE [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| stack-ptr-mod.cc | 81 basic_block bb; local 88 FOR_EACH_BB_FN (bb, fun) 89 FOR_BB_INSNS (bb, insn)
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| stack-ptr-mod.cc | 81 basic_block bb; local 88 FOR_EACH_BB_FN (bb, fun) 89 FOR_BB_INSNS (bb, insn)
|
| /src/external/gpl3/gdb/dist/sim/testsuite/bfin/ |
| a4.s | 17 JUMP.S bb; 20 bb: label
|
| /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/ |
| a4.s | 17 JUMP.S bb; 20 bb: label
|
| /src/sys/arch/acorn32/stand/lib/ |
| riscospart.c | 152 struct filecore_bootblock *bb; local 161 bb = (struct filecore_bootblock *) buf; 162 if (bb->checksum == filecore_checksum((u_char *)bb)) { 163 if (bb->partition_type == PARTITION_FORMAT_RISCBSD) 164 labelsect = ((bb->partition_cyl_high << 8) + bb->partition_cyl_low) * 165 bb->heads * bb->secspertrack + LABELSECTOR;
|
| /src/sys/arch/alpha/stand/mkbootimage/ |
| mkbootimage.c | 60 struct alpha_boot_block *bb; local 133 bb = (struct alpha_boot_block *)outbuf; 134 bb->bb_secsize = howmany(insb.st_size, ALPHA_BOOT_BLOCK_BLOCKSIZE); 135 bb->bb_secstart = 1; 136 bb->bb_flags = 0; 137 ALPHA_BOOT_BLOCK_CKSUM(bb, &bb->bb_cksum); 141 (unsigned long long)bb->bb_secstart); 143 (unsigned long long)bb->bb_secsize); 145 (unsigned long long)bb->bb_cksum) [all...] |
| /src/sys/arch/arm/arm/ |
| disksubr_acorn.c | 184 struct filecore_bootblock *bb; local 217 bb = (struct filecore_bootblock *)bp->b_data; 221 if (bb->checksum != filecore_checksum((u_char *)bb)) { 232 cyl = bb->partition_cyl_low + (bb->partition_cyl_high << 8); 234 heads = bb->heads; 235 sectors = bb->secspertrack; 239 if (bb->partition_type == PARTITION_FORMAT_RISCBSD) { 245 } else if (bb->partition_type == PARTITION_FORMAT_RISCIX) 326 struct filecore_bootblock *bb; local [all...] |
| /src/usr.sbin/installboot/ |
| bbinfo.c | 62 uint8_t *bb; local 73 if ((bb = malloc(bbparams->maxsize)) == NULL) { 80 rv = pread(params->fsfd, bb, bbparams->maxsize, bbparams->offset); 90 memset(bb + bbparams->headeroffset, 0, 92 if (callback != NULL && ! (*callback)(params, bbparams, bb)) 103 rv = pwrite(params->fsfd, bb, bbparams->maxsize, bbparams->offset); 119 rv = pwrite(params->fsfd, bb, bbparams->maxsize, 137 if (bb != NULL) 138 free(bb); 146 uint8_t *bb; local [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/ec/curve448/arch_32/ |
| f_impl32.c | 30 uint32_t aa[8], bb[8]; local 35 bb[i] = b[i] + b[i + 8]; 42 accum1 += widemul(aa[j - i], bb[i]); 50 accum2 += widemul(aa[8 + j - i], bb[i]);
|
| /src/crypto/external/apache2/openssl/dist/crypto/ec/curve448/arch_64/ |
| f_impl64.c | 30 uint64_t aa[4], bb[4], bbb[4]; local 35 bb[i] = b[i] + b[i + 4]; 36 bbb[i] = bb[i] + b[i + 4]; 44 accum1 += widemul(aa[j], bb[i - j]); 50 accum0 += widemul(a[j + 4], bb[i + 4 - j]);
|
| /src/crypto/external/bsd/openssl/dist/crypto/ec/curve448/arch_32/ |
| f_impl32.c | 30 uint32_t aa[8], bb[8]; local 35 bb[i] = b[i] + b[i + 8]; 42 accum1 += widemul(aa[j - i], bb[i]); 50 accum2 += widemul(aa[8 + j - i], bb[i]);
|
| /src/crypto/external/bsd/openssl/dist/crypto/ec/curve448/arch_64/ |
| f_impl64.c | 30 uint64_t aa[4], bb[4], bbb[4]; local 35 bb[i] = b[i] + b[i + 4]; 36 bbb[i] = bb[i] + b[i + 4]; 44 accum1 += widemul(aa[j], bb[i - j]); 50 accum0 += widemul(a[j + 4], bb[i + 4 - j]);
|