HomeSort by relevance Sort by last modified time
    Searched refs:newtable (Results 1 - 12 of 12) sorted by null

  /toolchain/binutils/binutils-2.27/bfd/
hash.c 522 struct bfd_hash_entry **newtable; local
534 newtable = ((struct bfd_hash_entry **)
536 if (newtable == NULL)
541 memset (newtable, 0, alloc);
554 chain_end->next = newtable[_index];
555 newtable[_index] = chain;
557 table->table = newtable;
  /external/python/cpython3/Objects/
setobject.c 298 setentry *oldtable, *newtable, *entry; local
327 newtable = so->smalltable;
328 if (newtable == oldtable) {
345 newtable = PyMem_NEW(setentry, newsize);
346 if (newtable == NULL) {
353 assert(newtable != oldtable);
354 memset(newtable, 0, sizeof(setentry) * newsize);
358 so->table = newtable;
366 set_insert_clean(newtable, newmask, entry->key, entry->hash);
372 set_insert_clean(newtable, newmask, entry->key, entry->hash)
674 setentry *newtable = so->table; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
dictobject.c 601 PyDictEntry *oldtable, *newtable, *ep; local
625 newtable = mp->ma_smalltable;
626 if (newtable == oldtable) {
643 newtable = PyMem_NEW(PyDictEntry, newsize);
644 if (newtable == NULL) {
651 assert(newtable != oldtable);
652 mp->ma_table = newtable;
654 memset(newtable, 0, sizeof(PyDictEntry) * newsize);
    [all...]
setobject.c 277 setentry *oldtable, *newtable, *entry; local
301 newtable = so->smalltable;
302 if (newtable == oldtable) {
319 newtable = PyMem_NEW(setentry, newsize);
320 if (newtable == NULL) {
327 assert(newtable != oldtable);
328 so->table = newtable;
330 memset(newtable, 0, sizeof(setentry) * newsize);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
dictobject.c 590 PyDictEntry *oldtable, *newtable, *ep; local
614 newtable = mp->ma_smalltable;
615 if (newtable == oldtable) {
632 newtable = PyMem_NEW(PyDictEntry, newsize);
633 if (newtable == NULL) {
640 assert(newtable != oldtable);
641 mp->ma_table = newtable;
643 memset(newtable, 0, sizeof(PyDictEntry) * newsize);
    [all...]
setobject.c 278 setentry *oldtable, *newtable, *entry; local
302 newtable = so->smalltable;
303 if (newtable == oldtable) {
320 newtable = PyMem_NEW(setentry, newsize);
321 if (newtable == NULL) {
328 assert(newtable != oldtable);
329 so->table = newtable;
331 memset(newtable, 0, sizeof(setentry) * newsize);
    [all...]
  /external/python/cpython2/Objects/
dictobject.c 601 PyDictEntry *oldtable, *newtable, *ep; local
625 newtable = mp->ma_smalltable;
626 if (newtable == oldtable) {
643 newtable = PyMem_NEW(PyDictEntry, newsize);
644 if (newtable == NULL) {
651 assert(newtable != oldtable);
652 mp->ma_table = newtable;
654 memset(newtable, 0, sizeof(PyDictEntry) * newsize);
    [all...]
setobject.c 274 setentry *oldtable, *newtable, *entry; local
298 newtable = so->smalltable;
299 if (newtable == oldtable) {
316 newtable = PyMem_NEW(setentry, newsize);
317 if (newtable == NULL) {
324 assert(newtable != oldtable);
325 so->table = newtable;
327 memset(newtable, 0, sizeof(setentry) * newsize);
    [all...]
  /prebuilts/tools/common/m2/repository/xhtmlrenderer/xhtmlrenderer/R8rc1/
xhtmlrenderer-R8rc1.jar 
  /external/opencv/cxcore/src/
cxarray.cpp 842 void** newtable; local
844 int newrawsize = newsize*sizeof(newtable[0]);
850 CV_CALL( newtable = (void**)cvAlloc( newrawsize ));
851 memset( newtable, 0, newrawsize );
858 node->next = (CvSparseNode*)newtable[newidx];
859 newtable[newidx] = node;
864 mat->hashtable = newtable;
    [all...]
  /external/syslinux/gpxe/src/drivers/net/
tulip.c 456 u16 newtable[32]; /* Max length below. */
778 memcpy(ee_data + 26, eeprom_fixups[i].newtable,
779 sizeof(eeprom_fixups[i].newtable));
455 u16 newtable[32]; \/* Max length below. *\/ member in struct:fixups
    [all...]
  /external/annotation-tools/annotation-file-utilities/
annotation-file-utilities.jar 

Completed in 327 milliseconds