| /src/external/lgpl3/mpfr/dist/src/ |
| dot.c | 35 mpfr_ptr *tab; local 45 tab = (mpfr_ptr *) mpfr_allocate_func (n * sizeof (mpfr_ptr)); 51 tab[i] = c[i]; 53 inex = mpfr_sum (res, tab, n, rnd); 57 mpfr_free_func (tab, n * sizeof (mpfr_ptr));
|
| /src/sys/arch/ews4800mips/stand/common/ |
| boot_device.c | 45 void (*tab[])(int *, int *) = { variable 69 if (i < sizeof tab / sizeof tab[0]) 70 return tab[i](type, unit);
|
| /src/tests/usr.bin/indent/ |
| opt_di.c | 10 int tab; variable 18 int tab; variable 62 * default configuration, the next tab stop would be at indentation 8. 68 /* The indentation consists of a single tab. */ 73 /* The indentation consists of a tab and a space. */ 85 * which in the default configuration amounts to a single tab. 89 int tab; variable 96 int tab; variable
|
| /src/crypto/external/apache2/openssl/dist/crypto/bn/ |
| bn_kron.c | 24 * In 'tab', only odd-indexed entries are relevant: 26 * tab[BN_lsw(n) & 7] 30 static const int tab[8] = { 0, 1, 0, -1, 0, -1, 0, 1 }; local 80 ret = tab[BN_lsw(A) & 7]; 117 ret = ret * tab[BN_lsw(B) & 7];
|
| /src/crypto/external/bsd/openssl/dist/crypto/bn/ |
| bn_kron.c | 24 * In 'tab', only odd-indexed entries are relevant: 26 * tab[BN_lsw(n) & 7] 30 static const int tab[8] = { 0, 1, 0, -1, 0, -1, 0, 1 }; local 80 ret = tab[BN_lsw(A) & 7]; 117 ret = ret * tab[BN_lsw(B) & 7];
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/bn/ |
| bn_kron.c | 24 * In 'tab', only odd-indexed entries are relevant: 26 * tab[BN_lsw(n) & 7] 30 static const int tab[8] = { 0, 1, 0, -1, 0, -1, 0, 1 }; local 80 ret = tab[BN_lsw(A) & 7]; 117 ret = ret * tab[BN_lsw(B) & 7];
|
| /src/external/lgpl3/mpfr/dist/tests/ |
| tdot.c | 28 mpfr_t tab[3], r; local 35 mpfr_init2 (tab[i], 16); 36 mpfr_set_ui (tab[i], 1, MPFR_RNDN); 37 tabp[i] = tab[i]; 47 mpfr_clears (tab[0], tab[1], tab[2], r, (mpfr_ptr) 0); 53 mpfr_t tab[3], r; local 58 mpfr_inits2 (53, tab[0], tab[1], tab[2], r, (mpfr_ptr) 0) [all...] |
| /src/sys/arch/arm/sunxi/ |
| sunxi_ccu_nkmp.c | 141 const struct sunxi_ccu_nkmp_tbl *tab; local 149 for (tab = nkmp->table; tab->rate > 0; tab++) 150 if (tab->rate == rate) 152 if (tab->rate == 0) 158 if (nkmp->p && __SHIFTOUT(val, nkmp->p) < tab->p) { 160 val |= __SHIFTIN(tab->p, nkmp->p); 164 if (nkmp->m && __SHIFTOUT(val, nkmp->m) < tab->m) { 166 val |= __SHIFTIN(tab->m, nkmp->m) [all...] |
| /src/sys/arch/hpc/stand/hpcboot/ |
| framebuffer.cpp | 45 struct framebuffer_info *tab = _table; local 57 for (; tab->cpu; tab++) { 58 entry.dw.dw0 = tab->cpu; 59 entry.dw.dw1 = tab->machine; 61 if (tab->bpp == bpp) { 62 _fb = tab; 65 alt = tab;
|
| /src/sys/arch/hpc/stand/hpcboot/menu/ |
| tabwindow.cpp | 55 // set tab image. 93 if (GetKeyState(VK_SHIFT) & 0x8000) // Shift-Tab 111 TabWindow *tab = reinterpret_cast <TabWindow *> local 114 dst = GetNextDlgTabItem(tab->_window, NULL, FALSE); 162 // register myself to parent tab-control. 164 // fit my dialog size to tab-control window.
|
| /src/sys/arch/hpc/stand/hpcboot/sh3/ |
| sh_console.cpp | 53 const struct console_info *tab = _console_info; local 60 for (; tab->cpu; tab++) { 61 entry.dw.dw0 = tab->cpu; 62 entry.dw.dw1 = tab->machine; 66 cons.setBootConsole(tab->serial_console); 67 return tab; 69 cons.setBootConsole(tab->video_console); 70 return tab; 96 const struct console_info *tab = selectBootConsole(*this, SERIAL) local [all...] |
| /src/tests/lib/libc/string/ |
| t_memchr.c | 29 struct tab { struct 36 const struct tab tab[] = { local 98 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) { 100 strcpy(&buf[a], tab[t].val); 102 off = f(&buf[a], '/', tab[t].len); 103 if (tab[t].match == 0) { 110 } else if (tab[t].match == 1) { 111 if (tab[t].off != ((char*)off - &buf[a])) [all...] |
| t_strcat.c | 30 struct tab { struct 35 const struct tab tab[] = { local 88 for (t0 = 0; t0 < __arraycount(tab); ++t0) { 89 for (t1 = 0; t1 < __arraycount(tab); ++t1) { 91 memcpy(&buf0[a0], tab[t0].val, 92 tab[t0].len + 1); 93 memcpy(&buf1[a1], tab[t1].val, 94 tab[t1].len + 1); 111 if (memcmp(&buf0[a0] + tab[t0].len [all...] |
| t_strchr.c | 66 const char *tab[] = { local 259 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) { 260 int len = strlen(tab[t]) + 1; 261 memcpy(&buf[a], tab[t], len);
|
| t_strchrnul.c | 65 const char *tab[] = { local 258 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) { 259 int len = strlen(tab[t]) + 1; 260 memcpy(&buf[a], tab[t], len);
|
| t_strcmp.c | 30 struct tab { struct 36 const struct tab tab[] = { local 78 for (t = 0; t < __arraycount(tab); ++t) { 79 memcpy(&buf0[a0], tab[t].val0, 80 strlen(tab[t].val0) + 1); 81 memcpy(&buf1[a1], tab[t].val1, 82 strlen(tab[t].val1) + 1); 86 if ((ret == 0 && tab[t].ret != 0) || 87 (ret < 0 && tab[t].ret >= 0) | [all...] |
| t_strcpy.c | 30 struct tab { struct 35 const struct tab tab[] = { local 88 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) { 90 memcpy(&buf1[a1], tab[t].val, tab[t].len + 1); 108 tab[t].len + 1) != 0) {
|
| t_strrchr.c | 29 struct tab { struct 36 const struct tab tab[] = { local 220 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) { 221 strcpy(&buf[a], tab[t].val); 224 if (tab[t].match == 0) { 230 } else if (tab[t].match == 1) { 231 if (tab[t].l_off != (off - &buf[a])) {
|
| t_strlen.c | 51 struct tab { struct 56 const struct tab tab[] = { local 117 for (t = 0; t < (sizeof(tab) / sizeof(tab[0])); ++t) { 119 memcpy(&buf[a], tab[t].val, tab[t].len + 1); 122 if (len != tab[t].len) { 131 write_num(tab[t].len); 133 write(2, tab[t].val, tab[t].len) [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/asn1/ |
| hash.h | 54 Hashentry *tab[1]; /* The table */ member in struct:hashtab
|
| /src/external/gpl3/gdb/dist/sim/testsuite/bfin/ |
| l0.s | 7 loadsym P0, tab; 95 tab: label
|
| /src/external/gpl3/gdb.old/dist/sim/testsuite/bfin/ |
| l0.s | 7 loadsym P0, tab; 95 tab: label
|
| /src/external/mpl/bind/dist/lib/dns/ |
| iptable.c | 30 dns_iptable_t *tab = isc_mem_get(mctx, sizeof(*tab)); local 31 *tab = (dns_iptable_t){ 35 isc_mem_attach(mctx, &tab->mctx); 37 isc_radix_create(mctx, &tab->radix, RADIX_MAXBITS); 39 *target = tab; 49 dns_iptable_addprefix(dns_iptable_t *tab, const isc_netaddr_t *addr, 56 INSIST(DNS_IPTABLE_VALID(tab)); 57 INSIST(tab->radix != NULL); 61 result = isc_radix_insert(tab->radix, &node, NULL, &pfx) [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| iptable.c | 34 dns_iptable_t *tab; local 36 tab = isc_mem_get(mctx, sizeof(*tab)); 37 tab->mctx = NULL; 38 isc_mem_attach(mctx, &tab->mctx); 39 isc_refcount_init(&tab->refcount, 1); 40 tab->radix = NULL; 41 tab->magic = DNS_IPTABLE_MAGIC; 43 result = isc_radix_create(mctx, &tab->radix, RADIX_MAXBITS); 48 *target = tab; 156 dns_iptable_t *tab = *tabp; local [all...] |
| /src/external/bsd/jemalloc/dist/include/jemalloc/internal/ |
| ckh.h | 62 ckhc_t *tab; member in struct:__anon6744
|