HomeSort by relevance Sort by last modified time
    Searched refs:arraysize (Results 126 - 150 of 484) sorted by null

1 2 3 4 56 7 8 91011>>

  /art/runtime/arch/mips64/
context_mips64.cc 29 std::fill_n(gprs_, arraysize(gprs_), nullptr);
30 std::fill_n(fprs_, arraysize(fprs_), nullptr);
  /art/runtime/arch/x86/
context_x86.cc 30 std::fill_n(gprs_, arraysize(gprs_), nullptr);
31 std::fill_n(fprs_, arraysize(fprs_), nullptr);
  /art/runtime/arch/x86_64/
context_x86_64.cc 29 std::fill_n(gprs_, arraysize(gprs_), nullptr);
30 std::fill_n(fprs_, arraysize(fprs_), nullptr);
  /art/runtime/
java_vm_ext_test.cc 52 jint ok = JNI_GetCreatedJavaVMs(vms_buf, arraysize(vms_buf), &num_vms);
65 jint ok = JNI_GetCreatedJavaVMs(vms_buf, arraysize(vms_buf), &num_vms);
parsed_options_test.cc 150 static_assert(arraysize(isa_strings) == arraysize(ISAs), "Need same amount.");
152 for (size_t i = 0; i < arraysize(isa_strings); ++i) {
  /external/libchrome/base/debug/
stack_trace.cc 199 StackTrace::StackTrace() : StackTrace(arraysize(trace_)) {}
202 count = std::min(count, arraysize(trace_));
  /external/libchrome/base/trace_event/
heap_profiler_allocation_context_tracker.cc 207 static_assert(arraysize(frames) >= Backtrace::kMaxFrameCount,
212 arraysize(frames),
  /external/webrtc/talk/media/base/
videocommon.cc 34 #include "webrtc/base/arraysize.h"
62 for (int i = 0; i < arraysize(kFourCCAliases); ++i) {
79 static const int kNumScaleFactors = arraysize(kScaleFactors);
  /system/update_engine/common/
hash_calculator_unittest.cc 118 for (size_t i = 0; i < arraysize(kLengths); i++) {
144 for (size_t i = 0; i < arraysize(kLengths); i++) {
  /art/compiler/optimizing/
ssa_liveness_analysis_test.cc 146 static_assert(arraysize(expected) == arraysize(args), "Array size check.");
218 static_assert(arraysize(expected) == arraysize(args), "Array size check.");
register_allocator_test.cc 109 intervals.push_back(BuildInterval(ranges, arraysize(ranges), GetScopedAllocator(), 0));
110 intervals.push_back(BuildInterval(ranges, arraysize(ranges), GetScopedAllocator(), 1));
121 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0));
123 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1));
134 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0));
136 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1));
147 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0));
149 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1));
160 intervals.push_back(BuildInterval(ranges1, arraysize(ranges1), GetScopedAllocator(), 0));
163 intervals.push_back(BuildInterval(ranges2, arraysize(ranges2), GetScopedAllocator(), 1))
    [all...]
parallel_move_test.cc 189 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
200 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
216 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
227 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
238 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
249 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
462 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
  /external/v4l2_codec2/vda/
