HomeSort by relevance Sort by last modified time
    Searched defs:depth (Results 176 - 200 of 1122) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/openssl/crypto/pkcs7/
bio_ber.c 83 int depth; member in struct:ber_struct
96 int depth; /* used with indefinite encoding. */ member in struct:bio_ber_struct
259 ctx->depth--;
260 if (ctx->depth <= 0)
  /external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
SDL_atarigl_c.h 78 GLint depth,stencil,accum; member in struct:SDL_PrivateGLData
92 #define gl_curdepth (this->gl_data->depth)
  /external/skia/experimental/Intersection/
CubicConvexHull.cpp 23 , depth(0)
108 __FUNCTION__, depth, splits, newMinT1, newMaxT1, minT1, maxT1,
119 __FUNCTION__, depth, splits, newMinT2, newMaxT2, minT2, maxT2,
129 ++depth;
144 --depth;
149 --depth;
158 int depth; member in class:CubicIntersections
  /external/valgrind/main/callgrind/
callstack.c 222 /* only increment depth if another function is called */
317 Int depth = 0; local
340 /* only decrement depth if another function was called */
344 depth = *pdepth;
364 if (depth == 0) function_left(to_fn);
  /frameworks/base/core/java/android/view/animation/
AnimationUtils.java 103 int depth = parser.getDepth(); local
105 while (((type=parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
180 int depth = parser.getDepth(); local
182 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
328 int depth = parser.getDepth(); local
330 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
  /frameworks/base/graphics/java/android/graphics/
FontListParser.java 144 int depth = 1; local
145 while (depth > 0) {
148 depth++;
151 depth--;
  /frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 150 // Skips tags the parser isn't interested in. Uses depth to handle nested tags. i.e.,
152 // finds the matching END_TAG (as indicated by the value of "depth" being 0).
157 int depth = 1; local
158 while (depth != 0) {
161 depth--;
164 depth++;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
LocalizedNameResolver.java 117 final int depth = parser.getDepth(); local
118 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ProfileData.java 129 // second word: depth of the stack (N)
131 private void writeOneStack(Node node, int depth) throws IOException {
133 writeInt(depth);
134 while (depth-- > 0) {
140 private void writeAllStacks(Node node, int depth) throws IOException {
142 writeOneStack(node, depth);
148 writeAllStacks(children.get(i), depth + 1); local
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhotoPriorityResolver.java 140 final int depth = parser.getDepth(); local
141 while (((type = parser.next()) != XmlPullParser.END_TAG || parser.getDepth() > depth)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/extensions/
multibuf.h 111 VisualID visualid; /* visual usuable at this depth */
113 int depth; /* depth of buffers to be created */ member in struct:__anon45431
195 int /* depth */,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
multibuf.h 111 VisualID visualid; /* visual usuable at this depth */
113 int depth; /* depth of buffers to be created */ member in struct:__anon47167
195 int /* depth */,
  /art/compiler/dex/
mir_dataflow.cc 1322 uint32_t depth = std::min(3U, static_cast<uint32_t>(bb->nesting_depth)); local
    [all...]
  /art/runtime/
stack_map.h 43 void SetDepth(uint8_t depth) {
44 region_.Store<uint8_t>(kDepthOffset, depth);
47 uint32_t GetMethodReferenceIndexAtDepth(uint8_t depth) const {
48 return region_.Load<uint32_t>(kFixedSize + depth * SingleEntrySize());
51 void SetMethodReferenceIndexAtDepth(uint8_t depth, uint32_t index) {
52 region_.Store<uint32_t>(kFixedSize + depth * SingleEntrySize(), index);
262 uint8_t depth = region_.Load<uint8_t>(offset); local
264 InlineInfo::kFixedSize + depth * InlineInfo::SingleEntrySize()));
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 239 * Skips tags the parser isn't interested in. Uses depth to handle nested tags. i.e.,
241 * finds the matching END_TAG (as indicated by the value of "depth" being 0).
247 int depth = 1; local
248 while (depth != 0) {
251 depth--;
254 depth++;
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 239 * Skips tags the parser isn't interested in. Uses depth to handle nested tags. i.e.,
241 * finds the matching END_TAG (as indicated by the value of "depth" being 0).
247 int depth = 1; local
248 while (depth != 0) {
251 depth--;
254 depth++;
  /development/ndk/platforms/android-3/include/linux/
irq.h 86 unsigned int depth; member in struct:irq_desc
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
SensorTest.java 64 final int depth = mDepth; local
67 for (int i = 0; i < depth; i++) {
71 index = depth - 1;
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/
FeedParser.java 239 * Skips tags the parser isn't interested in. Uses depth to handle nested tags. i.e.,
241 * finds the matching END_TAG (as indicated by the value of "depth" being 0).
247 int depth = 1; local
248 while (depth != 0) {
251 depth--;
254 depth++;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXPolicyNode.java 14 protected int depth; field in class:PKIXPolicyNode
37 depth = _depth;
59 return depth;
151 depth,
  /external/chromium_org/chrome/browser/ui/views/accessibility/
accessibility_event_router_views.cc 317 int depth = -1; local
328 // Get node depth.
329 depth = 0;
331 depth++;
337 profile, name, context, depth, index, siblings_count, children_count,
  /external/chromium_org/components/password_manager/core/browser/
password_form_manager.cc 650 // regardless of the matching depth in the URL path).
666 size_t depth = 0; local
669 while ((depth < max_dirs) && (form_path_tokens_[depth] ==
670 candidate_path_tokens[depth])) {
671 depth++;
675 score += (depth > 0) ? 1 << 5 : 0;
  /external/chromium_org/native_client_sdk/src/libraries/xray/
browser.c 101 uint32_t depth = XRAY_EXTRACT_DEPTH( local
105 XRAY_EXTRACT_DEPTH((*stack_top)->depth_addr) >= depth) {
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
preload_supplier.cc 134 size_t depth = std::count(id.begin(), id.end(), '/') - 1; local
135 assert(depth < arraysize(LookupKey::kHierarchy));
136 AddressField field = LookupKey::kHierarchy[depth];
147 if (depth > 0) {
255 return lookup_key.ToKeyString(0); // Zero depth = COUNTRY level.
331 for (size_t depth = 0; depth <= max_depth; ++depth) {
332 const std::string& key = lookup_key.ToKeyString(depth);
335 return depth > 0; // No data on COUNTRY level is failure
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/nestegg/include/nestegg/
nestegg.h 142 unsigned int depth; /**< Bits per sample. */ member in struct:__anon16679

Completed in 1532 milliseconds

1 2 3 4 5 6 78 91011>>