/external/chromium_org/base/json/ |
json_writer.h | 62 void BuildJSONString(const Value* const node, int depth); 68 void IndentLine(int depth);
|
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
WebGLContextAttributes.h | 51 // Whether or not the drawing buffer has a depth buffer; default=true 52 bool depth() const; 53 void setDepth(bool depth);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_clear.h | 43 const union pipe_color_union *color, double depth, unsigned stencil) 56 depth, stencil,
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
depth.c | 29 #include "depth.h" 42 _mesa_ClearDepth( GLclampd depth ) 48 _mesa_debug(ctx, "glClearDepth(%f)\n", depth); 50 depth = CLAMP( depth, 0.0, 1.0 ); 52 if (ctx->Depth.Clear == depth) 56 ctx->Depth.Clear = depth; 61 _mesa_ClearDepthf( GLclampf depth ) [all...] |
texstorage.c | 105 GLint *width, GLint *height, GLint *depth) 115 if ((*depth > 1) && (target != GL_TEXTURE_2D_ARRAY)) { 116 *depth /= 2; 129 GLsizei width, GLsizei height, GLsizei depth) 134 GLint level, levelWidth = width, levelHeight = height, levelDepth = depth; 140 assert(depth > 0); 174 width, height, depth)) { 244 GLsizei width, GLsizei height, GLsizei depth) 297 if (width < 1 || height < 1 || depth < 1) { 299 "glTexStorage%uD(width, height or depth < 1)", dims) [all...] |
/external/chromium_org/tools/gyp/test/variables/filelist/ |
update_golden | 7 python ../../../gyp --debug variables --debug general --format gypd --depth . src/filelist.gyp > filelist.gyp.stdout
|
/external/chromium_org/ui/gl/ |
gl_image_glx.cc | 32 int BindToTextureFormat(int depth) { 33 if (depth == 32) 39 int TextureFormat(int depth) { 40 if (depth == 32) 90 BindToTextureFormat(visinfo->depth), GL_TRUE, 117 unsigned int depth = 0; local 119 display_, pixmap_, &root, &x, &y, &width, &height, &bw, &depth)) { 126 GLX_TEXTURE_FORMAT_EXT, TextureFormat(visinfo->depth),
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_clear.h | 43 const union pipe_color_union *color, double depth, unsigned stencil) 56 depth, stencil,
|
/external/mesa3d/src/mesa/main/ |
depth.c | 29 #include "depth.h" 42 _mesa_ClearDepth( GLclampd depth ) 48 _mesa_debug(ctx, "glClearDepth(%f)\n", depth); 50 depth = CLAMP( depth, 0.0, 1.0 ); 52 if (ctx->Depth.Clear == depth) 56 ctx->Depth.Clear = depth; 61 _mesa_ClearDepthf( GLclampf depth ) [all...] |
texstorage.c | 105 GLint *width, GLint *height, GLint *depth) 115 if ((*depth > 1) && (target != GL_TEXTURE_2D_ARRAY)) { 116 *depth /= 2; 129 GLsizei width, GLsizei height, GLsizei depth) 134 GLint level, levelWidth = width, levelHeight = height, levelDepth = depth; 140 assert(depth > 0); 174 width, height, depth)) { 244 GLsizei width, GLsizei height, GLsizei depth) 297 if (width < 1 || height < 1 || depth < 1) { 299 "glTexStorage%uD(width, height or depth < 1)", dims) [all...] |
/external/opencv/otherlibs/highgui/ |
grfmt_png.h | 81 bool IsFormatSupported( int depth ); 83 int width, int height, int depth, int channels );
|
grfmt_pxm.h | 79 bool IsFormatSupported( int depth ); 82 int width, int height, int depth, int channels );
|
/ndk/sources/host-tools/make-3.81/ |
debug.h | 31 #define DBS(_l,_x) do{ if(ISDB(_l)) {print_spaces (depth); \ 34 #define DBF(_l,_x) do{ if(ISDB(_l)) {print_spaces (depth); \
|
/external/chromium_org/third_party/angle_dx11/src/compiler/ |
intermOut.cpp | 59 void OutputTreeText(TInfoSinkBase& sink, TIntermNode* node, const int depth) 65 for (i = 0; i < depth; ++i) 80 OutputTreeText(sink, node, depth); 90 OutputTreeText(out, node, depth); 142 OutputTreeText(out, node, depth); 214 OutputTreeText(out, node, depth); 286 OutputTreeText(out, node, depth); 291 ++depth; 293 OutputTreeText(sink, node, depth); 297 OutputTreeText(sink, node, depth); [all...] |
/external/chromium_org/net/http/ |
http_pipelined_host_test_util.h | 41 MockPipeline(int depth, bool usable, bool active); 44 void SetState(int depth, bool usable, bool active) { 45 depth_ = depth; 50 virtual int depth() const OVERRIDE { return depth_; }
|
/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/third_party/WebKit/public/platform/ |
WebTransformOperations.h | 47 virtual void appendPerspective(double depth) = 0;
|
/external/chromium_org/third_party/npapi/bindings/ |
npapi_x11.h | 57 unsigned int depth; member in struct:_NPSetWindowCallbackStruct
|
/external/eigen/bench/ |
bench_unrolling | 3 # gcc : CXX="g++ -finline-limit=10000 -ftemplate-depth-2000 --param max-inline-recursive-depth=2000" 5 CXX=${CXX-g++ -finline-limit=10000 -ftemplate-depth-2000 --param max-inline-recursive-depth=2000} # default value
|
/external/chromium_org/tools/deep_memory_profiler/subcommands/ |
expand.py | 19 'Usage: %prog expand <dump> <policy> <component> <depth>') 26 depth = args[4] 31 component_name, int(depth), sys.stdout) 35 def _output(dump, policy, bucket_set, component_name, depth, out): 36 """Prints all stacktraces in a given component of given depth. 43 depth: An integer representing depth to be printed. 49 dump, policy, bucket_set, component_name, depth, sizes) 61 def _add_size(precedence, bucket, depth, committed, sizes): 65 0 : min(len(bucket.symbolized_stackfunction), 1 + depth)], [all...] |
/external/llvm/lib/Analysis/ |
RegionPrinter.cpp | 102 unsigned depth = 0) { 104 O.indent(2 * depth) << "subgraph cluster_" << static_cast<const void*>(R) 106 O.indent(2 * (depth + 1)) << "label = \"\";\n"; 109 O.indent(2 * (depth + 1)) << "style = filled;\n"; 110 O.indent(2 * (depth + 1)) << "color = " 114 O.indent(2 * (depth + 1)) << "style = solid;\n"; 115 O.indent(2 * (depth + 1)) << "color = " 120 printRegionCluster(*RI, GW, depth + 1); 127 O.indent(2 * (depth + 1)) << "Node" 131 O.indent(2 * depth) << "}\n" [all...] |
/external/elfutils/libdw/ |
dwarf_getscopes.c | 70 pc_match (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg) 98 a->inlined = depth; 107 origin_match (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg) 118 unsigned int nscopes = a->nscopes + depth; 140 pc_record (unsigned int depth, struct Dwarf_Die_Chain *die, void *arg) 151 a->nscopes = depth + 1 - a->inlined; 173 Dwarf_Die *const inlinedie = &a->scopes[depth - a->inlined]; 191 if (depth >= a->inlined) 200 return __libdw_visit_scopes (depth, die, &origin_match, NULL, a);
|
/external/libvpx/libvpx/vp8/encoder/ |
lookahead.c | 65 unsigned int depth) 70 /* Clamp the lookahead queue depth */ 71 if(depth < 1) 72 depth = 1; 73 else if(depth > MAX_LAG_BUFFERS) 74 depth = MAX_LAG_BUFFERS; 76 /* Keep last frame in lookahead buffer by increasing depth by 1.*/ 77 depth += 1; 87 ctx->max_sz = depth; 88 ctx->buf = calloc(depth, sizeof(*ctx->buf)) [all...] |
/external/oprofile/libop/ |
op_alloc_counter.c | 102 * @param max_depth number of entry in array ctr_arc == depth of tree 103 * @param depth current level we are exploring 126 allocate_counter(counter_arc_head const * ctr_arc, int max_depth, int depth, 131 if (depth == max_depth) 135 if((&ctr_arc[depth].next)->next == &ctr_arc[depth].next) { 136 counter_map[depth] = -1; 137 if (allocate_counter(ctr_arc, max_depth, depth + 1, 142 list_for_each(pos, &ctr_arc[depth].next) { 148 counter_map[depth] = arc->counter [all...] |
/external/chromium_org/ppapi/proxy/ |
serialized_flash_menu.cc | 15 // Maximum depth of submenus allowed (e.g., 1 indicates that submenus are 20 bool CheckMenu(int depth, const PP_Flash_Menu* menu); 23 PP_Flash_Menu* ReadMenu(int depth, const IPC::Message* m, PickleIterator* iter); 25 bool CheckMenuItem(int depth, const PP_Flash_MenuItem* item) { 27 return CheckMenu(depth, item->submenu); 31 bool CheckMenu(int depth, const PP_Flash_Menu* menu) { 32 if (depth > kMaxMenuDepth || !menu) 34 ++depth; 40 if (!CheckMenuItem(depth, menu->items + i)) 79 bool ReadMenuItem(int depth, [all...] |