/external/chromium_org/v8/test/mjsunit/regress/ |
regress-353551.js | 28 var depth = 0; variable 32 depth++; 33 if (depth > 3000) return;
|
/external/chromium_org/chrome/browser/bookmarks/ |
bookmark_stats.cc | 24 // In the cases where a bookmark node is provided, record the depth of the 26 int depth = 0; local 28 depth++; 30 // Record |depth - 2| to offset the invisible root node and permanent nodes 32 UMA_HISTOGRAM_COUNTS("Bookmarks.LaunchDepth", depth - 2);
|
/external/clang/test/SemaCXX/ |
constexpr-depth.cpp | 1 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s -DMAX=128 -fconstexpr-depth 128 2 // RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s -DMAX=2 -fconstexpr-depth 2 3 // RUN: %clang -std=c++11 -fsyntax-only -Xclang -verify %s -DMAX=10 -fconstexpr-depth=10 5 constexpr int depth(int n) { return n > 1 ? depth(n-1) : 0; } // expected-note {{exceeded maximum depth}} expected-note +{{}} function 7 constexpr int kBad = depth(MAX + 1); // expected-error {{must be initialized by a constant expression}} expected-note {{in call to 'depth(}} 8 constexpr int kGood = depth(MAX);
|
/external/lldb/test/lang/c/recurse/ |
main.c | 5 recurse_crash (uint32_t depth) 7 if (depth > 0) 8 return recurse_crash (depth - 1); 15 // If we have more than one argument, then it should a depth to recurse to. 18 uint32_t depth = UINT32_MAX; local 22 depth = strtoul (argv[1], &end, 0); 24 depth = UINT32_MAX; 26 recurse_crash (depth);
|
/external/chromium_org/third_party/mesa/src/src/gallium/include/state_tracker/ |
xlib_sw_winsys.h | 18 int depth; member in struct:xlib_drawable
|
/external/chromium_org/v8/test/mjsunit/ |
json-stringify-recursive.js | 44 var depth = 10000; variable 46 for (var i = 0; i < depth; i++) deepArray = [deepArray]; 51 for (var i = 0; i < depth; i++) deepObject = { next: deepObject };
|
/external/clang/test/CodeGen/ |
PR4611-bitfield-layout.c | 6 unsigned int type:3, pack_id:16, depth:13; member in struct:object_entry
|
/external/ltrace/sysdeps/linux-gnu/m68k/ |
trace.c | 52 int depth; local 60 depth = proc->callstack_depth; 61 if (depth > 0 && 62 proc->callstack[depth - 1].is_syscall && 63 proc->callstack[depth - 1].c_un.syscall == *sysnum) {
|
/external/mesa3d/src/gallium/include/state_tracker/ |
xlib_sw_winsys.h | 18 int depth; member in struct:xlib_drawable
|
/external/chromium_org/tools/gyp/test/generator-output/ |
gyptest-depth.py | 9 and --depth= options is used to put the build configuration files in a separate 26 depth=toplevel_dir, variable
|
/external/chromium_org/third_party/cld/base/ |
crash.h | 13 CrashReason() : filename(0), line_number(0), message(0), depth(0) {} 22 int depth; member in struct:base::CrashReason
|
/external/chromium_org/third_party/npapi/bindings/ |
npapi_x11.h | 57 unsigned int depth; member in struct:_NPSetWindowCallbackStruct
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
heavy_uar_test.cc | 30 void RecuriveFunctionWithStackFrame(int depth) { 31 if (depth <= 0) return; 33 x[0] = depth; 35 RecuriveFunctionWithStackFrame<kFrameSize>(depth - 1); 40 int depth = argc >= 3 ? atoi(argv[2]) : 500; local 42 RecuriveFunctionWithStackFrame<10>(depth); 43 RecuriveFunctionWithStackFrame<100>(depth); 44 RecuriveFunctionWithStackFrame<500>(depth); 45 RecuriveFunctionWithStackFrame<1024>(depth); 46 RecuriveFunctionWithStackFrame<2000>(depth); [all...] |
/frameworks/rs/driver/ |
rsdFrameBuffer.cpp | 35 DrvAllocation *depth = NULL; local 37 depth = (DrvAllocation *)fb->mHal.state.depthTarget->mHal.drv; 39 if (depth->uploadDeferred) { 44 fbo->setDepthTarget(depth);
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
PortableThreadSampler.java | 27 private int depth; field in class:PortableThreadSampler 29 @Override public void setDepth(int depth) { 30 this.depth = depth; 38 if (stackFrames.length > depth) { 39 stackFrames = Arrays.copyOfRange(stackFrames, 0, depth);
|
/art/runtime/ |
thread_pool_test.cc | 107 TreeTask(ThreadPool* const thread_pool, AtomicInteger* count, int depth) 110 depth_(depth) {} 136 static const int depth = 8; local 137 thread_pool.AddTask(self, new TreeTask(&thread_pool, &count, depth)); 140 EXPECT_EQ((1 << depth) - 1, count.LoadSequentiallyConsistent());
|
/external/chromium_org/base/debug/ |
trace_event_win.cc | 83 DWORD depth; local 88 depth = CaptureStackBackTrace(0, 92 event.SetField(3, sizeof(depth), &depth); 93 event.SetField(4, sizeof(backtrace[0]) * depth, backtrace);
|
/external/chromium_org/base/ |
logging_win.cc | 66 DWORD depth = 0; local 71 depth = CaptureStackBackTrace(2, kMaxBacktraceDepth, backtrace, NULL); 78 event.SetField(0, sizeof(depth), &depth); 79 event.SetField(1, sizeof(backtrace[0]) * depth, &backtrace);
|
/external/chromium_org/chrome/utility/media_galleries/ |
iapps_xml_utils.cc | 25 int depth = reader->Depth(); local 27 if (!SkipToNextElement(reader) || reader->Depth() < depth) 29 DCHECK_EQ(depth, reader->Depth()); 40 int dict_content_depth = reader->Depth() + 1; 45 while (reader->Depth() >= dict_content_depth) { 51 DCHECK_EQ(dict_content_depth, reader->Depth());
|
/external/chromium_org/extensions/common/ |
extension_resource.cc | 67 int depth = 0; local 72 depth--; 74 depth++; 76 if (depth < 0) {
|
/external/chromium_org/net/third_party/nss/ssl/ |
cmpcert.c | 33 int depth; local 41 depth=0; 72 if ( ( depth <= 20 ) && 79 depth++;
|
/external/chromium_org/pdf/ |
draw_utils.h | 60 // depth - how big matrix should be. Shadow will go smoothly across the 62 // If factor == 1, smoothing will be linear from 0 to the end (depth), 64 // if factor > 1, smoothing will drop faster near the end (depth). 65 ShadowMatrix(uint32 depth, double factor, uint32 background); 71 uint32 depth() const { return depth_; } function in class:chrome_pdf::ShadowMatrix
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebScreenInfo.h | 44 // The screen depth in bits per pixel 45 int depth; member in struct:blink::WebScreenInfo 82 , depth(0)
|
/external/chromium_org/third_party/libaddressinput/src/cpp/src/ |
ondemand_supply_task.cc | 90 size_t depth = std::count(key.begin(), key.end(), '/') - 1; local 91 assert(depth < arraysize(LookupKey::kHierarchy)); 92 AddressField field = LookupKey::kHierarchy[depth]; 120 hierarchy_.rule[depth] = result.first->second;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/ |
nv50_transfer.h | 16 uint16_t depth; member in struct:nv50_m2mf_rect
|