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

1234567891011>>

/freebsd-current/contrib/dialog/samples/
H A Dcalendar3-stdout6 returntext=`$DIALOG --extra-button --extra-label "Hold" --help-button --stdout --title "CALENDAR" "$@" --calendar "Please choose a date..." 0 0 7 7 1981`
H A Dcalendar37 returntext=`$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 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.6 2020/11/26 00:05:52 tom Exp $
10 --extra-label "Previous" --extra-button "$@" \
H A Dinputbox-both9 --extra-button \
H A Dinputbox-extra2 # $Id: inputbox-extra,v 1.7 2020/11/26 00:03:58 tom Exp $
9 --extra-button "$@" \
H A Dpause-extra2 # $Id: pause-extra,v 1.2 2020/11/26 00:05:11 tom Exp $
7 --extra-button "$@" \
H A Dpause-both8 --extra-button "$@" \
H A Deditbox33 # example with extra- and help-buttons
13 --extra-button \
/freebsd-current/contrib/bearssl/tools/
H A Dvector.c28 * Prepare a vector buffer for adding 'extra' elements.
33 * extra number of elements to add
44 size_t esize, size_t *ptr, size_t *len, size_t extra)
49 if (*len - *ptr >= extra) {
53 if (nlen - *ptr < extra) {
54 nlen = extra + *ptr;
43 vector_expand(void *buf, size_t esize, size_t *ptr, size_t *len, size_t extra) argument
/freebsd-current/contrib/libarchive/libarchive/test/
H A Dtest_read_filter_uudecode.c79 int extra; local
83 /* Remove '\n' from extra data to make a very long line. */
96 for (extra = 0; extra <= 64; extra = extra==0?1:extra*2) {
99 size = extra * 1024;
100 /* Add extra text size of which is from 1K bytes to
110 *p++ = '\n';/* the last of extra tex
[all...]
/freebsd-current/contrib/bc/scripts/
H A Dsqrt_random.bc70 # If we need extra digits, we need to multiply by an even power of 10.
73 extra = (irand(8) + 1) * 2
77 extra = 0
88 num >>= extra
92 num <<= extra
100 # If we need extra digits.
/freebsd-current/crypto/openssl/test/helpers/
H A Dhandshake_srp.c43 const SSL_TEST_EXTRA_CONF *extra,
48 if (extra->server.srp_user != NULL) {
50 server_ctx_data->srp_user = OPENSSL_strdup(extra->server.srp_user);
51 server_ctx_data->srp_password = OPENSSL_strdup(extra->server.srp_password);
61 if (extra->server2.srp_user != NULL) {
65 server2_ctx_data->srp_user = OPENSSL_strdup(extra->server2.srp_user);
66 server2_ctx_data->srp_password = OPENSSL_strdup(extra->server2.srp_password);
76 if (extra->client.srp_user != NULL) {
78 extra->client.srp_user)))
81 client_ctx_data->srp_password = OPENSSL_strdup(extra
41 configure_handshake_ctx_for_srp(SSL_CTX *server_ctx, SSL_CTX *server2_ctx, SSL_CTX *client_ctx, const SSL_TEST_EXTRA_CONF *extra, CTX_DATA *server_ctx_data, CTX_DATA *server2_ctx_data, CTX_DATA *client_ctx_data) argument
[all...]
/freebsd-current/contrib/xz/src/liblzma/lzma/
H A Dfastpos.h98 #define fastpos_shift(extra, n) \
99 ((extra) + (n) * (FASTPOS_BITS - 1))
101 #define fastpos_limit(extra, n) \
102 (UINT32_C(1) << (FASTPOS_BITS + fastpos_shift(extra, n)))
104 #define fastpos_result(dist, extra, n) \
105 (uint32_t)(lzma_fastpos[(dist) >> fastpos_shift(extra, n)]) \
106 + 2 * fastpos_shift(extra, n)
/freebsd-current/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-current/contrib/jemalloc/src/
H A Dbitmap.c46 size_t extra; local
63 * to the first logical bit in the group, so extra bits are the most
67 extra = (BITMAP_GROUP_NBITS - (binfo->nbits & BITMAP_GROUP_NBITS_MASK))
69 if (extra != 0) {
70 bitmap[binfo->levels[1].group_offset - 1] >>= extra; local
75 extra = (BITMAP_GROUP_NBITS - (group_count &
77 if (extra != 0) {
78 bitmap[binfo->levels[i+1].group_offset - 1] >>= extra; local
101 size_t extra; local
109 extra
112 bitmap[binfo->ngroups - 1] >>= extra; local
[all...]
/freebsd-current/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-current/contrib/bc/tests/
H A Dall.sh70 extra=1
71 check_bool_arg "$extra"
73 extra="$1"
75 check_bool_arg "$extra"
139 # Get the list of tests that require extra math.
149 # If it requires extra, then skip if we don't have it.
150 if [ "$extra" -eq 0 ]; then
176 sh "$testdir/scripts.sh" "$d" "$extra" "$run_stack_tests" "$generate_tests" \
180 sh "$testdir/scripts.sh" -n "$d" "$extra" "$run_stack_tests" "$generate_tests" \
218 sh "$testdir/other.sh" "$d" "$extra" "
[all...]
/freebsd-current/lib/libthr/thread/
H A Dthr_spinlock.c51 static struct spinlock_extra extra[MAX_SPINLOCKS]; variable in typeref:struct:spinlock_extra
93 lck->thr_extra = &extra[spinlock_count];
94 _thr_umutex_init(&extra[spinlock_count].lock);
95 extra[spinlock_count].owner = lck;
119 _thr_umutex_init(&extra[i].lock);
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/cmd/
H A Dsuid_write_to_file.c38 mode_t extra; local
48 extra = S_ISUID;
50 extra = S_ISGID;
52 extra = S_ISUID | S_ISGID;
54 extra = 0;
88 fd = creat(fpath, 0777 | extra);
/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Dhook.h93 void *extra, hook_alloc_t type, void *result, uintptr_t result_raw,
97 void *extra, hook_dalloc_t type, void *address, uintptr_t args_raw[3]);
100 void *extra, hook_expand_t type, void *address, size_t old_usize,
108 void *extra; member in struct:hooks_s
136 * we add an extra one in case the user decides to memcpy without
/freebsd-current/usr.bin/calendar/
H A Devents.c151 event_add(int year, int month, int day, int var, char *txt, char *extra) argument
171 e->extra = NULL;
172 if (extra != NULL && extra[0] != '\0')
173 e->extra = convert(extra);
227 e->extra != NULL ? " (" : "",
228 e->extra != NULL ? e->extra : "",
229 e->extra !
[all...]
/freebsd-current/stand/efi/libefi/
H A Dhandles.c35 uint64_t extra; member in struct:entry
82 efi_handle_lookup(EFI_HANDLE h, struct devsw **dev, int *unit, uint64_t *extra) argument
93 if (extra != NULL)
94 *extra = entry[idx].extra;
112 entry[idx].extra = guid;
/freebsd-current/crypto/openssl/test/
H A Dssl_test_ctx_test.c65 static int extraconf_eq(SSL_TEST_EXTRA_CONF *extra, argument
68 if (!TEST_true(clientconf_eq(&extra->client, &extra2->client))
69 || !TEST_true(serverconf_eq(&extra->server, &extra2->server))
70 || !TEST_true(serverconf_eq(&extra->server2, &extra2->server2)))
81 || !extraconf_eq(&ctx->extra, &ctx2->extra)
179 fixture->expected_ctx->extra.client.verify_callback =
181 fixture->expected_ctx->extra.client.servername = SSL_TEST_SERVERNAME_SERVER2;
182 fixture->expected_ctx->extra.client.npn_protocols =
184 if (!TEST_ptr(fixture->expected_ctx->extra
[all...]

Completed in 312 milliseconds

1234567891011>>