HomeSort by: relevance | last modified time | path
    Searched defs:newc (Results 1 - 21 of 21) sorted by relevancy

  /src/external/gpl3/binutils/dist/gas/
frags.c 109 size_t newc;
115 newc = 2 * nchars;
117 newc = nchars + 0x10000;
118 newc += SIZEOF_STRUCT_FRAG;
121 if (newc < nchars)
127 /* Force to allocate at least NEWC bytes, but not less than the
130 if (newc > oldc)
131 obstack_chunk_size (&frchain_now->frch_obstack) = newc;
106 size_t newc; local
  /src/external/gpl3/binutils/dist/gprofng/src/
HeapMap.cc 154 HeapObj *newc = new HeapObj[HEAPCHUNKSZ]; local
157 c->addr = (void *) newc;
164 newc[i].next = newc + i + 1;
165 newc[HEAPCHUNKSZ - 1].next = NULL;
168 empty = newc;
  /src/external/gpl3/binutils.old/dist/gas/
frags.c 105 size_t newc;
111 newc = 2 * nchars;
113 newc = nchars + 0x10000;
114 newc += SIZEOF_STRUCT_FRAG;
117 if (newc < nchars)
123 /* Force to allocate at least NEWC bytes, but not less than the
126 if (newc > oldc)
127 obstack_chunk_size (&frchain_now->frch_obstack) = newc;
102 size_t newc; local
  /src/external/gpl3/binutils.old/dist/gprofng/src/
HeapMap.cc 154 HeapObj *newc = new HeapObj[HEAPCHUNKSZ]; local
157 c->addr = (void *) newc;
164 newc[i].next = newc + i + 1;
165 newc[HEAPCHUNKSZ - 1].next = NULL;
168 empty = newc;
  /src/sys/fs/msdosfs/
msdosfs_fat.c 671 u_long bn, bo, bsize, byteoffset, readcn, newc; local
692 newc = --count > 0 ? start : fillwith;
698 readcn |= newc & 0xfff;
701 readcn |= newc << 4;
709 putushort((char *)bp->b_data + bo, newc);
715 readcn |= newc & pmp->pm_fatmask;
  /src/crypto/external/bsd/netpgp/dist/src/libmj/
mj.c 49 char *newc; local
59 newc = cp;
62 *newc++ = JSON_ESCAPE;
63 *newc++ = '1';
66 *newc++ = JSON_ESCAPE;
67 *newc++ = '2';
70 *newc++ = JSON_ESCAPE;
71 *newc++ = '0';
74 *newc++ = *s++;
77 *newc = 0x0
    [all...]
  /src/external/bsd/tmux/dist/
grid.c 887 grid_string_cells_add_code(char *buf, size_t len, u_int n, int *s, int *newc,
898 memcmp(newc, oldc, nnewc * sizeof newc[0]) == 0)
900 if (reset && (newc[0] == 49 || newc[0] == 39))
909 xsnprintf(tmp, sizeof tmp, "%d;", newc[i]);
911 xsnprintf(tmp, sizeof tmp, "%d", newc[i]);
953 int oldc[64], newc[64], s[128]; local
1017 nnewc = grid_string_cells_fg(gc, newc);
1019 grid_string_cells_add_code(buf, len, n, s, newc, oldc, nnewc, noldc
    [all...]
  /src/external/gpl3/gdb/dist/gdb/cli/
cli-script.c 1382 struct cmd_list_element *c, *newc, *hookc = 0, **list;
1465 newc = add_cmd (comname, class_user, user_defined_command,
1468 newc->user_commands = std::move (cmds);
1474 newc->subcommands = c_subcommands;
1477 newc->allow_unknown = newc->user_commands.get () != nullptr;
1488 hookc->hook_pre = newc; /* Target gets hooked. */
1489 newc->hookee_pre = hookc; /* We are marked as hooking target cmd. */
1492 hookc->hook_post = newc; /* Target gets hooked. */
1493 newc->hookee_post = hookc; /* We are marked as hookin
1379 struct cmd_list_element *c, *newc, *hookc = 0, **list; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/cli/
cli-script.c 1382 struct cmd_list_element *c, *newc, *hookc = 0, **list;
1465 newc = add_cmd (comname, class_user, user_defined_command,
1468 newc->user_commands = std::move (cmds);
1474 newc->subcommands = c_subcommands;
1477 newc->allow_unknown = newc->user_commands.get () != nullptr;
1488 hookc->hook_pre = newc; /* Target gets hooked. */
1489 newc->hookee_pre = hookc; /* We are marked as hooking target cmd. */
1492 hookc->hook_post = newc; /* Target gets hooked. */
1493 newc->hookee_post = hookc; /* We are marked as hookin
1379 struct cmd_list_element *c, *newc, *hookc = 0, **list; local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/evp/
e_aes.c 3853 EVP_CIPHER_CTX *newc; local
3901 newc = (EVP_CIPHER_CTX *)ptr;
3902 new_octx = EVP_C_DATA(EVP_AES_OCB_CTX, newc);
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
e_aes.c 3739 EVP_CIPHER_CTX *newc; local
3787 newc = (EVP_CIPHER_CTX *)ptr;
3788 new_octx = EVP_C_DATA(EVP_AES_OCB_CTX,newc);
  /src/external/cddl/osnet/dist/uts/common/fs/zfs/
vdev.c 382 int newc; local
386 for (int c = newc = 0; c < oldc; c++)
388 newc++;
390 newchild = kmem_alloc(newc * sizeof (vdev_t *), KM_SLEEP);
392 for (int c = newc = 0; c < oldc; c++) {
394 newchild[newc] = cvd;
395 cvd->vdev_id = newc++;
401 pvd->vdev_children = newc;
955 uint64_t newc = vd->vdev_asize >> vd->vdev_ms_shift; local
978 ASSERT(oldc <= newc);
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/evp/
e_aes.c 3960 EVP_CIPHER_CTX *newc; local
4008 newc = (EVP_CIPHER_CTX *)ptr;
4009 new_octx = EVP_C_DATA(EVP_AES_OCB_CTX,newc);
  /src/external/gpl3/gcc/dist/gcc/
cfgrtl.cc 4446 unsigned short &newc = id->dependence_map->get_or_insert
4452 newc = get_new_clique (cfun);
4463 MR_DEPENDENCE_CLIQUE (new_expr) = newc;
4423 unsigned short &newc = id->dependence_map->get_or_insert local
emit-rtl.cc 757 poly_wide_int newc = poly_wide_int::from (c, prec, SIGNED);
763 h.add_wide_int (newc.coeffs[i]);
764 const_poly_int_hasher::compare_type typed_value (mode, newc);
784 CONST_POLY_INT_COEFFS (x)[i] = newc.coeffs[i];
756 poly_wide_int newc = poly_wide_int::from (c, prec, SIGNED); local
tree-inline.cc 1000 unsigned short &newc = id->dependence_map->get_or_insert (clique, &existed); local
1006 newc = get_new_clique (cfun);
1008 return newc;
tree-cfg.cc 6603 unsigned short &newc = id->dependence_map->get_or_insert local
6608 newc = get_new_clique (cfun);
6610 MR_DEPENDENCE_CLIQUE (op) = newc;
  /src/external/gpl3/gcc.old/dist/gcc/
cfgrtl.cc 4388 unsigned short &newc = id->dependence_map->get_or_insert
4394 newc = ++cfun->last_clique;
4405 MR_DEPENDENCE_CLIQUE (new_expr) = newc;
4365 unsigned short &newc = id->dependence_map->get_or_insert local
emit-rtl.cc 753 poly_wide_int newc = poly_wide_int::from (c, prec, SIGNED);
759 h.add_wide_int (newc.coeffs[i]);
760 const_poly_int_hasher::compare_type typed_value (mode, newc);
780 CONST_POLY_INT_COEFFS (x)[i] = newc.coeffs[i];
752 poly_wide_int newc = poly_wide_int::from (c, prec, SIGNED); local
tree-inline.cc 1002 unsigned short &newc = id->dependence_map->get_or_insert (clique, &existed); local
1008 newc = ++cfun->last_clique;
1010 return newc;
tree-cfg.cc 6416 unsigned short &newc = id->dependence_map->get_or_insert local
6421 newc = ++cfun->last_clique;
6423 MR_DEPENDENCE_CLIQUE (op) = newc;

Completed in 91 milliseconds