Home
last modified time | relevance | path

Searched refs:deleteCount (Results 1 – 2 of 2) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DArrayPrototype.cpp503 unsigned deleteCount; in arrayProtoFuncSplice() local
505deleteCount = std::min<int>(std::max<int>(args.at(exec, 1).toUInt32(exec), 0), length - begin); in arrayProtoFuncSplice()
507 deleteCount = length - begin; in arrayProtoFuncSplice()
509 for (unsigned k = 0; k < deleteCount; k++) { in arrayProtoFuncSplice()
513 resObj->setLength(deleteCount); in arrayProtoFuncSplice()
516 if (additionalArgs != deleteCount) { in arrayProtoFuncSplice()
517 if (additionalArgs < deleteCount) { in arrayProtoFuncSplice()
518 for (unsigned k = begin; k < length - deleteCount; ++k) { in arrayProtoFuncSplice()
519 if (JSValuePtr v = getProperty(exec, thisObj, k + deleteCount)) in arrayProtoFuncSplice()
524 for (unsigned k = length; k > length - deleteCount + additionalArgs; --k) in arrayProtoFuncSplice()
[all …]
/external/srec/portable/src/
Dpmemory_ext.c359 void PortMemGetCount(int *newCount, int *deleteCount) in PortMemGetCount() argument
362 *deleteCount = portDeleteCount; in PortMemGetCount()