/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_mipmap_tree.h | 44 GLuint depth; member in struct:_radeon_mipmap_level 76 GLuint depth0; /** Depth of baseLevel image */ 100 unsigned depth,
|
/external/mesa3d/src/mesa/swrast/ |
s_fragprog.c | 248 /* Store result depth/z */ 250 const GLfloat depth = machine->Outputs[FRAG_RESULT_DEPTH][2]; local 251 if (depth <= 0.0) 253 else if (depth >= 1.0) 257 (GLuint) (depth * ctx->DrawBuffer->_DepthMaxF + 0.5F);
|
/external/openssl/crypto/pkcs7/ |
dec.c | 204 int err,depth; local 208 depth= X509_STORE_CTX_get_error_depth(ctx); 211 BIO_printf(bio_err,"depth=%d %s\n",depth,buf); 216 if (depth < 6)
|
verify.c | 219 int err,depth; local 223 depth= X509_STORE_CTX_get_error_depth(ctx); 226 BIO_printf(bio_err,"depth=%d %s\n",depth,buf); 231 if (depth < 6)
|
/external/qemu-pc-bios/vgabios/ |
vbetables-gen.c | 10 int depth; member in struct:__anon34016 104 if (pm->depth == 4) 107 pitch = pm->width * ((pm->depth + 7) / 8); 111 pm->mode, pm->width, pm->height, pm->depth); 112 if (pm->depth == 4) 150 if (pm->depth == 4) { 155 printf("/*Bit8u BitsPerPixel*/ %d,\n", pm->depth); 159 if (pm->depth == 4) 161 else if (pm->depth == 8) 167 if (pm->depth == 4 [all...] |
/external/skia/experimental/Intersection/ |
Intersections.h | 123 int depth() const { function in class:Intersections
|
/external/skia/include/core/ |
SkTDStack.h | 34 int depth() const { return fTotalCount; } function in class:SkTDStack
|
/external/skia/src/core/ |
SkTSort.h | 153 * When depth becomes zero, it switches over to Heap Sort. 155 * we already limit the stack depth by switching to heap sort, 158 * @param depth at this recursion depth, switch to Heap Sort. 163 template <typename T, typename C> void SkTIntroSort(int depth, T* left, T* right, C lessThan) { 170 if (depth == 0) { 174 --depth; 179 SkTIntroSort(depth, left, pivot - 1, lessThan); 195 // Limit Intro Sort recursion depth to no more than 2 * ceil(log2(n)). 196 int depth = 2 * SkNextLog2(SkToU32(right - left)) local [all...] |
/frameworks/base/sax/java/android/sax/ |
Element.java | 34 final int depth; field in class:Element 46 Element(Element parent, String uri, String localName, int depth) { 50 this.depth = depth;
|
RootElement.java | 100 int depth = -1; field in class:RootElement.Handler 112 int depth = ++this.depth; local 114 if (depth == 0) { 128 if (depth == current.depth + 1) { 183 if (depth == current.depth) { 204 depth--;
|
/packages/apps/Camera/src/com/android/camera/ |
PreferenceInflater.java | 87 int depth = parser.getDepth(); local 88 if (depth > list.size()) { 91 list.set(depth - 1, pref); 93 if (depth > 1) { 94 ((PreferenceGroup) list.get(depth - 2)).addChild(pref);
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
PreferenceInflater.java | 87 int depth = parser.getDepth(); local 88 if (depth > list.size()) { 91 list.set(depth - 1, pref); 93 if (depth > 1) { 94 ((PreferenceGroup) list.get(depth - 2)).addChild(pref);
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
DirectoryWalker.java | 32 * This class operates with a {@link FileFilter} and maximum depth to 65 * protected boolean handleDirectory(File directory, int depth, Collection results) { 76 * protected void handleFile(File file, int depth, Collection results) { 206 * private void handleIsCancelled(File file, int depth, Collection results) { 226 * protected boolean handleDirectory(File directory, int depth, Collection results) throws IOException { 229 * throw new CancelException(file, depth); 234 * protected void handleFile(File file, int depth, Collection results) throws IOException { 237 * throw new CancelException(file, depth); 258 * The limit on the directory depth to walk. 263 * Construct an instance with no filtering and unlimited <i>depth</i> 574 private int depth = -1; field in class:DirectoryWalker.CancelException [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
ExternalSource.java | 138 final int depth = parser.getDepth(); local 139 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/ |
Xdbe.h | 44 int depth; /* depth of visual in bits */ member in struct:__anon45361
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/ |
Xdbe.h | 44 int depth; /* depth of visual in bits */ member in struct:__anon47097
|
/sdk/emulator/opengl/tests/ut_renderer/ |
X11Windowing.cpp | 93 int depth = DefaultDepth(dpy, defaultScreen); local 96 XMatchVisualInfo(dpy, defaultScreen, depth, TrueColor, visualInfo);
|
/art/runtime/jdwp/ |
jdwp_event.h | 78 int depth; /* JdwpStepDepth */ member in struct:art::JDWP::JdwpEventMod::__anon108
|
/cts/tests/tests/security/src/android/security/cts/ |
SELinuxPolicyRule.java | 150 int depth = 1; local 151 while (depth != 0) { 154 depth--; 157 depth++;
|
/development/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++;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
EventMod.java | 93 public int depth; field in class:EventMod 121 depth = -1;
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
QName.java | 269 int depth = namespaces.size(); local 271 for (int i = depth - 1; i >= 0; i--)
|
/external/chromium_org/gpu/command_buffer/service/ |
texture_definition.h | 70 GLsizei depth, 81 GLsizei depth; member in struct:gpu::gles2::TextureDefinition::LevelInfo
|
/external/chromium_org/media/tools/player_x11/ |
player_x11.cc | 183 unsigned int width, height, border_width, depth; local 192 &depth);
|
/external/chromium_org/mojo/public/cpp/bindings/tests/ |
sample_service_unittest.cc | 156 void PrintSpacer(int depth) { 157 for (int i = 0; i < depth; ++i) 161 void Print(int depth, const char* name, bool value) { 162 PrintSpacer(depth); 166 void Print(int depth, const char* name, int32_t value) { 167 PrintSpacer(depth); 171 void Print(int depth, const char* name, uint8_t value) { 172 PrintSpacer(depth); 177 void Print(int depth, const char* name, 179 PrintSpacer(depth); 270 int depth = 1; variable [all...] |