/freebsd/contrib/bmake/ |
H A D | hash.c | 223 unsigned int oldSize = t->bucketsSize; in HashTable_Enlarge() local 225 unsigned int newSize = 2 * oldSize; in HashTable_Enlarge() 233 for (i = 0; i < oldSize; i++) { in HashTable_Enlarge()
|
/freebsd/contrib/byacc/test/ |
H A D | expr.oxout.y | 187 long oldSize = 0, newSize; in yyyHandleOverflow() local 192 oldSize = yyySSALspaceSize; in yyyHandleOverflow() 196 oldSize = yyyRSmaxSize; in yyyHandleOverflow() 200 oldSize = yyyTravStackMaxSize; in yyyHandleOverflow() 204 newSize = (3*oldSize)/2; in yyyHandleOverflow() 207 fprintf(stderr,"size was %ld.\n",oldSize); in yyyHandleOverflow()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGPrinter.cpp | 246 unsigned oldSize = visited.size(); in setSubgraphColorHelper() local 248 if (visited.size() != oldSize) { in setSubgraphColorHelper()
|
/freebsd/contrib/byacc/test/yacc/ |
H A D | expr.oxout.tab.c | 386 long oldSize = 0, newSize; in yyyHandleOverflow() local 391 oldSize = yyySSALspaceSize; in yyyHandleOverflow() 395 oldSize = yyyRSmaxSize; in yyyHandleOverflow() 399 oldSize = yyyTravStackMaxSize; in yyyHandleOverflow() 403 newSize = (3*oldSize)/2; in yyyHandleOverflow() 406 fprintf(stderr,"size was %ld.\n",oldSize); in yyyHandleOverflow()
|
/freebsd/contrib/byacc/test/btyacc/ |
H A D | expr.oxout.tab.c | 536 long oldSize = 0, newSize; in yyyHandleOverflow() local 541 oldSize = yyySSALspaceSize; in yyyHandleOverflow() 545 oldSize = yyyRSmaxSize; in yyyHandleOverflow() 549 oldSize = yyyTravStackMaxSize; in yyyHandleOverflow() 553 newSize = (3*oldSize)/2; in yyyHandleOverflow() 556 fprintf(stderr,"size was %ld.\n",oldSize); in yyyHandleOverflow()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | SyntheticSections.cpp | 1819 size_t oldSize = relocData.size(); in updateAllocSize() local 2004 if (relocData.size() < oldSize) in updateAllocSize() 2005 relocData.append(oldSize - relocData.size(), 0); in updateAllocSize() 2012 return relocData.size() != oldSize; in updateAllocSize() 2052 size_t oldSize = relrRelocs.size(); in updateAllocSize() local 2095 if (relrRelocs.size() < oldSize) { in updateAllocSize() 2096 log(".relr.dyn needs " + Twine(oldSize - relrRelocs.size()) + in updateAllocSize() 2098 relrRelocs.resize(oldSize, Elf_Relr(1)); in updateAllocSize() 2101 return relrRelocs.size() != oldSize; in updateAllocSize() 4612 size_t oldSize = getSize(); in updateAllocSize() local [all …]
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | PDB.cpp | 534 size_t oldSize) { in fixRecordAlignment() argument 536 if (oldSize == alignedSize) in fixRecordAlignment() 540 memset(recordBytes.data() + oldSize, 0, alignedSize - oldSize); in fixRecordAlignment()
|
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | huf_compress.c | 706 … size_t const oldSize = HUF_estimateCompressedSize(oldHufTable, table->count, maxSymbolValue); in HUF_compress_internal() local 708 if (oldSize <= hSize + newSize || hSize + 12 >= srcSize) { in HUF_compress_internal()
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | UnwindCursor.hpp | 174 size_t oldSize = (size_t)(_bufferEnd - _buffer); in add() local 175 size_t newSize = oldSize * 4; in add() 178 memcpy(newBuffer, _buffer, oldSize * sizeof(entry)); in add() 182 _bufferUsed = &newBuffer[oldSize]; in add()
|
/freebsd/sys/contrib/zstd/lib/compress/ |
H A D | huf_compress.c | 1264 … size_t const oldSize = HUF_estimateCompressedSize(oldHufTable, table->count, maxSymbolValue); in HUF_compress_internal() local 1266 if (oldSize <= hSize + newSize || hSize + 12 >= srcSize) { in HUF_compress_internal()
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 174739 int oldSize = 1 + (int)(p->yystackEnd - p->yystack); 174744 newSize = oldSize*2 + 100; 174749 memcpy(pNew, p->yystack, oldSize*sizeof(pNew[0])); 174759 yyTracePrompt, oldSize, newSize); 233447 int oldSize = 1 + (int)(p->fts5yystackEnd - p->fts5yystack); 233452 newSize = oldSize*2 + 100; 233457 memcpy(pNew, p->fts5yystack, oldSize*sizeof(pNew[0])); 233467 fts5yyTracePrompt, oldSize, newSize);
|