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

1 2

  /src/sys/dev/usb/
emdtv_board.c 81 const struct emdtv_board *eb; local
85 eb = &emdtv_boards[i];
86 if (vendor == eb->eb_vendor && product == eb->eb_product)
87 return eb;
emdtv.c 388 const struct emdtv_board *eb = sc->sc_board; local
399 const struct emdtv_gpio_regs *r = &eb->eb_gpio_regs;
  /src/crypto/external/bsd/heimdal/dist/lib/wind/
errorlist.c 46 const struct error_entry *eb = (const struct error_entry*)b; local
48 if (ea->start >= eb->start && ea->start < eb->start + eb->len)
50 return ea->start - eb->start;
bidi.c 46 const struct range_entry *eb = (const struct range_entry*)b; local
48 if (ea->start >= eb->start && ea->start < eb->start + eb->len)
50 return ea->start - eb->start;
  /src/external/gpl3/binutils/dist/gas/
hash.c 38 const string_tuple_t *eb = b; local
40 return strcmp (ea->key, eb->key) == 0;
  /src/external/gpl3/binutils.old/dist/gas/
hash.c 38 const string_tuple_t *eb = b; local
40 return strcmp (ea->key, eb->key) == 0;
  /src/usr.bin/nbperf/
graph2.c 86 *eb = &sorting_graph->edges[*b]; local
88 if (ea->vertices[i] < eb->vertices[i])
90 if (ea->vertices[i] > eb->vertices[i])
  /src/sbin/gpt/
main.c 120 char *eb; local
127 l = strtoll(b, &eb, 0);
128 if (b == eb || *eb || errno) {
  /src/sbin/newfs_msdos/
newfs_msdos.c 66 char *eb; local
81 l = strtoll(b, &eb, 0);
82 if (b == eb || *eb || errno)
  /src/sys/ufs/chfs/
chfs_nodeops.c 346 struct chfs_eraseblock *eb, *tmpeb; local
348 TAILQ_FOREACH_SAFE(eb, &chmp->chm_free_queue, queue, tmpeb) {
349 if (eb == cheb) {
356 TAILQ_FOREACH_SAFE(eb, &chmp->chm_dirty_queue, queue, tmpeb) {
357 if (eb == cheb) {
365 TAILQ_FOREACH_SAFE(eb, &chmp->chm_very_dirty_queue, queue, tmpeb) {
366 if (eb == cheb) {
374 TAILQ_FOREACH_SAFE(eb, &chmp->chm_clean_queue, queue, tmpeb) {
375 if (eb == cheb) {
chfs_gc.c 424 struct chfs_eraseblock *eb; local
523 eb = chmp->chm_gcblock;
525 if (!eb) {
526 eb = find_gc_block(chmp);
529 if (!eb) {
530 dbg_gc("!eb\n");
539 if (!eb->used_size) {
540 dbg_gc("!eb->used_size\n");
545 nref = eb->gc_node;
546 gcblock_dirty = eb->dirty_size
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
var-tag.cc 37 enum EE {ea, eb, ec} ee; enumerator in enum:EE
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
var-tag.cc 37 enum EE {ea, eb, ec} ee; enumerator in enum:EE
  /src/external/lgpl3/mpfr/dist/tests/
tagm.c 51 mpfr_exp_t ea, eb, ec, e0; local
57 eb = mpfr_get_exp (tb);
61 if ((i == 1 && ea < eb) || (i == 2 && ea > eb))
64 mpfr_set_exp (tb, e0 + (eb - ea));
69 mpfr_set_exp (ta, e0 + (ea - eb));
71 mpfr_set_exp (tc, e0 + (ec - eb));
tset_sj.c 180 mpfr_exp_t e, ep[1 + 8 * 5], eb[] = local
187 for (i = 0; i < numberof(eb); i++)
189 ep[1 + 8 * i + j] = eb[i] - j;
tset_si.c 99 mpfr_exp_t e, ep[1 + 8 * 5], eb[] = local
106 for (i = 0; i < numberof(eb); i++)
108 ep[1 + 8 * i + j] = eb[i] - j;
tadd.c 1201 mpfr_exp_t eb; local
1210 for (eb = 0; eb <= pmax + 3; eb ++)
1212 mpfr_set_ui_2exp (b, 1, eb, MPFR_RNDN);
1213 while (mpfr_cmp_ui_2exp (b, 1, eb + 1) < 0)
1255 mpfr_exp_t eb; local
1269 for (eb = 0; eb <= pmax + 3; eb ++
    [all...]
tsub.c 894 mpfr_exp_t eb; local
903 for (eb = 0; eb <= pmax + 3; eb ++)
905 mpfr_set_ui_2exp (b, 1, eb, MPFR_RNDN);
906 while (mpfr_cmp_ui_2exp (b, 1, eb + 1) < 0)
948 mpfr_exp_t eb; local
962 for (eb = 0; eb <= pmax + 3; eb ++
    [all...]
  /src/lib/libedit/
keymacro.c 622 if (b < eb) \
633 char *b = buf, *eb = b + len; local
650 ssize_t n = ct_encode_char(b, (size_t)(eb - b), *p2++);
  /src/sys/arch/amiga/stand/binpatch/
binpatch.c 406 char *eb = strchr(symbol, ']'); local
412 if (eb && (eb > sb)) {
413 if ((eb - symbol) == (sz - 1)) {
426 *eb = '\0';
  /src/tests/lib/libc/net/
h_dns_server.c 144 char *eb = buf + buflen; local
147 if (b < eb) \
  /src/usr.sbin/makefs/
makefs.c 478 char *eb; local
490 l = strtoll(b, &eb, 0);
491 if (b == eb || *eb || errno)
  /src/external/bsd/wpa/dist/src/tls/
pkcs5.c 571 u8 *eb, pad; local
594 eb = os_malloc(enc_data_len);
595 if (eb == NULL) {
600 if (crypto_cipher_decrypt(ctx, enc_data, eb, enc_data_len) < 0) {
601 wpa_printf(MSG_DEBUG, "PKCS #5: Failed to decrypt EB");
603 os_free(eb);
608 pad = eb[enc_data_len - 1];
611 os_free(eb);
615 if (eb[i] != pad) {
617 eb + enc_data_len - pad, pad)
    [all...]
  /src/bin/pax/
options.c 2110 char *eb; local
2122 l = strtoll(b, &eb, 0);
2123 if (b == eb || *eb || errno)
  /src/external/bsd/openldap/dist/servers/slapd/
connection.c 2021 conn_fake_extblock *eb = data; local
2024 op.o_hdr->oh_extensions = eb->eb_op;
2025 conn.c_extensions = eb->eb_conn;
2030 ber_memfree_x( eb, NULL );
2094 conn_fake_extblock *eb; local
2100 eb = ch_malloc( sizeof( *eb ));
2103 eb->eb_conn = conn->c_extensions;
2104 eb->eb_op = op->o_hdr->oh_extensions;
2106 eb, connection_fake_destroy, NULL, NULL )
    [all...]

Completed in 46 milliseconds

1 2