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

  /toolchain/binutils/binutils-2.25/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;
  /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/opencv3/modules/core/src/
array.cpp 701 void** newtable; local
703 int newrawsize = newsize*sizeof(newtable[0]);
709 newtable = (void**)cvAlloc( newrawsize );
710 memset( newtable, 0, newrawsize );
717 node->next = (CvSparseNode*)newtable[newidx];
718 newtable[newidx] = node;
723 mat->hashtable = newtable;
    [all...]

Completed in 188 milliseconds