Home
last modified time | relevance | path

Searched refs:newCount (Results 1 – 25 of 25) sorted by relevance

/third_party/protobuf/objectivec/
DGPBArray.m227 //% NSUInteger newCount = initialCount + count;
228 //%MAYBE_GROW_TO_SET_COUNT(newCount)
238 //% NSUInteger newCount = initialCount + 1;
239 //%MAYBE_GROW_TO_SET_COUNT(newCount)
275 //% NSUInteger newCount = _count - 1;
276 //% if (index != newCount) {
277 //% memmove(&_values[index], &_values[index + 1], (newCount - index) * sizeof(TYPE));
279 //%SET_COUNT_AND_MAYBE_SHRINK(newCount)
458 NSUInteger newCount = initialCount + count;
459 if (newCount > _capacity) {
[all …]
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DIntDiffer.java128 int newCount = aCount-aTop; in flush() local
129 System.arraycopy(a, aTop, a, 0, newCount); in flush()
130 aCount = newCount; in flush()
135 int newCount = bCount-bTop; in flush() local
136 System.arraycopy(b, bTop, b, 0, newCount); in flush()
137 bCount = newCount; in flush()
/third_party/skia/include/private/
DSkTArray.h188 int newCount = fCount - 1; in removeShuffle() local
189 fCount = newCount; in removeShuffle()
191 if (n != newCount) { in removeShuffle()
192 this->move(n, newCount); in removeShuffle()
321 void resize_back(int newCount) { in resize_back() argument
322 SkASSERT(newCount >= 0); in resize_back()
324 if (newCount > this->count()) { in resize_back()
325 this->push_back_n(newCount - fCount); in resize_back()
326 } else if (newCount < this->count()) { in resize_back()
327 this->pop_back_n(fCount - newCount); in resize_back()
[all …]
DSkTDArray.h218 int newCount = fCount - 1; in removeShuffle() local
219 fCount = newCount; in removeShuffle()
220 if (index != newCount) { in removeShuffle()
221 memcpy(fArray + index, fArray + newCount, sizeof(T)); in removeShuffle()
/third_party/vk-gl-cts/framework/delibs/depool/
DdePoolMultiSet.h74 deBool TYPENAME##_setKeyCount (DE_PTR_TYPE(TYPENAME) set, KEYTYPE key, int newCount); \
147 deBool TYPENAME##_setKeyCount (DE_PTR_TYPE(TYPENAME) set, KEYTYPE key, int newCount) \
153 DE_ASSERT(newCount >= 0); \
154 set->numElements += (newCount - oldCount); \
156 if (newCount == 0 && countPtr) \
158 else if (newCount > 0 && countPtr) \
159 *countPtr = newCount; \
160 else if (newCount > 0) \
161 return TYPENAME##Hash_insert(set->hash, key, newCount); \
/third_party/openh264/module/
DRefCounted.h93 uint32_t newCount = --mRefCount; in Release() local
94 if (!newCount) { in Release()
97 return newCount; in Release()
/third_party/skia/src/ports/
DSkFontMgr_win_dw.cpp84 ULONG newCount = InterlockedDecrement(&fRefCount); in SK_STDMETHODIMP_() local
85 if (0 == newCount) { in SK_STDMETHODIMP_()
88 return newCount; in SK_STDMETHODIMP_()
160 ULONG newCount = InterlockedDecrement(&fRefCount); in SK_STDMETHODIMP_() local
161 if (0 == newCount) { in SK_STDMETHODIMP_()
164 return newCount; in SK_STDMETHODIMP_()
247 ULONG newCount = InterlockedDecrement(&fRefCount); in SK_STDMETHODIMP_() local
248 if (0 == newCount) { in SK_STDMETHODIMP_()
251 return newCount; in SK_STDMETHODIMP_()
613 ULONG newCount = InterlockedDecrement(&fRefCount); in Release() local
[all …]
DSkRemotableFontMgr_win_dw.cpp324 ULONG newCount = InterlockedDecrement(&fRefCount); in Release() local
325 if (0 == newCount) { in Release()
328 return newCount; in Release()
/third_party/skia/tests/
DGrRenderTaskClusterTest.cpp148 int newCount = 0; in DEF_TEST() local
150 newCount++; in DEF_TEST()
152 REPORTER_ASSERT(reporter, newCount == expectedOutput.count()); in DEF_TEST()
/third_party/skia/src/utils/win/
DSkDWriteFontFileStream.cpp167 ULONG newCount = InterlockedDecrement(&fRefCount); in SK_STDMETHODIMP_() local
168 if (0 == newCount) { in SK_STDMETHODIMP_()
171 return newCount; in SK_STDMETHODIMP_()
/third_party/skia/src/gpu/gl/
DGrGLVertexArray.h30 void resize(int newCount) { in resize() argument
31 fAttribArrayStates.resize_back(newCount); in resize()
/third_party/skia/src/core/
DSkStrikeCache.cpp205 int SkStrikeCache::setCacheCountLimit(int newCount) { in setCacheCountLimit() argument
206 if (newCount < 0) { in setCacheCountLimit()
207 newCount = 0; in setCacheCountLimit()
213 fCacheCountLimit = newCount; in setCacheCountLimit()
/third_party/lzma/C/
DThreads.c453 UInt32 newCount; in Semaphore_ReleaseN() local
461 newCount = p->_count + releaseCount; in Semaphore_ReleaseN()
462 if (newCount > p->_maxCount) in Semaphore_ReleaseN()
466 p->_count = newCount; in Semaphore_ReleaseN()
/third_party/lzma/CPP/Windows/
DSynchronization.h363 UInt32 newCount = this->_count + releaseCount;
364 if (newCount > this->_maxCount)
369 this->_count = newCount;
/third_party/vk-gl-cts/framework/delibs/decpp/
DdeSharedPtr.hpp485 deInt32 oldCount, newCount; in acquireFromWeak() local
493 newCount = oldCount+1; in acquireFromWeak()
494 …eUint32 volatile*)&state->strongRefCount, (deUint32)oldCount, (deUint32)newCount) != (deUint32)old… in acquireFromWeak()
/third_party/skia/modules/particles/src/
DSkParticleEffect.cpp237 int newCount = this->uniformInfo()->fUniformSlotCount; in updateStorage() local
238 if (newCount > fUniforms.count()) { in updateStorage()
239 fUniforms.push_back_n(newCount - fUniforms.count(), 0.0f); in updateStorage()
241 fUniforms.resize(newCount); in updateStorage()
/third_party/skia/src/android/
DSkAnimatedImage.cpp358 void SkAnimatedImage::setRepetitionCount(int newCount) { in setRepetitionCount() argument
359 fRepetitionCount = newCount; in setRepetitionCount()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-bit-set.hh468 unsigned int count = 0, newCount = 0; in process() local
524 newCount = count; in process()
577 resize (newCount); in process()
/third_party/skia/src/gpu/
DGrDrawingManager.cpp427 int newCount = 0; in reorderTasks() local
441 fDAG[newCount++] = std::move(task); in reorderTasks()
443 fDAG.resize_back(newCount); in reorderTasks()
/third_party/node/deps/v8/src/builtins/
Dic-callable.tq81 const newCount: intptr = (callCount & callFeedbackContentFieldMask) |
86 feedbackVector, slotId, SmiTag(newCount), SKIP_WRITE_BARRIER,
/third_party/skia/third_party/externals/d3d12allocator/src/
DD3D12MemAlloc.cpp864 void resize(size_t newCount, bool freeMemory = false) in resize() argument
867 if(newCount > m_Capacity) in resize()
869 newCapacity = D3D12MA_MAX(newCount, D3D12MA_MAX(m_Capacity * 3 / 2, (size_t)8)); in resize()
873 newCapacity = newCount; in resize()
879 const size_t elementsToCopy = D3D12MA_MIN(m_Count, newCount); in resize()
889 m_Count = newCount; in resize()
/third_party/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h4886 void resize(size_t newCount, bool freeMemory = false)
4889 if(newCount > m_Capacity)
4891 newCapacity = VMA_MAX(newCount, VMA_MAX(m_Capacity * 3 / 2, (size_t)8));
4895 newCapacity = newCount;
4901 const size_t elementsToCopy = VMA_MIN(m_Count, newCount);
4911 m_Count = newCount;
5091 void resize(size_t newCount, bool freeMemory = false)
5093 if(newCount > N && m_Count > N)
5096 m_DynamicArray.resize(newCount, freeMemory);
5098 else if(newCount > N && m_Count <= N)
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/
DvktSpvAsmInstructionTests.cpp17777 size_t newCount = static_cast<size_t>(deSqrt(double(count))); in getInputData2() local
17779 DE_ASSERT(newCount * newCount == count); in getInputData2()
17781 vector<deFloat16> float16 = getFloat16a(rnd, static_cast<deUint32>(newCount)); in getInputData2()
17810 const size_t newCount = (3 * count) / 4; in getInputData() local
17815 for (size_t ndx = 0; ndx < newCount; ++ndx) in getInputData()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmInstructionTests.cpp17777 size_t newCount = static_cast<size_t>(deSqrt(double(count))); in getInputData2() local
17779 DE_ASSERT(newCount * newCount == count); in getInputData2()
17781 vector<deFloat16> float16 = getFloat16a(rnd, static_cast<deUint32>(newCount)); in getInputData2()
17810 const size_t newCount = (3 * count) / 4; in getInputData() local
17815 for (size_t ndx = 0; ndx < newCount; ++ndx) in getInputData()
/third_party/skia/third_party/externals/harfbuzz/perf/texts/
Den-words.txt7418 newCount