Searched refs:extra (Results 1 - 25 of 204) sorted by relevance

123456789

/freebsd-10.0-release/contrib/dialog/samples/
H A Dcalendar37 RESULT=`$DIALOG --extra-button --extra-label "Hold" --help-button --title "CALENDAR" "$@" --calendar "Please choose a date..." 0 0 7 7 1981 2>&1 1>&3`
H A Dcalendar3-stdout6 RESULT=`$DIALOG --extra-button --extra-label "Hold" --help-button --stdout --title "CALENDAR" "$@" --calendar "Please choose a date..." 0 0 7 7 1981`
H A Dmenubox73 # example with --extra-button
9 $DIALOG --clear --item-help --extra-button --extra-label "Choice" \
H A Dyesno-both10 --extra-label "Previous" --extra-button \
H A Dyesno-extra2 # $Id: yesno-extra,v 1.5 2010/01/13 10:40:39 tom Exp $
10 --extra-label "Previous" --extra-button "$@" \
H A Dinputbox-both9 --extra-button \
H A Dinputbox-extra2 # $Id: inputbox-extra,v 1.6 2010/01/13 10:20:03 tom Exp $
9 --extra-button "$@" \
H A Dpause-both8 --extra-button "$@" \
H A Dpause-extra2 # $Id: pause-extra,v 1.1 2011/01/18 09:49:07 tom Exp $
7 --extra-button "$@" \
H A Deditbox33 # example with extra- and help-buttons
13 --extra-button \
H A Dtextbox-both16 --extra-button "$@" \
H A Dtextbox315 --extra-button "$@" \
/freebsd-10.0-release/contrib/libarchive/libarchive/test/
H A Dtest_read_filter_uudecode.c80 int extra; local
84 /* Remove '\n' from extra data to make a very long line. */
97 for (extra = 0; extra <= 64; extra = extra==0?1:extra*2) {
100 size = extra * 1024;
101 /* Add extra text size of which is from 1K bytes to
111 *p++ = '\n';/* the last of extra tex
[all...]
/freebsd-10.0-release/usr.bin/calendar/
H A Devents.c42 char *extra)
65 e->extra = NULL;
66 if (extra != NULL && extra[0] != '\0')
67 e->extra = strdup(extra);
118 e->extra != NULL ? " (" : "",
119 e->extra != NULL ? e->extra : "",
120 e->extra !
41 event_add(int year, int month, int day, char *date, int var, char *txt, char *extra) argument
[all...]
/freebsd-10.0-release/contrib/xz/src/liblzma/lzma/
H A Dfastpos.h96 #define fastpos_shift(extra, n) \
97 ((extra) + (n) * (FASTPOS_BITS - 1))
99 #define fastpos_limit(extra, n) \
100 (UINT32_C(1) << (FASTPOS_BITS + fastpos_shift(extra, n)))
102 #define fastpos_result(pos, extra, n) \
103 lzma_fastpos[(pos) >> fastpos_shift(extra, n)] \
104 + 2 * fastpos_shift(extra, n)
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dvis.c130 #define MAKEEXTRALIST(flag, extra, orig_str) \
137 extra = malloc((size_t)((o - orig) + MAXEXTRAS)); \
138 if (!extra) break; \
139 for (o = orig, e = extra; (*e++ = *o++) != '\0';) \
153 do_hvis(char *dst, int c, int flag, int nextc, const char *extra) argument
160 dst = do_svis(dst, c, flag, nextc, extra);
171 * extra: Pointer to the list of extra characters to be
175 do_svis(char *dst, int c, int flag, int nextc, const char *extra) argument
178 isextra = strchr(extra,
253 rk_svis(char *dst, int c, int flag, int nextc, const char *extra) argument
291 rk_strsvis(char *dst, const char *csrc, int flag, const char *extra) argument
320 rk_strsvisx(char *dst, const char *csrc, size_t len, int flag, const char *extra) argument
360 char *extra = NULL; local
393 char *extra = NULL; local
410 char *extra = NULL; local
[all...]
/freebsd-10.0-release/lib/libkse/thread/
H A Dthr_spinlock.c52 struct spinlock_extra *extra; /* overlays fname in spinlock_t */ member in struct:nv_spinlock
64 static struct spinlock_extra extra[MAX_SPINLOCKS]; variable in typeref:struct:spinlock_extra
78 sl_extra = ((nv_spinlock_t *)lck)->extra;
103 sl_extra = ((nv_spinlock_t *)lck)->extra;
128 lck->fname = (char *)&extra[spinlock_count];
129 extra[spinlock_count].owner = lck;
145 _thr_mutex_reinit(&extra[i].lock);
150 if (_pthread_mutex_init(&extra[i].lock, &static_mattr))
151 PANIC("Cannot initialize spinlock extra");
/freebsd-10.0-release/contrib/wpa/src/eap_common/
H A Deap_peap_common.c23 u8 extra[2]; local
43 extra[0] = 0;
44 extra[1] = 0;
48 addr[4] = extra;
60 extra[0] = buf_len & 0xff;
62 addr[3] = extra;
/freebsd-10.0-release/contrib/jemalloc/src/
H A Dbitmap.c66 size_t extra; local
73 * correspond to the first logical bit in the group, so extra bits
78 extra = (BITMAP_GROUP_NBITS - (binfo->nbits & BITMAP_GROUP_NBITS_MASK))
80 if (extra != 0)
81 bitmap[binfo->levels[1].group_offset - 1] >>= extra; local
85 extra = (BITMAP_GROUP_NBITS - (group_count &
87 if (extra != 0)
88 bitmap[binfo->levels[i+1].group_offset - 1] >>= extra; local
/freebsd-10.0-release/lib/libthr/thread/
H A Dthr_spinlock.c52 static struct spinlock_extra extra[MAX_SPINLOCKS]; variable in typeref:struct:spinlock_extra
100 lck->fname = (char *)&extra[spinlock_count];
101 _thr_umutex_init(&extra[spinlock_count].lock);
102 extra[spinlock_count].owner = lck;
126 _thr_umutex_init(&extra[i].lock);
/freebsd-10.0-release/contrib/jemalloc/include/jemalloc/internal/
H A Dhuge.h23 size_t extra);
24 void *huge_ralloc(void *ptr, size_t oldsize, size_t size, size_t extra,
/freebsd-10.0-release/contrib/nvi/ex/
H A Dex_join.c40 int echar = 0, extra, first; local
105 extra = 0;
113 extra = 1;
149 sp->cno = (tbp - bp) - (1 + extra);
152 sp->cno = (tbp - bp) - len - (1 + extra);
/freebsd-10.0-release/lib/libz/
H A Dinftrees.c56 const unsigned short FAR *extra; /* extra bits table to use */ local
57 int end; /* use base and extra for symbol > end */
63 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
70 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */
183 base = extra = work; /* dummy value--not used */
189 extra = lext;
190 extra -= 257;
195 extra = dext;
224 here.op = (unsigned char)(extra[wor
[all...]
/freebsd-10.0-release/tools/regression/lib/libc/gen/
H A Dtest-fnmatch.c261 int opt, flags, result, extra, errors; local
280 extra = 0;
292 extra++;
303 extra++;
313 extra++;
323 extra++;
334 extra++;
345 extra++;
354 extra++;
362 extra
[all...]
/freebsd-10.0-release/usr.sbin/ppp/
H A Dproto.c56 proto_Prepend(struct mbuf *bp, u_short proto, unsigned comp, int extra) argument
64 bp = m_prepend(bp, cp + 1, 1, extra);
66 bp = m_prepend(bp, cp, 2, extra);

Completed in 240 milliseconds

123456789