Searched defs:depth (Results 201 - 225 of 958) sorted by relevance

1234567891011>>

/external/mesa3d/src/mesa/swrast/
H A Ds_fragprog.c248 /* 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/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DVisualSampleEntry.java42 * template unsigned int(16) depth = 0x0018;
70 private int depth = 24; field in class:VisualSampleEntry
103 return depth;
130 public void setDepth(int depth) { argument
131 this.depth = depth;
164 depth = IsoTypeReader.readUInt16(content);
/external/opencv/cv/src/
H A Dcvsumpixels.cpp326 int depth, cn; local
384 depth = CV_MAT_DEPTH(src->type);
394 func_c1 = (CvIntegralImageFuncC1)tab_c1.fn_2d[depth];
395 func_cn = (CvIntegralImageFuncCn)tab_cn.fn_2d[depth];
408 if( depth == CV_8U && !tilted && CV_MAT_DEPTH(sum->type) == CV_32S )
/external/opencv/cxcore/src/
H A Dcxlut.cpp222 int depth, cn, lut_cn; local
262 depth = CV_MAT_DEPTH( dst->type );
288 int half_size = CV_ELEM_SIZE1(depth)*cn*128;
298 if( lut_cn == 1 || (lut_cn <= 4 && depth == CV_8U) )
300 CvLUT_TransformFunc func = depth == CV_8U ? lut_8u_tab[cn-1] :
301 (CvLUT_TransformFunc)(lut_c1_tab.fn_2d[depth]);
312 (CvLUT_TransformCnFunc)(lut_cn_tab.fn_2d[depth]);
/external/opencv/otherlibs/highgui/
H A Dgrfmt_png.cpp261 bool GrFmtPngWriter::IsFormatSupported( int depth )
263 return depth == IPL_DEPTH_8U || depth == IPL_DEPTH_16U;
267 int width, int height, int depth, int channels )
276 if( depth != IPL_DEPTH_8U && depth != IPL_DEPTH_16U )
295 png_set_IHDR( png_ptr, info_ptr, width, height, depth,
266 WriteImage( const uchar* data, int step, int width, int height, int depth, int channels ) argument
H A Dloadsave.cpp393 int depth = 8; local
429 depth = reader->GetDepth();
438 if(reader->IsFloat() && depth != 8)
441 type = ( depth <= 8 ) ? CV_8U : ( depth <= 16 ) ? CV_16U : CV_32S;
447 if(reader->IsFloat() && depth != 8)
450 type = ( depth <= 8 ) ? IPL_DEPTH_8U : ( depth <= 16 ) ? IPL_DEPTH_16U : IPL_DEPTH_32S;
/external/openssl/crypto/asn1/
H A Dasn1_par.c68 int offset, int depth, int indent, int dump);
113 int depth, int indent, int dump)
155 depth,(long)hl,len) <= 0)
161 depth,(long)hl) <= 0)
164 if (!asn1_print_info(bp,tag,xclass,j,(indent)?depth:0))
182 offset+(p - *pp),depth+1,
192 offset+(p - *pp),depth+1,
112 asn1_parse2(BIO *bp, const unsigned char **pp, long length, int offset, int depth, int indent, int dump) argument
/external/oprofile/libop/
H A Dop_alloc_counter.c102 * @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, argument
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]
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DTrie.java57 private Trie(List<Map.Entry<String, Integer>> elements, int depth) { argument
58 this(elements, depth, 0, elements.size());
63 * @param depth the depth in the tree.
70 List<Map.Entry<String, Integer>> elements, int depth,
72 this.terminal = depth == elements.get(start).getKey().length();
89 char ch = elements.get(i).getKey().charAt(depth);
100 char lastCh = elements.get(start).getKey().charAt(depth);
102 char ch = elements.get(i).getKey().charAt(depth);
106 elements, depth
69 Trie( List<Map.Entry<String, Integer>> elements, int depth, int start, int end) argument
179 toStringBuilder(int depth, StringBuilder sb) argument
[all...]
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DCodedInputStreamTest.java403 private TestRecursiveMessage makeRecursiveMessage(int depth) { argument
404 if (depth == 0) {
408 .setA(makeRecursiveMessage(depth - 1)).build();
412 private void assertMessageDepth(TestRecursiveMessage message, int depth) { argument
413 if (depth == 0) {
418 assertMessageDepth(message.getA(), depth - 1);
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/
H A DSDL_atarigl_c.h78 GLint depth,stencil,accum; member in struct:SDL_PrivateGLData
92 #define gl_curdepth (this->gl_data->depth)
/external/skia/bench/
H A DAAClipBench.cpp119 int depth,
125 fSizes[depth].fX, fSizes[depth].fY);
133 0 == depth ? SkRegion::kReplace_Op :
137 if (kNestingDepth == depth) {
144 this->recurse(canvas, depth+1, childOffset);
146 childOffset += fSizes[depth+1];
147 this->recurse(canvas, depth+1, childOffset);
149 childOffset.fX = offset.fX + fSizes[depth+1].fX;
151 this->recurse(canvas, depth
118 recurse(SkCanvas* canvas, int depth, const SkPoint& offset) argument
[all...]
/external/skia/experimental/Intersection/
H A DCubicConvexHull.cpp23 , 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
H A DIntersections.h123 int depth() const { function in class:Intersections
/external/skia/src/core/
H A DSkTSort.h153 * 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) { argument
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 local
[all...]
/external/valgrind/main/callgrind/
H A Dcallstack.c222 /* 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);
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_old.h80 int depth, const char *subject,
117 int depth, const char *subject,
116 wpa_supplicant_dbus_notify_certification(struct wpa_supplicant *wpa_s, int depth, const char *subject, const char *cert_hash, const struct wpabuf *cert) argument
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DNamespaceMappings.java31 * prefix/uri/depth triplets are pushed on a stack pushed on a stack. The depth
32 * indicates the nesting depth of the element for which the mapping was made.
47 * "def" is pushed on the stack with depth 1.
49 * depth 2.
50 * When the <sentance> is encountered "p3" and "jkl" are pushed with depth 3.
52 * stack. Of course popNamespaces(2) would pop anything with depth 2 or
86 * when leaving the current element depth
88 * depth can be popped of the top and the same node
91 * All prefixes pushed at the current depth ca
362 MappingRecord(String prefix, String uri, int depth) argument
[all...]
/external/chromium_org/cc/animation/
H A Dtransform_operations.cc218 void TransformOperations::AppendPerspective(SkMScalar depth) { argument
220 to_add.matrix.ApplyPerspectiveDepth(depth);
222 to_add.perspective_depth = depth;
/external/chromium_org/content/browser/accessibility/
H A Daccessibility_tree_formatter.cc77 const base::DictionaryValue& dict, base::string16* contents, int depth) {
79 ToString(dict, base::string16(depth * kIndentSpaces, ' '));
89 RecursiveFormatAccessibilityTree(*child_dict, contents, depth + 1);
76 RecursiveFormatAccessibilityTree( const base::DictionaryValue& dict, base::string16* contents, int depth) argument
/external/chromium_org/gpu/command_buffer/service/
H A Dmailbox_manager_unittest.cc62 GLsizei depth,
73 depth,
55 SetLevelInfo( Texture* texture, GLenum target, GLint level, GLenum internal_format, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, bool cleared) argument
/external/chromium_org/media/tools/player_x11/
H A Dplayer_x11.cc193 unsigned int width, height, border_width, depth; local
202 &depth);
/external/chromium_org/mojo/public/cpp/bindings/tests/
H A Dsample_service_unittest.cc157 void PrintSpacer(int depth) { argument
158 for (int i = 0; i < depth; ++i)
162 void Print(int depth, const char* name, bool value) { argument
163 PrintSpacer(depth);
167 void Print(int depth, const char* name, int32_t value) { argument
168 PrintSpacer(depth);
172 void Print(int depth, const char* name, uint8_t value) { argument
173 PrintSpacer(depth);
178 void Print(int depth, const char* name, argument
180 PrintSpacer(depth);
184 Print(int depth, const char* name, const mojo::String& str) argument
189 Print(int depth, const char* name, const BarPtr& bar) argument
203 Print(int depth, const char* name, const mojo::Array<T>& array) argument
217 Print(int depth, const char* name, const FooPtr& foo) argument
271 int depth = 1; variable
[all...]
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dbrowser.c101 uint32_t depth = XRAY_EXTRACT_DEPTH( local
105 XRAY_EXTRACT_DEPTH((*stack_top)->depth_addr) >= depth) {
H A Dreport.c64 uint32_t depth = XRAY_EXTRACT_DEPTH(e->depth_addr); local
81 &space[256 - depth], symbol_name, annotation);

Completed in 929 milliseconds

1234567891011>>