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

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/curl-7.21.7/lib/
H A Dstrtok.c32 Curl_strtok_r(char *ptr, const char *sep, char **end) argument
36 ptr = *end;
46 /* set the end pointer to the first byte after the start */
47 *end = start + 1;
51 while(**end && !strchr(sep, **end))
52 ++*end;
54 if(**end) {
55 /* the end is not a null byte */
56 **end
[all...]
H A Dstrtoofft.c60 char *end; local
68 end = (char *)nptr;
69 while(ISSPACE(end[0])) {
70 end++;
74 if(end[0] == '-') {
76 end++;
78 else if(end[0] == '+') {
79 end++;
81 else if(end[0] == '\0') {
84 *endptr = end;
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/curl-7.21.7/lib/
H A Dstrtok.c32 Curl_strtok_r(char *ptr, const char *sep, char **end) argument
36 ptr = *end;
46 /* set the end pointer to the first byte after the start */
47 *end = start + 1;
51 while(**end && !strchr(sep, **end))
52 ++*end;
54 if(**end) {
55 /* the end is not a null byte */
56 **end
[all...]
H A Dstrtoofft.c60 char *end; local
68 end = (char *)nptr;
69 while(ISSPACE(end[0])) {
70 end++;
74 if(end[0] == '-') {
76 end++;
78 else if(end[0] == '+') {
79 end++;
81 else if(end[0] == '\0') {
84 *endptr = end;
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/curl-7.21.7/lib/
H A Dstrtok.c32 Curl_strtok_r(char *ptr, const char *sep, char **end) argument
36 ptr = *end;
46 /* set the end pointer to the first byte after the start */
47 *end = start + 1;
51 while(**end && !strchr(sep, **end))
52 ++*end;
54 if(**end) {
55 /* the end is not a null byte */
56 **end
[all...]
H A Dstrtoofft.c60 char *end; local
68 end = (char *)nptr;
69 while(ISSPACE(end[0])) {
70 end++;
74 if(end[0] == '-') {
76 end++;
78 else if(end[0] == '+') {
79 end++;
81 else if(end[0] == '\0') {
84 *endptr = end;
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/mn10300/boot/compressed/
H A Dmisc.h12 extern int end;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/mn10300/boot/compressed/
H A Dmisc.h12 extern int end;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/mn10300/mm/
H A Dcache-disabled.c16 asmlinkage long sys_cacheflush(unsigned long start, unsigned long end) argument
18 if (end < start)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/mn10300/mm/
H A Dcache-disabled.c16 asmlinkage long sys_cacheflush(unsigned long start, unsigned long end) argument
18 if (end < start)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/sparc/include/asm/
H A Dtlbflush_64.h9 extern void flush_tsb_kernel_range(unsigned long start, unsigned long end);
16 #define flush_tlb_range(vma,start,end) \
24 extern void __flush_tlb_kernel_range(unsigned long start, unsigned long end);
28 #define flush_tlb_kernel_range(start,end) \
29 do { flush_tsb_kernel_range(start,end); \
30 __flush_tlb_kernel_range(start,end); \
35 extern void smp_flush_tlb_kernel_range(unsigned long start, unsigned long end);
37 #define flush_tlb_kernel_range(start, end) \
38 do { flush_tsb_kernel_range(start,end); \
39 smp_flush_tlb_kernel_range(start, end); \
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/sparc/include/asm/
H A Dtlbflush_64.h9 extern void flush_tsb_kernel_range(unsigned long start, unsigned long end);
16 #define flush_tlb_range(vma,start,end) \
24 extern void __flush_tlb_kernel_range(unsigned long start, unsigned long end);
28 #define flush_tlb_kernel_range(start,end) \
29 do { flush_tsb_kernel_range(start,end); \
30 __flush_tlb_kernel_range(start,end); \
35 extern void smp_flush_tlb_kernel_range(unsigned long start, unsigned long end);
37 #define flush_tlb_kernel_range(start, end) \
38 do { flush_tsb_kernel_range(start,end); \
39 smp_flush_tlb_kernel_range(start, end); \
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/gdb/readline/examples/
H A Dmanexamp.c67 register int start, end; local
79 /* Find the end of the range to modify. */
80 end = start + (count * direction);
83 if (end > rl_end)
84 end = rl_end;
85 else if (end < 0)
86 end = -1;
88 if (start > end)
91 start = end;
92 end
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/readline/examples/
H A Dmanexamp.c67 register int start, end; local
79 /* Find the end of the range to modify. */
80 end = start + (count * direction);
83 if (end > rl_end)
84 end = rl_end;
85 else if (end < 0)
86 end = -1;
88 if (start > end)
91 start = end;
92 end
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/gdb/readline/examples/
H A Dmanexamp.c67 register int start, end; local
79 /* Find the end of the range to modify. */
80 end = start + (count * direction);
83 if (end > rl_end)
84 end = rl_end;
85 else if (end < 0)
86 end = -1;
88 if (start > end)
91 start = end;
92 end
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/arm/include/asm/
H A Doutercache.h37 static inline void outer_inv_range(unsigned long start, unsigned long end) argument
40 outer_cache.inv_range(start, end);
42 static inline void outer_clean_range(unsigned long start, unsigned long end) argument
45 outer_cache.clean_range(start, end);
47 static inline void outer_flush_range(unsigned long start, unsigned long end) argument
50 outer_cache.flush_range(start, end);
55 static inline void outer_inv_range(unsigned long start, unsigned long end) argument
57 static inline void outer_clean_range(unsigned long start, unsigned long end) argument
59 static inline void outer_flush_range(unsigned long start, unsigned long end) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/arm/include/asm/
H A Doutercache.h37 static inline void outer_inv_range(unsigned long start, unsigned long end) argument
40 outer_cache.inv_range(start, end);
42 static inline void outer_clean_range(unsigned long start, unsigned long end) argument
45 outer_cache.clean_range(start, end);
47 static inline void outer_flush_range(unsigned long start, unsigned long end) argument
50 outer_cache.flush_range(start, end);
55 static inline void outer_inv_range(unsigned long start, unsigned long end) argument
57 static inline void outer_clean_range(unsigned long start, unsigned long end) argument
59 static inline void outer_flush_range(unsigned long start, unsigned long end) argument
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/lzma/CPP/Common/
H A DStringToInt.cpp7 UInt64 ConvertStringToUInt64(const char *s, const char **end) argument
15 if (end != NULL)
16 *end = s;
25 UInt64 ConvertOctStringToUInt64(const char *s, const char **end) argument
33 if (end != NULL)
34 *end = s;
44 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end) argument
52 if (end != NULL)
53 *end = s;
63 Int64 ConvertStringToInt64(const char *s, const char **end) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/lzma/CPP/Common/
H A DStringToInt.cpp7 UInt64 ConvertStringToUInt64(const char *s, const char **end) argument
15 if (end != NULL)
16 *end = s;
25 UInt64 ConvertOctStringToUInt64(const char *s, const char **end) argument
33 if (end != NULL)
34 *end = s;
44 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end) argument
52 if (end != NULL)
53 *end = s;
63 Int64 ConvertStringToInt64(const char *s, const char **end) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/lzma/CPP/Common/
H A DStringToInt.cpp7 UInt64 ConvertStringToUInt64(const char *s, const char **end) argument
15 if (end != NULL)
16 *end = s;
25 UInt64 ConvertOctStringToUInt64(const char *s, const char **end) argument
33 if (end != NULL)
34 *end = s;
44 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end) argument
52 if (end != NULL)
53 *end = s;
63 Int64 ConvertStringToInt64(const char *s, const char **end) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/wget/lib/
H A Dstrnlen.c28 const char *end = memchr (string, '\0', maxlen); local
29 return end ? (size_t) (end - string) : maxlen;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/wget/lib/
H A Dstrnlen.c28 const char *end = memchr (string, '\0', maxlen); local
29 return end ? (size_t) (end - string) : maxlen;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/wget/lib/
H A Dstrnlen.c28 const char *end = memchr (string, '\0', maxlen); local
29 return end ? (size_t) (end - string) : maxlen;
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/linux/
H A Dcirc_buf.h22 /* Return count up to the end of the buffer. Carefully avoid
26 ({int end = (size) - (tail); \
27 int n = ((head) + end) & ((size)-1); \
28 n < end ? n : end;})
30 /* Return space available up to the end of the buffer. */
32 ({int end = (size) - 1 - (head); \
33 int n = (end + (tail)) & ((size)-1); \
34 n <= end ? n : end
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/linux/
H A Dcirc_buf.h22 /* Return count up to the end of the buffer. Carefully avoid
26 ({int end = (size) - (tail); \
27 int n = ((head) + end) & ((size)-1); \
28 n < end ? n : end;})
30 /* Return space available up to the end of the buffer. */
32 ({int end = (size) - 1 - (head); \
33 int n = (end + (tail)) & ((size)-1); \
34 n <= end ? n : end
[all...]

Completed in 135 milliseconds

1234567891011>>