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

1 2 3 4 5

  /external/v8/src/ic/
access-compiler-data.h 23 load_calling_convention_.reset(NewArray<Register>(load_register_count));
27 store_calling_convention_.reset(NewArray<Register>(store_register_count));
  /external/r8/src/main/java/com/android/tools/r8/code/
NewArray.java 11 public class NewArray extends Format22c {
14 public static final String NAME = "NewArray";
17 /*package*/ NewArray(int high, BytecodeStream stream, OffsetToObjectMapping mapping) {
21 public NewArray(int dest, int size, DexType type) {
  /external/r8/src/main/java/com/android/tools/r8/ir/code/
NewArrayEmpty.java 6 import com.android.tools.r8.code.NewArray;
33 builder.add(this, new NewArray(dest, size, type));
  /external/v8/src/
allocation.cc 37 char* result = NewArray<char>(length + 1);
47 char* result = NewArray<char>(length + 1);
allocation.h 45 T* NewArray(size_t size) {
47 if (result == NULL) FatalProcessOutOfMemory("NewArray");
signature.h 55 buffer_(zone->NewArray<T>(
vector.h 31 return Vector<T>(NewArray<T>(length), length);
71 T* result = NewArray<T>(length_);
169 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 184 result = NewArray<char>(len + 1);
188 char* new_result = NewArray<char>(new_len);
221 char* result = NewArray<char>(*size + extra_space);
  /external/icu/icu4c/source/common/unicode/
uobject.h 117 static void * NewArray(int size, int count);
  /external/v8/src/compiler-dispatcher/
optimizing-compile-dispatcher.h 37 input_queue_ = NewArray<CompilationJob*>(input_queue_capacity_);
  /external/v8/src/parsing/
preparse-data.cc 49 unsigned* data = NewArray<unsigned>(total_size);
  /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 252 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
264 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
vbo_context.h 141 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 40 entries_ = zone->NewArray<Entry>(num_entries);
70 entries_ = zone->NewArray<Entry>(num_entries);
value-numbering-reducer.cc 71 entries_ = temp_zone()->NewArray<Node*>(kInitialCapacity);
191 entries_ = temp_zone()->NewArray<Node*>(capacity_);
graph-assembler.cc 245 effects_ = zone->NewArray<Node*>(MaxMergeCount() + 1);
250 controls_ = zone->NewArray<Node*>(MaxMergeCount());
256 bindings_ = zone->NewArray<Node*>(num_bindings);
261 representations_ = zone->NewArray<MachineRepresentation>(PhiCount() + 1);
  /external/v8/src/zone/
zone-allocator.h 46 zone_->NewArray<value_type>(static_cast<int>(n)));
  /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/src/snapshot/
serializer-common.cc 58 data_ = NewArray<byte>(size);
  /art/compiler/optimizing/
scheduler_arm.h 87 M(NewArray , unused) \

Completed in 346 milliseconds

1 2 3 4 5