Searched refs:ptr (Results 76 - 100 of 1967) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/sn/pci/pcibr/
H A Dpcibr_reg.c28 union br_ptr __iomem *ptr = (union br_ptr __iomem *)pcibus_info->pbi_buscommon.bs_base; local
33 __sn_clrq_relaxed(&ptr->tio.cp_control, bits);
36 __sn_clrq_relaxed(&ptr->pic.p_wid_control, bits);
41 ptr);
48 union br_ptr __iomem *ptr = (union br_ptr __iomem *)pcibus_info->pbi_buscommon.bs_base; local
53 __sn_setq_relaxed(&ptr->tio.cp_control, bits);
56 __sn_setq_relaxed(&ptr->pic.p_wid_control, bits);
61 ptr);
71 union br_ptr __iomem *ptr = (union br_ptr __iomem *)pcibus_info->pbi_buscommon.bs_base; local
77 ret = __sn_readq_relaxed(&ptr
101 union br_ptr __iomem *ptr = (union br_ptr __iomem *)pcibus_info->pbi_buscommon.bs_base; local
126 union br_ptr __iomem *ptr = (union br_ptr __iomem *)pcibus_info->pbi_buscommon.bs_base; local
146 union br_ptr __iomem *ptr = (union br_ptr __iomem *)pcibus_info->pbi_buscommon.bs_base; local
170 union br_ptr __iomem *ptr = (union br_ptr __iomem *)pcibus_info->pbi_buscommon.bs_base; local
199 union br_ptr __iomem *ptr = (union br_ptr __iomem *)pcibus_info->pbi_buscommon.bs_base; local
222 union br_ptr __iomem *ptr = (union br_ptr __iomem *)pcibus_info->pbi_buscommon.bs_base; local
247 union br_ptr __iomem *ptr = (union br_ptr __iomem *)pcibus_info->pbi_buscommon.bs_base; local
267 union br_ptr __iomem *ptr = (union br_ptr __iomem *)pcibus_info->pbi_buscommon.bs_base; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dprio_tree.h58 #define __INIT_PRIO_TREE_ROOT(ptr, _raw) \
60 (ptr)->prio_tree_node = NULL; \
61 (ptr)->index_bits = 1; \
62 (ptr)->raw = (_raw); \
65 #define INIT_PRIO_TREE_ROOT(ptr) __INIT_PRIO_TREE_ROOT(ptr, 0)
66 #define INIT_RAW_PRIO_TREE_ROOT(ptr) __INIT_PRIO_TREE_ROOT(ptr, 1)
68 #define INIT_PRIO_TREE_NODE(ptr) \
70 (ptr)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-v850/
H A Dsystem.h22 * switch_to(n) should switch tasks to task ptr, first checking that
23 * ptr isn't the current task, in which case it does nothing.
77 #define xchg(ptr, with) \
78 ((__typeof__ (*(ptr)))__xchg ((unsigned long)(with), (ptr), sizeof (*(ptr))))
81 __volatile__ void *ptr, int size)
89 tmp = *(unsigned char *)ptr;
90 *(unsigned char *)ptr = with;
93 tmp = *(unsigned short *)ptr;
80 __xchg(unsigned long with, __volatile__ void *ptr, int size) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/arm/lib/
H A Dmemcpy.S16 .macro ldr1w ptr reg abort
17 ldr \reg, [\ptr], #4
20 .macro ldr4w ptr reg1 reg2 reg3 reg4 abort
21 ldmia \ptr!, {\reg1, \reg2, \reg3, \reg4}
24 .macro ldr8w ptr reg1 reg2 reg3 reg4 reg5 reg6 reg7 reg8 abort
25 ldmia \ptr!, {\reg1, \reg2, \reg3, \reg4, \reg5, \reg6, \reg7, \reg8}
28 .macro ldr1b ptr reg cond=al abort
29 ldr\cond\()b \reg, [\ptr], #1
32 .macro str1w ptr reg abort
33 str \reg, [\ptr], #
[all...]
H A Dcopy_to_user.S36 .macro ldr1w ptr reg abort
37 ldr \reg, [\ptr], #4
40 .macro ldr4w ptr reg1 reg2 reg3 reg4 abort
41 ldmia \ptr!, {\reg1, \reg2, \reg3, \reg4}
44 .macro ldr8w ptr reg1 reg2 reg3 reg4 reg5 reg6 reg7 reg8 abort
45 ldmia \ptr!, {\reg1, \reg2, \reg3, \reg4, \reg5, \reg6, \reg7, \reg8}
48 .macro ldr1b ptr reg cond=al abort
49 ldr\cond\()b \reg, [\ptr], #1
52 .macro str1w ptr reg abort
53 100: strt \reg, [\ptr], #
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/avahi-0.6.25/avahi-sharp/
H A DUtility.cs36 private static extern int strlen (IntPtr ptr); argument
44 public static string PtrToString (IntPtr ptr) argument
46 if (ptr == IntPtr.Zero)
49 int len = strlen (ptr);
51 Marshal.Copy (ptr, bytes, 0, len);
55 public static string PtrToStringFree (IntPtr ptr) argument
57 if (ptr == IntPtr.Zero)
60 string ret = PtrToString (ptr);
61 Free (ptr);
85 public static void Free (IntPtr ptr) argument
100 PtrToAddress(IntPtr ptr) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68k/
H A Dsystem.h12 * switch_to(n) should switch tasks to task ptr, first checking that
13 * ptr isn't the current task, in which case it does nothing. This
86 #define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
92 static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size) argument
100 tmp = *(u8 *)ptr;
101 *(u8 *)ptr = x;
105 tmp = *(u16 *)ptr;
122 __xchg(unsigned long x, volatile void * ptr, int size) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh64/
H A Duaccess.h75 #define put_user(x,ptr) __put_user_check((x),(ptr),sizeof(*(ptr)))
76 #define get_user(x,ptr) __get_user_check((x),(ptr),sizeof(*(ptr)))
83 #define __put_user(x,ptr) __put_user_nocheck((x),(ptr),sizeof(*(ptr)))
84 #define __get_user(x,ptr) __get_user_nochec
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-ia64/
H A Duaccess.h83 #define put_user(x, ptr) __put_user_check((__typeof__(*(ptr))) (x), (ptr), sizeof(*(ptr)), get_fs())
84 #define get_user(x, ptr) __get_user_check((x), (ptr), sizeof(*(ptr)), get_fs())
91 #define __put_user(x, ptr) __put_user_nocheck((__typeof__(*(ptr))) (x), (ptr), sizeo
372 char * ptr; local
390 char * ptr; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/pptp/
H A Ddirutil.c19 char *ptr = strrchr(stripslash(dup), '/'); local
20 if (ptr == NULL) return dup;
21 ptr = strdup(ptr+1);
23 return ptr;
31 char *ptr = strrchr(stripslash(dup), '/'); local
32 if (ptr == NULL) { free(dup); return strdup("."); }
33 if (ptr == dup && dup[0] == '/') ptr++;
34 *ptr
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/ia32/
H A Dipc32.c16 compat_uptr_t ptr, u32 fifth)
26 return sys_semtimedop(first, compat_ptr(ptr), second, NULL);
28 return compat_sys_semtimedop(first, compat_ptr(ptr), second,
33 return compat_sys_semctl(first, second, third, compat_ptr(ptr));
36 return compat_sys_msgsnd(first, second, third, compat_ptr(ptr));
39 version, compat_ptr(ptr));
43 return compat_sys_msgctl(first, second, compat_ptr(ptr));
47 compat_ptr(ptr));
50 return sys_shmdt(compat_ptr(ptr));
54 return compat_sys_shmctl(first, second, compat_ptr(ptr));
15 sys32_ipc(u32 call, int first, int second, int third, compat_uptr_t ptr, u32 fifth) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dmachine_kexec.c48 unsigned long *ptr; local
65 for (ptr = &image->head; (entry = *ptr) && !(entry &IND_DONE);
66 ptr = (entry & IND_INDIRECTION) ?
67 phys_to_virt(entry & PAGE_MASK) : ptr + 1) {
68 if (*ptr & IND_SOURCE || *ptr & IND_INDIRECTION ||
69 *ptr & IND_DESTINATION)
70 *ptr = phys_to_virt(*ptr);
[all...]
H A Dgdb-stub.c169 static int hexToInt(char **ptr, int *intValue);
170 static int hexToLong(char **ptr, long *longValue);
453 static int hexToInt(char **ptr, int *intValue) argument
460 while (**ptr) {
461 hexValue = hex(**ptr);
468 (*ptr)++;
474 static int hexToLong(char **ptr, long *longValue) argument
481 while (**ptr) {
482 hexValue = hex(**ptr);
489 (*ptr)
711 char *ptr; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-um/
H A Duaccess.h42 #define __get_user(x, ptr) \
44 const __typeof__(*(ptr)) __user *__private_ptr = (ptr); \
56 #define get_user(x, ptr) \
58 const __typeof__((*(ptr))) __user *private_ptr = (ptr); \
60 __get_user(x, private_ptr) : ((x) = (__typeof__(*ptr))0, -EFAULT)); \
63 #define __put_user(x, ptr) \
65 __typeof__(*(ptr)) __user *__private_ptr = ptr; \
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Dutil.c42 id3_byte_t const *ptr; local
47 for (ptr = data; ptr < end - 1; ++ptr) {
48 if (ptr[0] == 0xff && (ptr[1] == 0x00 || (ptr[1] & 0xe0) == 0xe0))
53 ptr = end;
56 *--end = *--ptr;
58 for (count = bytes; count; *--end = *--ptr) {
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Dutil.c42 id3_byte_t const *ptr; local
47 for (ptr = data; ptr < end - 1; ++ptr) {
48 if (ptr[0] == 0xff && (ptr[1] == 0x00 || (ptr[1] & 0xe0) == 0xe0))
53 ptr = end;
56 *--end = *--ptr;
58 for (count = bytes; count; *--end = *--ptr) {
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh/
H A Duaccess.h131 #define put_user(x,ptr) __put_user_check((x),(ptr),sizeof(*(ptr)))
132 #define get_user(x,ptr) __get_user_check((x),(ptr),sizeof(*(ptr)))
139 #define __put_user(x,ptr) \
140 __put_user_nocheck((__typeof__(*(ptr)))(x),(ptr),sizeof(*(ptr)))
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Duaccess.h104 #define get_user(x, ptr) \
105 __get_user_check((x), (ptr), sizeof(*(ptr)))
106 #define put_user(x, ptr) \
107 __put_user_check((__typeof__(*(ptr)))(x), (ptr), sizeof(*(ptr)))
109 #define __get_user(x, ptr) \
110 __get_user_nocheck((x), (ptr), sizeof(*(ptr)))
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Ddirentry.c58 static char *sprintPwd(direntry_t *entry, char *ptr) argument
61 *ptr++ = getDrive(entry->Dir);
62 *ptr++ = ':';
63 *ptr++ = '/';
65 ptr = sprintPwd(getDirentry(entry->Dir), ptr);
66 if(ptr[-1] != '/')
67 *ptr++ = '/';
68 ptr += wchar_to_native(entry->name, ptr, MAX_VNAMELE
90 wchar_t *ptr; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m32r/
H A Duaccess.h156 * @ptr: Source address, in user space.
164 * @ptr must have pointer-to-simple-variable type, and the result of
165 * dereferencing @ptr must be assignable to @x without a cast.
170 #define get_user(x,ptr) \
171 __get_user_check((x),(ptr),sizeof(*(ptr)))
176 * @ptr: Destination address, in user space.
184 * @ptr must have pointer-to-simple-variable type, and @x must be assignable
185 * to the result of dereferencing @ptr.
189 #define put_user(x,ptr) \
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/kernel/
H A Dppc-stub.c231 hexToInt(char **ptr, int *intValue) argument
240 while (**ptr) {
241 hexValue = hex(**ptr);
248 (*ptr)++;
467 char *ptr; local
503 ptr = remcomOutBuffer;
505 *ptr++ = 'T';
506 *ptr++ = hexchars[sigval >> 4];
507 *ptr++ = hexchars[sigval & 0xf];
508 *ptr
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dtdbutil.c32 char *ptr = NULL; local
36 vasprintf(&ptr, format, ap);
39 if (!ptr || !*ptr)
42 DEBUG(level, ("tdb(%s): %s", tdb->name ? tdb->name : "unnamed", ptr));
83 SAFE_FREE(ptr);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-cris/arch-v10/
H A Dsystem.h41 #define xchg(ptr,x) ((__typeof__(*(ptr)))__xchg((unsigned long)(x),(ptr),sizeof(*(ptr))))
42 #define tas(ptr) (xchg((ptr),1))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68knommu/
H A Duaccess.h53 #define put_user(x, ptr) \
56 typeof(*(ptr)) __pu_val = (x); \
57 switch (sizeof (*(ptr))) { \
59 __put_user_asm(__pu_err, __pu_val, ptr, b); \
62 __put_user_asm(__pu_err, __pu_val, ptr, w); \
65 __put_user_asm(__pu_err, __pu_val, ptr, l); \
68 memcpy(ptr, &__pu_val, sizeof (*(ptr))); \
76 #define __put_user(x, ptr) put_user(x, ptr)
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-alpha/
H A Dprocessor.h71 extern inline void prefetch(const void *ptr) argument
73 __builtin_prefetch(ptr, 0, 3);
76 extern inline void prefetchw(const void *ptr) argument
78 __builtin_prefetch(ptr, 1, 3);
82 extern inline void spin_lock_prefetch(const void *ptr) argument
84 __builtin_prefetch(ptr, 1, 3);

Completed in 429 milliseconds

1234567891011>>