Searched refs:depth (Results 101 - 125 of 846) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/debug/
H A Dmemusage.c30 .depth = 0,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/oprofile/
H A Dinit.c17 extern void ia64_backtrace(struct pt_regs * const regs, unsigned int depth);
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/debug/
H A Dmemusage.c30 .depth = 0,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/msw/
H A Dbitmap.h44 wxBitmap(const char bits[], int width, int height, int depth = 1);
59 wxBitmap(const void* data, long type, int width, int height, int depth = 1);
61 // Create a new, uninitialized bitmap of the given size and depth (if it
66 wxBitmap(int width, int height, int depth = -1);
73 wxBitmap(const wxImage& image, int depth = -1)
74 { (void)CreateFromImage(image, depth); }
123 virtual bool Create(int width, int height, int depth = -1);
125 virtual bool Create(const void* data, long type, int width, int height, int depth = 1);
174 bool DoCreate(int w, int h, int depth, WXHDC hdc);
178 bool CreateFromImage(const wxImage& image, int depth);
[all...]
H A Ddib.h32 // create an uninitialized DIB with the given width, height and depth (only
37 wxDIB(int width, int height, int depth) argument
38 { Init(); (void)Create(width, height, depth); }
48 // load a DIB from file (any depth is supoprted here unlike above)
55 bool Create(int width, int height, int depth);
98 // get the number of bits per pixel, or depth
156 // return the size of one line in a DIB with given width and depth: the
159 static unsigned long GetLineSize(int width, int depth) argument
161 return ((width*depth + 31) & ~31) >> 3;
193 // size and depth o
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/palmos/
H A Dbitmap.h45 wxBitmap(const char bits[], int width, int height, int depth = 1);
54 wxBitmap(const void* data, long type, int width, int height, int depth = 1);
56 // Create a new, uninitialized bitmap of the given size and depth (if it
61 wxBitmap(int width, int height, int depth = -1);
68 wxBitmap(const wxImage& image, int depth = -1)
69 { (void)CreateFromImage(image, depth); }
114 virtual bool Create(int width, int height, int depth = -1);
116 virtual bool Create(const void* data, long type, int width, int height, int depth = 1);
159 bool DoCreate(int w, int h, int depth, WXHDC hdc);
163 bool CreateFromImage(const wxImage& image, int depth);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/gpu/drm/r128/
H A Dr128_ioc32.c114 drm_r128_depth_t __user *depth; local
119 depth = compat_alloc_user_space(sizeof(*depth));
120 if (!access_ok(VERIFY_WRITE, depth, sizeof(*depth))
121 || __put_user(depth32.func, &depth->func)
122 || __put_user(depth32.n, &depth->n)
123 || __put_user((int __user *)(unsigned long)depth32.x, &depth->x)
124 || __put_user((int __user *)(unsigned long)depth32.y, &depth->y)
126 &depth
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dkernel_lock.c121 int depth = current->lock_depth + 1; local
125 if (likely(!depth)) {
129 current->lock_depth = depth;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dsgidec.c31 unsigned int depth; member in struct:SgiState
87 unsigned int len = s->height * s->depth * 4;
97 for (z = 0; z < s->depth; z++) {
104 s->depth) != s->width) {
127 if (offset * s->depth > bytestream2_get_bytes_left(&s->g))
131 for (z = 0; z < s->depth; z++) {
140 for (z = 0; z < s->depth; z++)
145 for (z = 0; z < s->depth; z++)
180 s->depth = bytestream2_get_be16(&s->g);
193 if (s->depth
[all...]
H A Dpnm.c60 int h, w, depth, maxval; local
80 depth = -1;
92 depth = strtol(buf1, NULL, 10);
105 if (w <= 0 || h <= 0 || maxval <= 0 || depth <= 0 || tuple_type[0] == '\0' || av_image_check_size(w, h, 0, avctx))
110 if (depth == 1) {
115 } else if (depth == 3) {
123 } else if (depth == 4) {
H A Dsunrast.c53 unsigned int w, h, depth, type, maptype, maplength, stride, x, y, len, alen; local
67 depth = AV_RB32(buf+12);
91 switch (depth) {
102 av_log(avctx, AV_LOG_ERROR, "invalid depth\n");
121 if (depth != 8 && maplength) {
124 } else if (depth == 8) {
147 len = (depth * w + 7) >> 3;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/share/grabbag/
H A Dpicture.c72 picture->width = picture->height = picture->depth = picture->colors = 0;
90 picture->depth = val;
105 picture->depth = val;
110 if(picture->depth < 32 && 1u<<picture->depth < picture->colors)
147 /* even though the bit depth for color_type==3 can be 1,2,4,or 8,
149 * sample depth is always 8
151 picture->depth = 8 * 3u;
158 picture->depth = (FLAC__uint32)data[16];
160 picture->depth
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/
H A Dsmtc_ipi.h47 int depth; member in struct:smtc_ipi_q
62 q->depth++;
79 q->depth--;
112 q->depth++;
122 retval = q->depth;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/dtc/libfdt/
H A Dfdt.c141 int fdt_next_node(const void *fdt, int offset, int *depth) argument
160 if (depth)
161 (*depth)++;
165 if (depth)
166 (*depth)--;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dexif.c69 int depth, AVDictionary **metadata)
75 if (depth > 2) {
90 ret = avpriv_exif_decode_ifd(avctx, gbytes, le, depth + 1, metadata);
118 int depth, AVDictionary **metadata)
130 if ((ret = exif_decode_tag(avctx, gbytes, le, depth, metadata)) < 0) {
68 exif_decode_tag(AVCodecContext *avctx, GetByteContext *gbytes, int le, int depth, AVDictionary **metadata) argument
117 avpriv_exif_decode_ifd(AVCodecContext *avctx, GetByteContext *gbytes, int le, int depth, AVDictionary **metadata) argument
H A Dsunrast.c35 unsigned int w, h, depth, type, maptype, maplength, stride, x, y, len, alen; local
50 depth = AV_RB32(buf + 12);
78 switch (depth) {
95 av_log(avctx, AV_LOG_ERROR, "invalid depth\n");
111 if (depth > 8 && maplength) {
129 if (maplength && depth < 8) {
133 stride = (w + 15 >> 3) * depth;
140 len = (depth * w + 7) >> 3;
178 if (avctx->pix_fmt == AV_PIX_FMT_PAL8 && depth < 8) {
182 for (x = 0; x < (w + 7 >> 3) * depth;
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/util/
H A Dsu-filter.pl177 my $depth = shift;
214 if($depth != 0) {
222 if($depth == 1) {
226 if($depth == 1) {
237 if($depth == 0) {
238 $out .= displayData("$indent ", $depth+1, $item);
240 $out .= "{\n".displayData("$indent ", $depth+1, $item)."\n".$indent."}";
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/util/
H A Dsu-filter.pl177 my $depth = shift;
214 if($depth != 0) {
222 if($depth == 1) {
226 if($depth == 1) {
237 if($depth == 0) {
238 $out .= displayData("$indent ", $depth+1, $item);
240 $out .= "{\n".displayData("$indent ", $depth+1, $item)."\n".$indent."}";
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mm/
H A Dhighmem.c157 * resumed. If the reentrancy depth is 0 then there is no need to restore
167 int *depth; local
175 depth = &per_cpu(kmap_high_l1_vipt_depth, cpu);
183 (*depth)++;
199 int *depth = &per_cpu(kmap_high_l1_vipt_depth, cpu); local
209 BUG_ON(*depth <= 0);
212 (*depth)--;
213 if (*depth != 0 && pte_val(pte) != pte_val(saved_pte)) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/
H A Drecd008.tcl9 proc recd008 { method {breadth 4} {depth 4} args} {
16 puts "Recd008: $method $breadth X $depth deeply nested transactions"
49 set txn_max [expr int([expr pow($breadth,$depth)])]
66 { {recd008_parent abort ENV DB $method $p1 TXNID 1 1 $breadth $depth}
68 { {recd008_parent commit ENV DB $method $p1 TXNID 1 1 $breadth $depth}
101 # knows about depth/breadth and file naming so that recursive calls
115 proc recd008_parent { op env db method p1key parent b0 d0 breadth depth } {
132 $b0 $d0 $breadth $depth]
157 proc recd008_txn { op env db method p1key parent b0 d0 breadth depth } {
165 puts "Recd008_txn: $op parent:$parent $breadth $depth (
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m32r/platforms/mappi2/
H A Dsetup.c91 irq_desc[M32R_IRQ_INT0].depth = 1;
100 irq_desc[M32R_IRQ_MFT2].depth = 1;
109 irq_desc[M32R_IRQ_SIO0_R].depth = 1;
117 irq_desc[M32R_IRQ_SIO0_S].depth = 1;
124 irq_desc[M32R_IRQ_SIO1_R].depth = 1;
132 irq_desc[M32R_IRQ_SIO1_S].depth = 1;
142 irq_desc[M32R_IRQ_INT1].depth = 1;
151 irq_desc[PLD_IRQ_CFIREQ].depth = 1; /* disable nested irq */
160 irq_desc[PLD_IRQ_CFC_INSERT].depth = 1; /* disable nested irq */
168 irq_desc[PLD_IRQ_CFC_EJECT].depth
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m32r/platforms/mappi3/
H A Dsetup.c91 irq_desc[M32R_IRQ_INT0].depth = 1;
100 irq_desc[M32R_IRQ_MFT2].depth = 1;
109 irq_desc[M32R_IRQ_SIO0_R].depth = 1;
117 irq_desc[M32R_IRQ_SIO0_S].depth = 1;
124 irq_desc[M32R_IRQ_SIO1_R].depth = 1;
132 irq_desc[M32R_IRQ_SIO1_S].depth = 1;
142 irq_desc[M32R_IRQ_INT1].depth = 1;
151 irq_desc[PLD_IRQ_CFIREQ].depth = 1; /* disable nested irq */
160 irq_desc[PLD_IRQ_CFC_INSERT].depth = 1; /* disable nested irq */
170 irq_desc[PLD_IRQ_IDEIREQ].depth
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/contrib/pngminus/
H A Dpnm2png.c54 png_uint_32 get_data (FILE *pnm_file, int depth);
55 png_uint_32 get_value (FILE *pnm_file, int depth);
332 /* row_bytes is the width x number of channels x (bit-depth / 8) */
472 * taking as much bits as defined by bit-depth and
473 * using the bit-depth to fill up a byte (0Ah -> AAh)
476 png_uint_32 get_data (FILE *pnm_file, int depth) argument
485 for (i = 0; i < depth; i++)
495 for (i = 1; i < (8 / depth); i++)
496 ret_value = ret_value || (ret_value >> depth);
498 old_value = (old_value << depth)
509 get_value(FILE *pnm_file, int depth) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/mac/carbon/
H A Dbitmap.h64 // a 8 bit depth mask
98 wxBitmap(const char bits[], int width, int height, int depth = 1);
107 wxBitmap(const void* data, wxBitmapType type, int width, int height, int depth = 1);
109 // If depth is omitted, will create a bitmap compatible with the display
110 wxBitmap(int width, int height, int depth = -1);
113 wxBitmap(const wxImage& image, int depth = -1);
125 virtual bool Create(int width, int height, int depth = -1);
126 virtual bool Create(const void* data, wxBitmapType type, int width, int height, int depth = 1);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dnamei.h24 unsigned depth; member in struct:nameidata
86 nd->saved_names[nd->depth] = path;
91 return nd->saved_names[nd->depth];

Completed in 233 milliseconds

1234567891011>>