Searched refs:NewArray (Results 1 - 25 of 87) sorted by relevance

1234

/external/chromium_org/v8/src/
H A Dallocation.cc69 char* result = NewArray<char>(length + 1);
79 char* result = NewArray<char>(length + 1);
H A Dvector.h28 return Vector<T>(NewArray<T>(length), length);
63 T* result = NewArray<T>(length_);
137 explicit ScopedVector(int length) : Vector<T>(NewArray<T>(length), length) { }
H A Doptimizing-compiler-thread.h43 input_queue_ = NewArray<OptimizedCompileJob*>(input_queue_capacity_);
46 osr_buffer_ = NewArray<OptimizedCompileJob*>(osr_buffer_capacity_);
H A Dallocation.h60 T* NewArray(size_t size) { function in namespace:v8::internal
H A Dregexp-stack.cc70 Address new_memory = NewArray<byte>(static_cast<int>(size));
H A Dinterface-descriptors.cc24 register_params_.Reset(NewArray<Register>(register_parameter_count));
33 NewArray<Representation>(register_parameter_count));
H A Dpreparse-data.cc66 unsigned* data = NewArray<unsigned>(total_size);
H A Dzone-allocator.h40 return static_cast<pointer>(zone_->NewArray<value_type>(
H A Ddata-flow.h68 data_(zone->NewArray<uint32_t>(data_length_)) {
76 data_(zone->NewArray<uint32_t>(data_length_)) {
H A Dunique.h141 array_(zone->NewArray<Unique<T> >(capacity)) {
147 : size_(1), capacity_(1), array_(zone->NewArray<Unique<T> >(1)) {
335 Unique<T>* new_array = zone->NewArray<Unique<T> >(new_capacity);
/external/chromium_org/v8/src/compiler/
H A Dnode-cache.cc53 entries_ = zone->NewArray<Entry>(num_entries);
83 entries_ = zone->NewArray<Entry>(num_entries);
H A Dgraph-builder.cc53 Node** buffer = zone()->NewArray<Node*>(input_count_with_deps);
166 Node** buffer = zone()->NewArray<Node*>(count + 1);
177 Node** buffer = zone()->NewArray<Node*>(count + 1);
/external/chromium_org/third_party/icu/source/common/unicode/
H A Duobject.h115 static void * NewArray(int size, int count);
/external/chromium_org/v8/test/cctest/compiler/
H A Dgraph-builder-tester.cc26 parameters_ = graph_->zone()->NewArray<Node*>(param_count);
H A Dsimplified-graph-builder.cc66 Node** buffer = zone()->NewArray<Node*>(input_count_with_deps);
H A Dtest-node-cache.cc55 Node** nodes = graph.zone()->NewArray<Node*>(kSize);
96 Node** nodes = graph.zone()->NewArray<Node*>(kSize);
/external/icu/icu4c/source/common/unicode/
H A Duobject.h115 static void * NewArray(int size, int count);
/external/chromium_org/third_party/mesa/src/src/mesa/vbo/
H A Dvbo_rebase.c231 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
243 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
H A Dvbo_context.h149 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
H A Dvbo_split_inplace.c88 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
100 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
/external/mesa3d/src/mesa/vbo/
H A Dvbo_rebase.c231 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
243 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
H A Dvbo_context.h149 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
H A Dvbo_split_inplace.c88 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
100 ctx->NewDriverState |= ctx->DriverFlags.NewArray;
/external/javassist/src/main/javassist/expr/
H A DExprEditor.java231 expr = new NewArray(pos, iterator, clazz, minfo, c);
232 edit((NewArray)expr);
271 public void edit(NewArray a) throws CannotCompileException {}
H A DNewArray.java29 public class NewArray extends Expr { class in inherits:Expr
32 protected NewArray(int pos, CodeIterator i, CtClass declaring, method in class:NewArray

Completed in 404 milliseconds

1234