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

1234

/freebsd-11-stable/crypto/heimdal/lib/wind/
H A DUnicodeData.py42 ud = open(filename, 'r')
45 l = ud.readline()
56 ud.close()
H A Dgen-combining.py48 ud = UnicodeData.read(sys.argv[1]) variable
51 for k,v in ud.items():
H A Dgen-normalize.py50 ud = UnicodeData.read(sys.argv[1]) variable
59 for k,v in ud.items() if v[4]])
138 for k,v in ud.items()
/freebsd-11-stable/contrib/libucl/src/
H A Ducl_emitter_utils.c102 func->ucl_emitter_append_character ('"', 1, func->ud);
107 func->ucl_emitter_append_len (c, len, func->ud);
111 func->ucl_emitter_append_len ("\\n", 2, func->ud);
114 func->ucl_emitter_append_len ("\\r", 2, func->ud);
117 func->ucl_emitter_append_len ("\\b", 2, func->ud);
120 func->ucl_emitter_append_len ("\\t", 2, func->ud);
123 func->ucl_emitter_append_len ("\\f", 2, func->ud);
126 func->ucl_emitter_append_len ("\\\\", 2, func->ud);
129 func->ucl_emitter_append_len ("\\\"", 2, func->ud);
133 func->ucl_emitter_append_len ("\\uFFFD", 5, func->ud);
168 ucl_utstring_append_character(unsigned char c, size_t len, void *ud) argument
186 ucl_utstring_append_len(const unsigned char *str, size_t len, void *ud) argument
196 ucl_utstring_append_int(int64_t val, void *ud) argument
205 ucl_utstring_append_double(double val, void *ud) argument
228 ucl_file_append_character(unsigned char c, size_t len, void *ud) argument
240 ucl_file_append_len(const unsigned char *str, size_t len, void *ud) argument
250 ucl_file_append_int(int64_t val, void *ud) argument
260 ucl_file_append_double(double val, void *ud) argument
283 ucl_fd_append_character(unsigned char c, size_t len, void *ud) argument
315 ucl_fd_append_len(const unsigned char *str, size_t len, void *ud) argument
323 ucl_fd_append_int(int64_t val, void *ud) argument
333 ucl_fd_append_double(double val, void *ud) argument
[all...]
H A Ducl_emitter.c100 func->ucl_emitter_append_character (' ', tabs * 4, func->ud);
124 func->ucl_emitter_append_len (obj->key, obj->keylen, func->ud);
128 func->ucl_emitter_append_len (" = ", 3, func->ud);
131 func->ucl_emitter_append_character (' ', 1, func->ud);
139 func->ucl_emitter_append_len (obj->key, obj->keylen, func->ud);
142 func->ucl_emitter_append_len ("null", 4, func->ud);
145 func->ucl_emitter_append_len (": ", 2, func->ud);
152 func->ucl_emitter_append_len ("null", 4, func->ud);
156 func->ucl_emitter_append_character (':', 1, func->ud);
159 func->ucl_emitter_append_len (": ", 2, func->ud);
364 struct ucl_object_userdata *ud; local
511 struct ucl_object_userdata *ud; local
[all...]
H A Ducl_internal.h154 void* ud; member in struct:ucl_macro
238 * @param ud user data
242 const ucl_object_t *args, void* ud);
249 * @param ud user data
253 const ucl_object_t *args, void* ud);
260 * @param ud user data
264 const ucl_object_t *args, void* ud);
271 * @param ud user data
275 const ucl_object_t *args, void* ud);
282 * @param ud use
[all...]
/freebsd-11-stable/contrib/amd/amd/
H A Drpc_fwd.c230 struct t_unitdata ud; local
315 ud.addr.buf = (char *) fwdto;
317 ud.addr.maxlen = ud.addr.len = sizeof(struct sockaddr_in);
319 ud.addr.maxlen = ud.addr.len = 0;
320 ud.opt.buf = (char *) NULL;
321 ud.opt.maxlen = ud.opt.len = 0;
322 ud
364 struct t_unitdata ud; local
[all...]
/freebsd-11-stable/contrib/sendmail/src/
H A Darpadate.c22 ** ud -- unix style date string. if NULL, one is created.
56 arpadate(ud)
57 register char *ud;
75 /* SM_REQUIRE(ud == NULL || strlen(ud) >= 23); */
77 if (ud == NULL)
78 ud = ctime(&t);
86 p = &ud[0]; /* Mon */
93 p = &ud[8]; /* 16 */
101 p = &ud[
[all...]
/freebsd-11-stable/contrib/apr-util/include/
H A Dapr_hooks.h53 #define APR_HOOK_INT_DCL_UD void *ud = NULL
55 /** internal implementation detail to avoid the ud declaration when
62 * @param ud A void * user data field that should be filled in by
69 #define APR_HOOK_PROBE_ENTRY(ud,ns,name,args)
73 * @param ud A void * user data field that was filled in by the user-
81 #define APR_HOOK_PROBE_RETURN(ud,ns,name,rv,args)
85 * @param ud A void * user data field that was filled in by the user-
94 #define APR_HOOK_PROBE_INVOKE(ud,ns,name,src,args)
98 * @param ud A void * user data field that was filled in by the user-
108 #define APR_HOOK_PROBE_COMPLETE(ud,n
[all...]
/freebsd-11-stable/sys/netinet/libalias/
H A Dalias_cuseeme.c178 struct udphdr *ud = ip_next(pip); local
180 if (ntohs(ud->uh_ulen) - sizeof(struct udphdr) >= sizeof(struct cu_header)) {
184 cu = udp_next(ud);
189 ud->uh_dport, 0, IPPROTO_UDP, 1);
202 struct udphdr *ud; local
211 ud = ip_next(pip);
212 cu = udp_next(ud);
215 end = (char *)ud + ntohs(ud->uh_ulen);
H A Dalias.c348 struct udphdr *ud; local
355 ud = (struct udphdr *)ip_next(ip);
361 ud->uh_dport, ud->uh_sport,
387 accumulate += ud->uh_sport;
403 ud->uh_sport = original_port;
537 struct udphdr *ud; local
545 ud = (struct udphdr *)ip_next(ip);
551 ud->uh_dport, ud
738 struct udphdr *ud; local
832 struct udphdr *ud; local
1581 struct udphdr *ud; local
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_string_sprintf.c65 uintmax_t ud; local
69 ud = (d == INTMAX_MIN) ? (uintmax_t)(INTMAX_MAX) + 1 : (uintmax_t)(-d);
71 ud = d;
72 append_uint(as, ud, base);
/freebsd-11-stable/lib/libkiconv/
H A Dxlat16_iconv.c154 u_char src[3], dst[4], *srcp, *dstp, ud, ld; local
231 ud = (u_char)dst[0];
237 table[us] = (ud << 8) | ld;
246 table[us] = quirk_unix2vendor((ud << 8) | ld,
252 table[us] = ud;
253 if (lcase & KICONV_LOWER && ud != tolower(ud)) {
254 table[us] |= (u_char)tolower(ud) << 16;
257 if (lcase & KICONV_UPPER && ud != toupper(ud)) {
[all...]
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dldo.h27 typedef void (*Pfunc) (lua_State *L, void *ud);
43 LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);
H A Dlmem.c26 ** void * frealloc (void *ud, void *ptr, size_t osize, size_t nsize);
29 ** * frealloc(ud, NULL, x, s) creates a new block of size `s' (no
32 ** * frealloc(ud, p, x, 0) frees the block `p'
34 ** particularly, frealloc(ud, NULL, 0, 0) does nothing
84 newblock = (*g->frealloc)(g->ud, block, osize, nsize);
90 newblock = (*g->frealloc)(g->ud, block, osize, nsize); /* try again */
H A Dlstate.c181 static void f_luaopen (lua_State *L, void *ud) { argument
183 UNUSED(ud);
231 (*g->frealloc)(g->ud, fromstate(L), sizeof(LG), 0); /* free main block */
264 LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { argument
268 LG *l = cast(LG *, (*f)(ud, NULL, LUA_TTHREAD, sizeof(LG)));
279 g->ud = ud;
/freebsd-11-stable/contrib/lua/src/
H A Dlmem.c28 ** void * frealloc (void *ud, void *ptr, size_t osize, size_t nsize);
31 ** * frealloc(ud, NULL, x, s) creates a new block of size 's' (no
34 ** * frealloc(ud, p, x, 0) frees the block 'p'
36 ** particularly, frealloc(ud, NULL, 0, 0) does nothing
86 newblock = (*g->frealloc)(g->ud, block, osize, nsize);
91 newblock = (*g->frealloc)(g->ud, block, osize, nsize); /* try again */
H A Dldo.h37 typedef void (*Pfunc) (lua_State *L, void *ud);
55 LUAI_FUNC int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud);
H A Dlstate.c203 static void f_luaopen (lua_State *L, void *ud) { argument
205 UNUSED(ud);
251 (*g->frealloc)(g->ud, fromstate(L), sizeof(LG), 0); /* free main block */
295 LUA_API lua_State *lua_newstate (lua_Alloc f, void *ud) { argument
299 LG *l = cast(LG *, (*f)(ud, NULL, LUA_TTHREAD, sizeof(LG)));
309 g->ud = ud;
H A Dlauxlib.c318 LUALIB_API void *luaL_testudata (lua_State *L, int ud, const char *tname) { argument
319 void *p = lua_touserdata(L, ud);
321 if (lua_getmetatable(L, ud)) { /* does it have a metatable? */
333 LUALIB_API void *luaL_checkudata (lua_State *L, int ud, const char *tname) { argument
334 void *p = luaL_testudata(L, ud, tname);
335 if (p == NULL) typeerror(L, ud, tname);
462 void *ud; local
463 lua_Alloc allocf = lua_getallocf(L, &ud);
465 void *temp = allocf(ud, box->box, box->bsize, newsize);
642 static const char *getF (lua_State *L, void *ud, size_ argument
745 getS(lua_State *L, void *ud, size_t *size) argument
1008 l_alloc(void *ud, void *ptr, size_t osize, size_t nsize) argument
[all...]
/freebsd-11-stable/stand/ficl/
H A Dmath64.c318 DPUNS ud; local
324 ud.hi = 0;
325 ud.lo = pUD->hi >> UMOD_SHIFT;
326 qr = ficlLongDiv(ud, (FICL_UNS)base);
329 ud.lo = (qr.rem << UMOD_SHIFT) | (pUD->hi & UMOD_MASK);
330 qr = ficlLongDiv(ud, (FICL_UNS)base);
333 ud.lo = (qr.rem << UMOD_SHIFT) | (pUD->lo >> UMOD_SHIFT);
334 qr = ficlLongDiv(ud, (FICL_UNS)base);
337 ud.lo = (qr.rem << UMOD_SHIFT) | (pUD->lo & UMOD_MASK);
338 qr = ficlLongDiv(ud, (FICL_UN
[all...]
H A Dfileaccess.c172 static void ficlFilePosition(FICL_VM *pVM) /* ( fileid -- ud ior ) */
175 long ud = ftell(ff->f); local
176 stackPushINT(pVM->pStack, ud);
177 pushIor(pVM, ud != -1);
193 static void ficlFileSize(FICL_VM *pVM) /* ( fileid -- ud ior ) */
196 long ud = fileSize(ff->f); local
197 stackPushINT(pVM->pStack, ud);
198 pushIor(pVM, ud != -1);
359 static void ficlRepositionFile(FICL_VM *pVM) /* ( ud fileid -- ior ) */
362 size_t ud local
382 size_t ud = (size_t)stackPopINT(pVM->pStack); local
[all...]
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_stream.c431 struct svr4_si_oudata ud; local
434 if (ioc->len != sizeof(ud) && ioc->len != sizeof(ud) - sizeof(int)) {
436 sizeof(ud), ioc->len));
440 if ((error = copyin(ioc->buf, &ud, sizeof(ud))) != 0)
447 ud.tidusize = 16384;
448 ud.addrsize = sizeof(struct svr4_sockaddr_in);
450 ud.etsdusize = 1;
452 ud
569 struct svr4_si_udata ud; local
[all...]
/freebsd-11-stable/contrib/libucl/include/
H A Ducl.h227 void* ud; /**< Opaque user data */ member in union:ucl_object_s::__anon639
242 * @param ud user specified data pointer
244 typedef void (*ucl_userdata_dtor)(void *ud);
245 typedef const char* (*ucl_userdata_emitter)(void *ud);
881 * @param ud opaque user data
887 void* ud);
895 * @param ud opaque user data
902 void* ud);
928 * @param ud opaque user data for a handler
932 ucl_macro_handler handler, void* ud);
1249 void *ud; member in struct:ucl_emitter_functions
[all...]
H A Ducl++.h54 append_char (unsigned char c, size_t nchars, void *ud) argument
56 std::string *out = reinterpret_cast<std::string *>(ud);
63 append_len (unsigned const char *str, size_t len, void *ud) argument
65 std::string *out = reinterpret_cast<std::string *>(ud);
72 append_int (int64_t elt, void *ud) argument
74 std::string *out = reinterpret_cast<std::string *>(ud);
82 append_double (double elt, void *ud) argument
84 std::string *out = reinterpret_cast<std::string *>(ud);
107 unsigned char ** /*replace*/, size_t * /*replace_len*/, bool *need_free, void* ud)
111 auto vars = reinterpret_cast<std::set<std::string> *>(ud);
106 ucl_variable_getter(const unsigned char *data, size_t len, unsigned char ** , size_t * , bool *need_free, void* ud) argument
118 ucl_variable_replacer(const unsigned char *data, size_t len, unsigned char **replace, size_t *replace_len, bool *need_free, void* ud) argument
[all...]

Completed in 380 milliseconds

1234