Searched refs:allocate (Results 126 - 150 of 174) sorted by relevance

1234567

/external/webkit/Source/WebCore/bindings/v8/
H A Dnpruntime.cpp269 if (npClass->allocate != 0)
270 npObject = npClass->allocate(npp, npClass);
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
H A DAbstractBufferTest.java34 baseBuf = ByteBuffer.allocate(10);
/external/clang/lib/Sema/
H A DAttributeList.cpp37 void *AttributeFactory::allocate(size_t size) { function in class:AttributeFactory
47 // Otherwise, allocate something new.
/external/guava/src/com/google/common/io/
H A DCharStreams.java193 CharBuffer buf = CharBuffer.allocate(BUF_SIZE);
H A DByteStreams.java186 ByteBuffer buf = ByteBuffer.allocate(BUF_SIZE);
/external/srec/srec/ca/
H A Dcnfd_scr.c46 #error allocate difference in simapi.h
/external/stlport/test/unit/
H A Dmvctor_declaration_test.cpp105 pointer allocate(size_type, const void* = 0) { return 0; } function in class:std::allocator
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGJITCodeGenerator.h113 GPRReg allocate() function in class:JSC::DFG::JITCodeGenerator
116 GPRReg gpr = m_gprs.allocate(spillMe);
124 FPRReg fpr = m_fprs.allocate(spillMe);
177 return boxDouble(fpr, allocate());
880 // These classes are used to allocate temporary registers.
/external/webkit/Source/WebCore/bridge/
H A Dnpruntime.h298 NPAllocateFunctionPtr allocate; member in struct:NPClass
332 If the class has an allocate function, NPN_CreateObject invokes
/external/webkit/Source/WebCore/rendering/
H A DInlineBox.cpp70 return renderArena->allocate(sz);
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DDatagramChannelTest.java431 ByteBuffer buf = ByteBuffer.allocate(CAPACITY_1KB);
1247 ByteBuffer buf = ByteBuffer.allocate(CAPACITY_NORMAL);
1478 ByteBuffer buf = ByteBuffer.allocate(CAPACITY_NORMAL);
1496 ByteBuffer buf = ByteBuffer.allocate(CAPACITY_NORMAL);
2403 channel2.write(ByteBuffer.allocate(CAPACITY_NORMAL));
2422 channel2.write(ByteBuffer.allocate(CAPACITY_NORMAL));
2468 ByteBuffer c = ByteBuffer.allocate(1);
2492 ByteBuffer buf = ByteBuffer.allocate(CAPACITY_NORMAL);
2548 ByteBuffer sent = ByteBuffer.allocate(1024);
H A DSelectorTest.java385 pipe.sink().write(ByteBuffer.allocate(4)); // unblock select()
584 sc.read(ByteBuffer.allocate(8));
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DMacTest.java613 ByteBuffer byteBuff = ByteBuffer.allocate(0);
660 byteBuf = ByteBuffer.allocate(5);
/external/genext2fs/
H A Dgenext2fs.c284 // allocate the string with the right size, good to avoid buffer
376 // allocate space for next read plus possible null terminator
839 // allocate a given block/inode in the bitmap
840 // allocate first free if item == 0
842 allocate(block b, uint32 item) function
872 // allocate a block
881 if(!(bk = allocate(get_blk(fs,fs->gd[grp].bg_block_bitmap), 0))) {
883 bk=allocate(get_blk(fs,fs->gd[grp].bg_block_bitmap),0);
887 error_msg_and_die("couldn't allocate a block (no free space)");
908 // allocate a
[all...]
/external/stlport/stlport/stl/
H A D_rope.h1198 _RopeLeaf).allocate(1);
1210 _RopeConcatenation).allocate(1);
1217 _RopeFunction).allocate(1);
1224 _RopeSubstring).allocate(1);
1233 _CharT* __buf = _STLP_CREATE_ALLOCATOR(allocator_type,__a, _CharT).allocate(_S_rounded_up_size(_p_size));
1394 _CharT* __buf = _M_tree_ptr.allocate(_S_rounded_up_size(1));
1424 _CharT* __rest_buffer = _M_tree_ptr.allocate(_S_rounded_up_size(__rest));
1434 _CharT* __base_buffer = _M_tree_ptr.allocate(_S_rounded_up_size(__exponentiate_threshold));
H A D_rope.c380 _CharT* __new_data = __r->_M_size.allocate(_S_rounded_up_size(__old_len + __len));
697 _CharT* __section = __base->_M_size.allocate(_S_rounded_up_size(__result_len));
827 _CharT* __buffer = __r->get_allocator().allocate(__len);
1319 _CharT* __result = _STLP_CREATE_ALLOCATOR(allocator_type,(const allocator_type&)_M_tree_ptr, _CharT).allocate(__s + 1);
1345 _CharT* __result = _M_tree_ptr.allocate(_S_rounded_up_size(__s));
H A D_list.h285 _Node* __p = this->_M_node.allocate(1);
295 _Node* __p = this->_M_node.allocate(1);
H A D_string_workaround.h222 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
378 pointer __new_start = this->_M_start_of_storage.allocate(__len, __len);
/external/replicaisland/src/com/replica/replicaisland/
H A DHitReactionComponent.java179 Vector2 newVelocity = pool.allocate(parent.getPosition());
H A DGameObjectCollisionSystem.java87 CollisionVolumeRecord record = mRecordPool.allocate();
/external/webkit/Source/JavaScriptCore/heap/
H A DHeap.cpp125 void* result = m_markedSpace.allocate(bytes);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DTypes.h26 void* memory = GlobalPoolAllocator.allocate(sizeof(TTypeList));
/external/v8/src/x64/
H A Dbuiltins-x64.cc122 // Try to allocate the object without transitioning into C code. If any of the
157 Label allocate; local
161 __ j(not_zero, &allocate);
173 __ bind(&allocate);
176 // Now allocate the JSObject on the heap.
898 // Number of empty elements to allocate for an empty array.
1024 // If an empty array is requested allocate a small elements array anyway. This
1156 // is to large to actually allocate an elements array.
/external/clang/test/CodeGenCXX/
H A Dmangle.cpp305 T *allocate(int, const void*) { return 0; } function in class:PR5861::Alloc
/external/webkit/Source/JavaScriptCore/wtf/
H A DListHashSet.h150 Node* allocate() function in struct:WTF::ListHashSetNodeAllocator
223 return allocator->allocate();

Completed in 555 milliseconds

1234567