Home
last modified time | relevance | path

Searched refs:newTable (Results 1 – 10 of 10) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/util/
DIntMap.java84 Entry[] newTable = new Entry[table.length]; in clone() local
87 newTable[i] = table[i].clone(); in clone()
89 clone.table = newTable; in clone()
143 Entry[] newTable = new Entry[newCapacity]; in put() local
153 e.next = newTable[index]; in put()
154 newTable[index] = e; in put()
159 table = newTable; in put()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
DAttributeTable.java239 AttributeTable newTable = new AttributeTable(attributes); in add() local
241 newTable.addAttribute(attrType, new Attribute(attrType, new DERSet(attrValue))); in add()
243 return newTable; in add()
248 AttributeTable newTable = new AttributeTable(attributes); in remove() local
250 newTable.attributes.remove(attrType); in remove()
252 return newTable; in remove()
/external/chromium_org/chrome/browser/resources/
Dpolicy.js488 var newTable = this.createPolicyTable();
489 this.policyTables[id] = newTable;
490 section.appendChild(newTable);
500 var newTable = window.document.createElement('table');
512 newTable.appendChild(tableHead);
513 cr.ui.decorate(newTable, PolicyTable);
514 return newTable;
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DDOMPatchSupport.cpp242 DiffTable newTable; in diff() local
246 DiffTable::iterator it = newTable.add(newList[i]->m_sha1, Vector<size_t>()).iterator; in diff()
255 for (DiffTable::iterator newIt = newTable.begin(); newIt != newTable.end(); ++newIt) { in diff()
/external/guava/guava/src/com/google/common/collect/
DMapMakerInternalMap.java2168 void initTable(AtomicReferenceArray<ReferenceEntry<K, V>> newTable) { in initTable() argument
2169 this.threshold = newTable.length() * 3 / 4; // 0.75 in initTable()
2174 this.table = newTable; in initTable()
2622 AtomicReferenceArray<ReferenceEntry<K, V>> newTable = newEntryArray(oldCapacity << 1); in expand() local
2623 threshold = newTable.length() * 3 / 4; in expand()
2624 int newMask = newTable.length() - 1; in expand()
2636 newTable.set(headIndex, head); in expand()
2651 newTable.set(tailIndex, tail); in expand()
2660 ReferenceEntry<K, V> newNext = newTable.get(newIndex); in expand()
2662 newTable.set(newIndex, newFirst); in expand()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTable.cpp1424 RenderTable* newTable = new RenderTable(0); in createAnonymousWithParentRenderer() local
1425 newTable->setDocumentForAnonymous(&parent->document()); in createAnonymousWithParentRenderer()
1426 newTable->setStyle(newStyle.release()); in createAnonymousWithParentRenderer()
1427 return newTable; in createAnonymousWithParentRenderer()
/external/guava/guava/src/com/google/common/cache/
DLocalCache.java2167 void initTable(AtomicReferenceArray<ReferenceEntry<K, V>> newTable) { in initTable() argument
2168 this.threshold = newTable.length() * 3 / 4; // 0.75 in initTable()
2173 this.table = newTable; in initTable()
2944 AtomicReferenceArray<ReferenceEntry<K, V>> newTable = newEntryArray(oldCapacity << 1); in expand() local
2945 threshold = newTable.length() * 3 / 4; in expand()
2946 int newMask = newTable.length() - 1; in expand()
2958 newTable.set(headIndex, head); in expand()
2973 newTable.set(tailIndex, tail); in expand()
2982 ReferenceEntry<K, V> newNext = newTable.get(newIndex); in expand()
2984 newTable.set(newIndex, newFirst); in expand()
[all …]
/external/chromium_org/third_party/icu/source/i18n/
Ducol.cpp6661 uint32_t *newTable = (uint32_t *)uprv_malloc(size*sizeof(uint32_t)*3); in ucol_resizeLatinOneTable() local
6662 if(newTable == NULL) { in ucol_resizeLatinOneTable()
6668 uprv_memset(newTable, 0, size*sizeof(uint32_t)*3); in ucol_resizeLatinOneTable()
6669 uprv_memcpy(newTable, coll->latinOneCEs, sizeToCopy); in ucol_resizeLatinOneTable()
6670 uprv_memcpy(newTable+size, coll->latinOneCEs+coll->latinOneTableLen, sizeToCopy); in ucol_resizeLatinOneTable()
6671 uprv_memcpy(newTable+2*size, coll->latinOneCEs+2*coll->latinOneTableLen, sizeToCopy); in ucol_resizeLatinOneTable()
6674 coll->latinOneCEs = newTable; in ucol_resizeLatinOneTable()
/external/icu4c/i18n/
Ducol.cpp6268 uint32_t *newTable = (uint32_t *)uprv_malloc(size*sizeof(uint32_t)*3); in ucol_resizeLatinOneTable() local
6269 if(newTable == NULL) { in ucol_resizeLatinOneTable()
6275 uprv_memset(newTable, 0, size*sizeof(uint32_t)*3); in ucol_resizeLatinOneTable()
6276 uprv_memcpy(newTable, coll->latinOneCEs, sizeToCopy); in ucol_resizeLatinOneTable()
6277 uprv_memcpy(newTable+size, coll->latinOneCEs+coll->latinOneTableLen, sizeToCopy); in ucol_resizeLatinOneTable()
6278 uprv_memcpy(newTable+2*size, coll->latinOneCEs+2*coll->latinOneTableLen, sizeToCopy); in ucol_resizeLatinOneTable()
6281 coll->latinOneCEs = newTable; in ucol_resizeLatinOneTable()
/external/expat/lib/
Dxmlparse.c5884 HASH_TABLE *newTable, in copyEntityTable() argument
5903 newE = (ENTITY *)lookup(oldParser, newTable, name, sizeof(ENTITY)); in copyEntityTable()