Searched refs:uptr (Results 1 - 21 of 21) sorted by path

/macosx-10.10.1/BootCache-109/
H A Dkext.c580 static int BC_copyout_history_mounts(user_addr_t uptr);
581 static int BC_copyout_history_entries(user_addr_t uptr);
4810 BC_copyout_history_mounts(user_addr_t uptr) argument
4815 assert(uptr != 0);
4825 if ((error = copyout(&(hmd->hmd_mount), uptr,
4828 uptr += sizeof(struct BC_history_mount);
4841 BC_copyout_history_entries(user_addr_t uptr) argument
4846 assert(uptr != 0);
4868 if ((error = copyout(hec->hec_data, uptr,
4871 uptr
[all...]
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dconfig.c1452 unsigned *uptr; local
1503 uptr = (unsigned *)((char *)dst + tab->off);
1505 rc = lutil_atoux( uptr, val, 0 );
1558 unsigned *uptr; local
1603 uptr = (unsigned *)((char *)src + tab->off);
1606 ptr += snprintf( ptr, sizeof( buf ) - ( ptr - buf ), "%u", *uptr );
/macosx-10.10.1/apr-32/apr-util/apr-util/include/
H A Dapr_uri.h133 * @param uptr All of the parts of the uri
147 const apr_uri_t *uptr,
156 * @param uptr The apr_uri_t to fill out
160 apr_uri_t *uptr);
166 * @param uptr The apr_uri_t to fill out
171 apr_uri_t *uptr);
/macosx-10.10.1/apr-32/apr-util/apr-util/uri/
H A Dapr_uri.c91 const apr_uri_t *uptr,
101 if (uptr->user || uptr->password) {
103 (uptr->user && !(flags & APR_URI_UNP_OMITUSER))
104 ? uptr->user : "",
105 (uptr->password && !(flags & APR_URI_UNP_OMITPASSWORD))
107 (uptr->password && !(flags & APR_URI_UNP_OMITPASSWORD))
109 ? uptr->password : "XXXXXXXX")
111 ((uptr->user && !(flags & APR_URI_UNP_OMITUSER)) ||
112 (uptr
90 apr_uri_unparse(apr_pool_t *p, const apr_uri_t *uptr, unsigned flags) argument
[all...]
/macosx-10.10.1/cups-408/cups/cups/
H A Dpwg-media.c273 *uptr; /* Pointer into unit size */ local
359 uptr = usize;
360 (*format)(uptr, sizeof(usize) - (size_t)(uptr - usize), width);
361 uptr += strlen(uptr);
362 *uptr++ = 'x';
363 (*format)(uptr, sizeof(usize) - (size_t)(uptr - usize), length);
364 uptr
[all...]
/macosx-10.10.1/dtrace-147/test/tst/common/pointers/
H A Derr.InvalidAddress5.d44 uintptr_t uptr;
58 uptr = (uintptr_t) &array[0];
60 p = (int *) (uptr);
61 q = (int *) (uptr + 2);
62 r = (int *) (uptr + 3);
H A Dtst.IntegerArithmetic1.d42 uintptr_t uptr;
53 uptr = (uintptr_t) &array[0];
55 p = (int *) (uptr);
56 q = (int *) (uptr + 4);
57 r = (int *) (uptr + 8);
/macosx-10.10.1/emacs-93/emacs/lisp/calc/
H A Dcalc-units.el1320 (uptr (math-build-units-table))
1335 (while uptr
1336 (setq u (car uptr)
1344 (unless (eq uptr math-units-table)
1374 (setq uptr (cdr uptr)))
1376 (setq uptr math-unit-prefixes)
1377 (while uptr
1378 (setq u (car uptr))
1380 (if (equal (nth 1 u) (nth 1 (nth 1 uptr)))
[all...]
/macosx-10.10.1/libxml2-26/libxml2/
H A Duri.c2168 xmlChar *bptr, *uptr, *vptr; local
2237 uptr = (xmlChar *) ref->path;
2238 if (*uptr == '/')
2239 uptr++;
2241 val = xmlURIEscapeStr(uptr, BAD_CAST "/;&=+$,");
2251 uptr = NULL;
2285 uptr = (xmlChar *)ref->path;
2288 uptr = (xmlChar *)&ref->path[ix];
2300 len = xmlStrlen (uptr) + 1;
2304 if (uptr !
[all...]
/macosx-10.10.1/ncurses-44/ncurses/c++/
H A Dcursesf.h379 UserHook* uptr = reinterpret_cast<UserHook*>(::form_userptr (form)); local
380 assert (uptr != 0 && uptr->m_back==this && uptr->m_owner==form);
381 uptr->m_user = user;
385 UserHook* uptr = reinterpret_cast<UserHook*>(::form_userptr (form)); local
386 assert (uptr != 0 && uptr->m_back==this && uptr->m_owner==form);
387 return uptr
[all...]
H A Dcursesm.h240 UserHook* uptr = STATIC_CAST(UserHook*)(::menu_userptr (menu)); local
241 assert (uptr != 0 && uptr->m_back==this && uptr->m_owner==menu);
242 uptr->m_user = user;
246 UserHook* uptr = STATIC_CAST(UserHook*)(::menu_userptr (menu)); local
247 assert (uptr != 0 && uptr->m_back==this && uptr->m_owner==menu);
248 return uptr
[all...]
H A Dcursesp.h63 UserHook* uptr = reinterpret_cast<UserHook*>( local
65 return uptr;
73 UserHook* uptr = UserPointer(); local
74 if (uptr != 0 && uptr->m_back==this && uptr->m_owner==p) {
75 uptr->m_user = user;
82 UserHook* uptr = UserPointer(); local
84 if (uptr != 0 && uptr
[all...]
/macosx-10.10.1/ncurses-44/ncurses/panel/
H A Dllib-lpanel169 void *uptr)
H A Dllib-lpanelw169 void *uptr)
H A Dp_user.c42 set_panel_userptr(PANEL * pan, NCURSES_CONST void *uptr) argument
44 T((T_CALLED("set_panel_userptr(%p,%p)"), pan, uptr));
47 pan->user = uptr;
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/
H A Duri.c2249 xmlChar *bptr, *uptr, *vptr; local
2318 uptr = (xmlChar *) ref->path;
2319 if (*uptr == '/')
2320 uptr++;
2322 val = xmlURIEscapeStr(uptr, BAD_CAST "/;&=+$,");
2332 uptr = NULL;
2366 uptr = (xmlChar *)ref->path;
2369 uptr = (xmlChar *)&ref->path[ix];
2381 len = xmlStrlen (uptr) + 1;
2385 if (uptr !
[all...]
/macosx-10.10.1/tcsh-65/tcsh/
H A Dtc.who.c184 struct utmp *uptr; local
288 while ((uptr = getutent()) != NULL) {
289 memcpy(&utmp, uptr, sizeof (utmp));
/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dbsd_kern.c772 uint64_t * uptr; local
775 uptr = (uint64_t *)buffer;
782 *uptr++ = thaddr;
/macosx-10.10.1/zsh-61/zsh/Src/Zle/
H A Dcomplist.c692 * uptr is a pointer into it
704 char *ums, *uptr, *sptr, *wptr; local
712 uptr = unmetafy(ums, &umlen);
720 size_t cnt = eol ? MB_INVALID : mbrtowc(&cc, uptr, umleft, &mbs);
729 sptr = nicechar(*uptr);
748 uptr += cnt;
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dpattern.c1661 Upat uptr = (Upat)patout + starter; local
1664 uptr->l = (uptr->l & ~0xff) | P_ANY;
1667 uptr->l = (uptr->l & ~0xff) | P_STAR;
H A Dwatch.c458 WATCH_STRUCT_UTMP *uptr; local
465 uptr = wtab = (WATCH_STRUCT_UTMP *)zalloc(wtabmax * sizeof(WATCH_STRUCT_UTMP));
466 while (fread(uptr, sizeof(WATCH_STRUCT_UTMP), 1, in))
468 if (uptr->ut_type == USER_PROCESS)
470 if (uptr->ut_name[0])
473 uptr++;
475 uptr = (wtab = (WATCH_STRUCT_UTMP *)realloc((void *) wtab, (wtabmax *= 2) *
493 WATCH_STRUCT_UTMP *utab, *uptr, *wptr; local
513 uptr = utab = (WATCH_STRUCT_UTMP *) zalloc(utabmax * sizeof(WATCH_STRUCT_UTMP));
520 while (fread(uptr, sizeo
[all...]

Completed in 376 milliseconds