vp9_bool_decoder.cc 115 DCHECK_LT(bool_range_, arraysize(kCountToShiftTo128));
vp9_parser.cc 139 static_assert(arraysize(kDcQLookup[0]) == arraysize(kAcQLookup[0]), member in namespace:media::__anon40721
307 DCHECK_LT(frame_context_idx, arraysize(frame_context_managers_));
314 DCHECK_LT(frame_context_idx, arraysize(frame_context_managers_));
320 DCHECK_LT(ref_type, arraysize(ref_slots_));
327 DCHECK_LT(ref_type, arraysize(ref_slots_));
492 DCHECK_LT(frame_context_idx, arraysize(context_.frame_context_managers_));
v4l2_slice_video_decode_accelerator.cc 626 kSupportedOutputFmtFourcc + arraysize(kSupportedOutputFmtFourcc),
628 kSupportedOutputFmtFourcc + arraysize(kSupportedOutputFmtFourcc);
    [all...]
  /external/v8/src/compiler/
bytecode-graph-builder.h 69 return MakeNode(op, arraysize(buffer), buffer, false);
74 return MakeNode(op, arraysize(buffer), buffer, false);
79 return MakeNode(op, arraysize(buffer), buffer, false);
84 return MakeNode(op, arraysize(buffer), buffer, false);
load-elimination.cc 152 for (size_t i = 0; i < arraysize(nodes_); ++i) {
155 if (j == arraysize(nodes_)) return false;
160 for (size_t i = 0; i < arraysize(nodes_); ++i) {
163 if (j == arraysize(nodes_)) return false;
184 copy->next_index_ %= arraysize(nodes_);
226 that->next_index_ %= arraysize(elements_);
236 for (size_t i = 0; i < arraysize(elements_); ++i) {
240 if (j == arraysize(elements_)) return false;
249 for (size_t i = 0; i < arraysize(elements_); ++i) {
253 if (j == arraysize(elements_)) return false
    [all...]
load-elimination.h 45 for (size_t i = 0; i < arraysize(nodes_); ++i) {
56 that->next_index_ = (that->next_index_ + 1) % arraysize(nodes_);
77 for (size_t i = 0; i < arraysize(elements_); ++i) {
90 that->next_index_ = (that->next_index_ + 1) % arraysize(elements_);
206 for (size_t i = 0; i < arraysize(fields_); ++i) {
  /external/webrtc/webrtc/base/
win32windowpicker_unittest.cc 10 #include "webrtc/base/arraysize.h"
75 arraysize(window_title));
filerotatingstream_unittest.cc 11 #include "webrtc/base/arraysize.h"
132 for (size_t i = 0; i < arraysize(messages); ++i) {
141 for (size_t i = 0; i < arraysize(messages); ++i) {
146 for (size_t i = 0; i < arraysize(messages); ++i) {
280 for (size_t i = 0; i < arraysize(expected_vals); ++i) {
307 for (size_t i = 0; i < arraysize(expected_vals); ++i) {
unixfilesystem.cc 47 #include "webrtc/base/arraysize.h"
180 if (0 != FSRefMakePath(&fr, buffer, arraysize(buffer)))
307 for (size_t i = 0; i < arraysize(kTempPrefixes); ++i) {
381 ssize_t len = readlink("/proc/self/exe", buffer, arraysize(buffer) - 1);
403 if (0 != FSRefMakePath(&fr, buffer, arraysize(buffer)))
491 sprintfn(buffer, arraysize(buffer), "-%d-%d",
  /external/v8/src/base/debug/
stack_trace_win.cc 177 count_ = CaptureStackBackTrace(0, arraysize(trace_), trace_, NULL);
221 count_ < arraysize(trace_)) {
225 for (size_t i = count_; i < arraysize(trace_); ++i) trace_[i] = NULL;
  /art/compiler/linker/
linker_patch_test.cc 152 constexpr size_t last_index = arraysize(patches) - 1u;
154 for (size_t i = 0; i != arraysize(patches); ++i) {
155 for (size_t j = 0; j != arraysize(patches); ++j) {
161 for (size_t i = 0; i != arraysize(patches); ++i) {
162 for (size_t j = 0; j != arraysize(patches); ++j) {
  /external/opencv/otherlibs/highgui/
grfmt_tiff.cpp 296 int*& array, int& arraysize )
308 if( count > arraysize )
311 arraysize = arraysize*3/2;
312 if( arraysize < count )
313 arraysize = count;
314 array = new int[arraysize];
  /external/libjpeg-turbo/
jquant1.c 726 size_t arraysize; local
729 arraysize = (size_t) ((cinfo->output_width + 2) * sizeof(FSERROR));
732 (*cinfo->mem->alloc_large)((j_common_ptr) cinfo, JPOOL_IMAGE, arraysize);
745 size_t arraysize; local
783 arraysize = (size_t) ((cinfo->output_width + 2) * sizeof(FSERROR));
785 jzero_far((void *) cquantize->fserrors[i], arraysize);

Completed in 1859 milliseconds

1 2 3 4 56 7 8 91011>>