HomeSort by relevance Sort by last modified time
    Searched refs:NewArray (Results 1 - 25 of 98) sorted by null

1 2 3 4

  /external/v8/src/
allocation.cc 65 char* result = NewArray<char>(length + 1);
75 char* result = NewArray<char>(length + 1);
allocation.h 59 T* NewArray(size_t size) {
61 if (result == NULL) FatalProcessOutOfMemory("NewArray");
optimizing-compile-dispatcher.h 39 input_queue_ = NewArray<OptimizedCompileJob*>(input_queue_capacity_);
42 osr_buffer_ = NewArray<OptimizedCompileJob*>(osr_buffer_capacity_);
identity-map.cc 90 keys_ = zone_->NewArray<Object*>(size_);
93 values_ = zone_->NewArray<void*>(size_);
172 keys_ = zone_->NewArray<Object*>(size_);
175 values_ = zone_->NewArray<void*>(size_);
signature.h 44 buffer_(zone->NewArray<T>(
zone-allocator.h 40 return static_cast<pointer>(zone_->NewArray<value_type>(
vector.h 28 return Vector<T>(NewArray<T>(length), length);
67 T* result = NewArray<T>(length_);
162 explicit ScopedVector(int length) : Vector<T>(NewArray<T>(length), length) { }
bit-vector.h 68 data_(zone->NewArray<uintptr_t>(data_length_)) {
76 data_(zone->NewArray<uintptr_t>(data_length_)) {
utils.cc 185 result = NewArray<char>(len + 1);
189 char* new_result = NewArray<char>(new_len);
222 char* result = NewArray<char>(*size + extra_space);
compilation-cache.h 25 tables_ = NewArray<Object*>(generations);
zone.h 46 T* NewArray(size_t length) {
  /external/icu/icu4c/source/common/unicode/
uobject.h 115 static void * NewArray(int size, int count);
  /external/v8/src/regexp/
regexp-stack.cc 70 Address new_memory = NewArray<byte>(static_cast<int>(size));
  /external/mesa3d/src/mesa/vbo/
vbo_rebase.c 231 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
243 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
vbo_context.h 149 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
vbo_split_inplace.c 88 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
100 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
  /external/v8/src/compiler/
node-cache.cc 39 entries_ = zone->NewArray<Entry>(num_entries);
69 entries_ = zone->NewArray<Entry>(num_entries);
value-numbering-reducer.cc 61 entries_ = zone()->NewArray<Node*>(kInitialCapacity);
138 entries_ = zone()->NewArray<Node*>(capacity_);
raw-machine-assembler.cc 79 BasicBlock** succ_blocks = zone()->NewArray<BasicBlock*>(succ_count);
128 Node** buffer = zone()->NewArray<Node*>(input_count);
145 Node** buffer = zone()->NewArray<Node*>(input_count);
209 Node** buffer = zone()->NewArray<Node*>(input_count);
interpreter-assembler.cc 455 Node** args = zone()->NewArray<Node*>(5);
507 Node** args = zone()->NewArray<Node*>(4);
528 Node** args = zone()->NewArray<Node*>(4);
540 Node** args = zone()->NewArray<Node*>(5);
553 Node** args = zone()->NewArray<Node*>(6);
582 Node** args = zone()->NewArray<Node*>(4);
  /external/v8/src/parsing/
preparse-data.cc 64 unsigned* data = NewArray<unsigned>(total_size);
  /external/javassist/src/main/javassist/expr/
ExprEditor.java 186 else if (c < Opcode.NEWARRAY) { // c < 188
229 if (c == Opcode.NEWARRAY || c == Opcode.ANEWARRAY
231 expr = new NewArray(pos, iterator, clazz, minfo, c);
232 edit((NewArray)expr);
271 public void edit(NewArray a) throws CannotCompileException {}
NewArray.java 29 public class NewArray extends Expr {
32 protected NewArray(int pos, CodeIterator i, CtClass declaring,
80 if (opcode == Opcode.NEWARRAY) {
123 if (opcode == Opcode.NEWARRAY)
181 if (opcode == Opcode.NEWARRAY) {
265 else if (opcode == Opcode.NEWARRAY)
  /external/v8/src/crankshaft/
unique.h 155 array_(zone->NewArray<Unique<T> >(capacity)) {
161 : size_(1), capacity_(1), array_(zone->NewArray<Unique<T> >(1)) {
349 Unique<T>* new_array = zone->NewArray<Unique<T> >(new_capacity);
  /external/v8/test/unittests/compiler/
node-cache-unittest.cc 53 Node** nodes = zone()->NewArray<Node*>(kSize);
91 Node** nodes = zone()->NewArray<Node*>(kSize);

Completed in 432 milliseconds

1 2 3 4