Searched refs:radix (Results 1 - 15 of 15) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dx-scheme.c259 is_integer_syntax (const char *str, int len, int radix) argument
266 where DIGIT is a hexadecimal digit whose value is below radix. */
288 if (c >= radix)
300 is_other_number_syntax (const char *str, int len, int radix, bool unconstrained) argument
312 (Dot and exponent are allowed only if radix is 10.)
346 if (c >= 'D' && radix == 10) /* exponent? */
352 if (c >= 'd' && radix == 10) /* exponent? */
358 if (c >= radix)
369 if (!seen_digits && !(*p == '.' && radix == 10))
393 if (c >= radix)
502 int radix = 10; local
[all...]
H A Dx-librep.c213 int radix = -1; local
241 radix = 0;
251 radix = 0;
263 if (radix != 0)
270 radix = 2;
273 radix = 8;
276 radix = 10;
279 radix = 16;
285 radix = 0;
297 radix
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/boot/common/
H A Dmisc-common.c53 static int _cvt(unsigned long val, char *buf, long radix, char *digits);
439 _cvt(unsigned long val, char *buf, long radix, char *digits) argument
450 *cp++ = digits[val % radix];
451 val /= radix;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/pvrusb2/
H A Dpvrusb2-debugifc.c110 int radix = 10; local
113 radix = 16;
117 radix = 8;
131 if (val >= radix) return -EINVAL;
132 result *= radix;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dprio_tree.c8 * Based on the radix priority search tree proposed by Edward M. McCreight
19 * A clever mix of heap and radix trees forms a radix priority search tree (PST)
31 * is designed for storing intervals with unique radix indices, i.e., each
54 unsigned long *radix, unsigned long *heap)
60 *radix = RADIX_INDEX(vma);
64 *radix = node->start;
178 * Insert a prio_tree_node @node into a radix priority search tree @root. The
260 * Remove a prio_tree_node @node from a radix priority search tree @root. The
52 get_index(const struct prio_tree_root *root, const struct prio_tree_node *node, unsigned long *radix, unsigned long *heap) argument
H A DMakefile6 rbtree.o radix-tree.o dump_stack.o \
H A Dradix-tree.c26 #include <linux/radix-tree.h>
210 * radix tree with height HEIGHT.
218 * Extend a radix tree so it can store key @index.
261 * radix_tree_insert - insert into a radix tree
262 * @root: radix tree root
266 * Insert an item into the radix tree at position @index.
330 * radix_tree_lookup_slot - lookup a slot in a radix tree
331 * @root: radix tree root
335 * radix tree @root. This is useful for update-if-exists operations.
380 * radix_tree_lookup - perform lookup operation on a radix tre
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/coreutils/
H A Dod_bloaty.c985 int radix; local
990 /* Determine the radix we'll use to interpret S. If there is a '.',
994 radix = 8;
997 radix = 10;
999 radix = 16;
1001 *offset = xstrtooff_sfx(s, radix, Bb);
1236 "address-radix\0" Required_argument "A"
1280 bb_error_msg_and_die("bad output address radix "
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/shared/
H A Dbcmstdlib.c98 __atox(char *buf, char * end, unsigned int num, unsigned int radix, int width, argument
109 *op++ = digits[num % radix];
111 num /= radix;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/mlx4/
H A Dmlx4.h40 #include <linux/radix-tree.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/mlx4/
H A Ddevice.h38 #include <linux/radix-tree.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dirq.c52 #include <linux/radix-tree.h>
549 /* radix tree not lockless safe ! we use a brlock-type mecanism
550 * for now, until we can use a lockless radix tree
753 /* Check if radix tree allocated yet */
817 /* Check if the radix tree exist yet. We test the value of
948 /* We need to create the radix trees late */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/pseries/
H A Dxics.c23 #include <linux/radix-tree.h>
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Dirq.h14 #include <linux/radix-tree.h>
116 #define IRQ_HOST_MAP_TREE 3 /* radix tree */
155 * this call as well. For a IRQ_HOST_MAP_TREE, the radix tree will be allocated
232 * This is a fast path, for use by irq controller code that uses radix tree
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dfs.h271 #include <linux/radix-tree.h>
428 struct radix_tree_root page_tree; /* radix tree of all pages */
482 * radix trees

Completed in 223 milliseconds