Searched refs:max_depth (Results 1 - 25 of 25) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/utilities/
H A Dutcache.c55 * max_depth - Maximum depth of the cache (in objects)
66 u16 max_depth, struct acpi_memory_list ** return_cache)
89 cache->max_depth = max_depth;
195 if (cache->current_depth >= cache->max_depth) {
64 acpi_os_create_cache(char *cache_name, u16 object_size, u16 max_depth, struct acpi_memory_list ** return_cache) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/firewire/
H A Dfw-topology.h51 u8 max_depth : 4; /* Maximum depth to any leaf node */ member in struct:fw_node
H A Dfw-topology.c144 if (node->ports[i].node->max_depth > depths[0]) {
146 depths[0] = node->ports[i].node->max_depth;
147 } else if (node->ports[i].node->max_depth > depths[1])
148 depths[1] = node->ports[i].node->max_depth;
151 node->max_depth = depths[0] + 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/namespace/
H A Dnswalk.c126 * max_depth - Depth to which search is to reach
153 u32 max_depth,
272 if ((level < max_depth) && (status != AE_CTRL_DEPTH)) {
151 acpi_ns_walk_namespace(acpi_object_type type, acpi_handle start_node, u32 max_depth, u32 flags, acpi_walk_callback user_function, void *context, void **return_value) argument
H A Dnsdump.c604 * max_depth - Maximum depth of dump. Use ACPI_UINT32_MAX
620 u32 max_depth,
631 (void)acpi_ns_walk_namespace(type, start_handle, max_depth,
672 * max_depth - Maximum depth of dump. Use INT_MAX
681 void acpi_ns_dump_tables(acpi_handle search_base, u32 max_depth) argument
705 acpi_ns_dump_objects(ACPI_TYPE_ANY, ACPI_DISPLAY_OBJECTS, max_depth,
618 acpi_ns_dump_objects(acpi_object_type type, u8 display_type, u32 max_depth, acpi_owner_id owner_id, acpi_handle start_handle) argument
H A Dnsxfeval.c360 * max_depth - Depth to which search is to reach
386 u32 max_depth,
396 if ((type > ACPI_TYPE_LOCAL_MAX) || (!max_depth) || (!user_function)) {
411 status = acpi_ns_walk_namespace(type, start_object, max_depth,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/befs/
H A Dbefs_fs_types.h215 fs32 max_depth; member in struct:__anon7338
225 u32 max_depth; member in struct:__anon7339
H A Dbtree.c153 sup->max_depth = fs32_to_cpu(sb, od_sup->max_depth);
H A Ddebug.c233 befs_debug(sb, " max_depth %08x", fs32_to_cpu(sb, super->max_depth));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/acpi/
H A Dacnamesp.h98 u32 max_depth,
154 void acpi_ns_dump_tables(acpi_handle search_base, u32 max_depth);
172 u32 max_depth,
H A Dacpiosxf.h163 u16 max_depth, acpi_cache_t ** return_cache);
H A Dacpixf.h128 u32 max_depth,
H A Daclocal.h947 u16 max_depth; member in struct:acpi_memory_list
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/sched/
H A Dsch_sfq.c114 sfq_index max_depth; /* Maximal depth */ member in struct:sfq_sched_data
196 if (n == p && q->max_depth == q->qs[x].qlen + 1)
197 q->max_depth--;
212 if (q->max_depth < d)
213 q->max_depth = d;
221 sfq_index d = q->max_depth;
441 q->max_depth = 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dbitstream.h798 * if the vlc code is invalid and max_depth=1 than no bits will be removed
799 * if the vlc code is invalid and max_depth>1 than the number of bits removed
802 #define GET_VLC(code, name, gb, table, bits, max_depth)\
810 if(max_depth > 1 && n < 0){\
819 if(max_depth > 2 && n < 0){\
833 #define GET_RL_VLC(level, run, name, gb, table, bits, max_depth, need_update)\
841 if(max_depth > 1 && n < 0){\
862 * @param max_depth is the number of times bits bits must be read to completely
867 int bits, int max_depth)
874 GET_VLC(code, re, s, table, bits, max_depth)
866 get_vlc2(GetBitContext *s, VLC_TYPE (*table)[2], int bits, int max_depth) argument
900 get_vlc_trace(GetBitContext *s, VLC_TYPE (*table)[2], int bits, int max_depth, char *file, const char *func, int line) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dblkdev.h355 int max_depth; /* what we will send to device */ member in struct:blk_queue_tag
773 #define blk_queue_tag_queue(q) ((q)->queue_tags->busy < (q)->queue_tags->max_depth)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/include/FLAC/
H A Dmetadata.h222 * \param max_depth The maximum color depth in bits-per-pixel desired.
236 FLAC_API FLAC__bool FLAC__metadata_get_picture(const char *filename, FLAC__StreamMetadata **picture, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC++/
H A Dmetadata.cpp1252 FLACPP_API bool get_picture(const char *filename, Picture *&picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors)
1260 if(::FLAC__metadata_get_picture(filename, &object, type, mime_type, description, max_width, max_height, max_depth, max_colors)) {
1268 FLACPP_API bool get_picture(const char *filename, Picture &picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors)
1274 if(::FLAC__metadata_get_picture(filename, &object, type, mime_type, description, max_width, max_height, max_depth, max_colors)) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/message/fusion/
H A Dmptscsih.c2339 int max_depth; local
2347 max_depth = 1;
2350 max_depth = MPT_SCSI_CMD_PER_DEV_HIGH;
2352 max_depth = MPT_SCSI_CMD_PER_DEV_LOW;
2354 max_depth = MPT_SCSI_CMD_PER_DEV_HIGH;
2356 if (qdepth > max_depth)
2357 qdepth = max_depth;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/include/FLAC++/
H A Dmetadata.h956 FLACPP_API bool get_picture(const char *filename, Picture *&picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors); ///< See FLAC__metadata_get_picture().
957 FLACPP_API bool get_picture(const char *filename, Picture &picture, ::FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors); ///< See FLAC__metadata_get_picture().
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/block/
H A Dll_rw_blk.c918 tags->max_depth = depth;
1012 int max_depth, nr_ulongs; local
1019 * adjust max_depth. *NOTE* as requests with tag value
1024 bqt->max_depth = new_depth;
1040 max_depth = bqt->real_max_depth;
1045 memcpy(bqt->tag_index, tag_index, max_depth * sizeof(struct request *));
1046 nr_ulongs = ALIGN(max_depth, BITS_PER_LONG) / BITS_PER_LONG;
1136 tag = find_first_zero_bit(bqt->tag_map, bqt->max_depth);
1137 if (tag >= bqt->max_depth)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dxpath.c13998 int max_depth, min_depth; local
14009 max_depth = xmlPatternMaxDepth(comp);
14010 if (max_depth == -1)
14012 if (max_depth == -2)
14013 max_depth = 10000;
14021 printf("stream eval: depth %d from root %d\n", max_depth, from_root);
14049 if (max_depth == 0) {
14136 if ((cur->children == NULL) || (depth >= max_depth)) {
14150 if ((cur->children != NULL) && (depth < max_depth)) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dxpath.c14062 int max_depth, min_depth; local
14073 max_depth = xmlPatternMaxDepth(comp);
14074 if (max_depth == -1)
14076 if (max_depth == -2)
14077 max_depth = 10000;
14085 printf("stream eval: depth %d from root %d\n", max_depth, from_root);
14113 if (max_depth == 0) {
14200 if ((cur->children == NULL) || (depth >= max_depth)) {
14214 if ((cur->children != NULL) && (depth < max_depth)) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dxpath.c13998 int max_depth, min_depth; local
14009 max_depth = xmlPatternMaxDepth(comp);
14010 if (max_depth == -1)
14012 if (max_depth == -2)
14013 max_depth = 10000;
14021 printf("stream eval: depth %d from root %d\n", max_depth, from_root);
14049 if (max_depth == 0) {
14136 if ((cur->children == NULL) || (depth >= max_depth)) {
14150 if ((cur->children != NULL) && (depth < max_depth)) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/libFLAC/
H A Dmetadata_iterators.c285 FLAC_API FLAC__bool FLAC__metadata_get_picture(const char *filename, FLAC__StreamMetadata **picture, FLAC__StreamMetadata_Picture_Type type, const char *mime_type, const FLAC__byte *description, unsigned max_width, unsigned max_height, unsigned max_depth, unsigned max_colors) argument
314 obj->data.picture.depth <= max_depth &&

Completed in 254 milliseconds