HomeSort by: relevance | last modified time | path
    Searched defs:output (Results 1 - 25 of 69) sorted by relevancy

1 2 3

  /src/usr.bin/make/unit-tests/
meta-output.mk 5 .if make(output)
11 all: output.-B output.-j1
15 # This output should be accurately reflected in the .meta file.
18 output: .NOPATH target
19 @{ echo Test ${tag} output; \
25 output.-B output.-j1:
26 @{ rm -f ${TMPDIR}/output; mkdir -p ${TMPDIR}/obj; \
27 MAKEFLAGS= ${.MAKE} -r -C ${TMPDIR} ${.TARGET:E} tag=${.TARGET:E} -f ${_mf} output; \
    [all...]
  /src/sys/dev/microcode/ral/
build.c 31 output(const char *name, const uint8_t *ucode, int size) function in typeref:typename:void
54 output("ral-rt2561", rt2561, sizeof rt2561);
55 output("ral-rt2561s", rt2561s, sizeof rt2561s);
56 output("ral-rt2661", rt2661, sizeof rt2661);
57 output("ral-rt2860", rt2860, sizeof rt2860);
  /src/sys/dev/microcode/rum/
build.c 31 output(const char *name, const uint8_t *ucode, int size) function in typeref:typename:void
54 output("rum-rt2573", rt2573, sizeof rt2573);
  /src/sys/dev/microcode/run/
build.c 31 output(const char *name, const uint8_t *ucode, int size) function in typeref:typename:void
55 output("run-rt2870", rt2870, sizeof rt2870);
56 output("run-rt3071", rt3071, sizeof rt3071);
  /src/sys/dev/microcode/zyd/
build.c 30 output(const char *name, const uint8_t *ucode, int size) function in typeref:typename:void
53 output("zyd-zd1211", zd1211_firmware, sizeof zd1211_firmware);
54 output("zyd-zd1211b", zd1211b_firmware, sizeof zd1211b_firmware);
  /src/sys/external/isc/libsodium/dist/test/default/
stream2.c 14 static unsigned char output[4194304]; variable in typeref:typename:unsigned char[4194304]
22 crypto_stream_salsa20(output, sizeof output, noncesuffix, secondkey);
23 crypto_hash_sha256(h, output, sizeof output);
28 assert(sizeof output > 4000);
30 crypto_stream_salsa20_xor_ic(output, output, 4000, noncesuffix, 0U,
33 assert(output[i] == 0);
35 crypto_stream_salsa20_xor_ic(output, output, 4000, noncesuffix, 1U
    [all...]
stream.c 16 static unsigned char output[4194304]; variable in typeref:typename:unsigned char[4194304]
26 randombytes_buf(output, sizeof output);
27 crypto_stream(output, sizeof output, nonce, firstkey);
28 crypto_hash_sha256(h, output, sizeof output);
32 assert(sizeof output > 4000);
34 crypto_stream_xsalsa20_xor_ic(output, output, 4000, nonce, 0U, firstkey)
    [all...]
core3.c 24 unsigned char *output; local in function:main
38 output = (unsigned char *) sodium_malloc(output_len);
49 crypto_core_salsa20(output + pos, in, secondkey, c);
56 crypto_hash_sha256(h, output, output_len);
67 crypto_core_salsa2012(output + pos, in, secondkey, c);
74 crypto_hash_sha256(h, output, output_len);
84 crypto_core_salsa208(output + pos, in, secondkey, c);
91 crypto_hash_sha256(h, output, output_len);
103 sodium_free(output);
  /src/sys/dev/wscons/
wsemulvar.h 48 void (*output)(void *, const u_char *, u_int, int); member in struct:wsemul_ops
  /src/sys/external/bsd/drm2/dist/drm/amd/display/amdgpu_dm/
amdgpu_dm_hdcp.h 51 struct mod_hdcp_output output; member in struct:hdcp_workqueue
amdgpu_dm_hdcp.c 79 struct mod_hdcp_output output = hdcp_work->output; local in function:process_output
81 if (output.callback_stop)
84 if (output.callback_needed)
86 msecs_to_jiffies(output.callback_delay));
88 if (output.watchdog_timer_stop)
91 if (output.watchdog_timer_needed)
93 msecs_to_jiffies(output.watchdog_timer_delay));
117 mod_hdcp_remove_display(&hdcp_w->hdcp, aconnector->base.index, &hdcp_w->output);
139 mod_hdcp_add_display(&hdcp_w->hdcp, link, display, &hdcp_w->output);
    [all...]
  /src/tests/lib/libc/gen/
t_basedirname.c 20 const char *output; member in struct:__anon83c010060108
23 * The following are taken from the "Sample Input and Output Strings
54 const char *output; member in struct:__anon83c010060208
57 * The following are taken from the "Sample Input and Output Strings
104 for (i = 0; test_basename_table[i].output != NULL; i++) {
132 if (strcmp(test_basename_table[i].output, base) != 0) {
134 "Input \"%s\", output \"%s\", expected \"%s\"\n",
137 base, test_basename_table[i].output);
138 atf_tc_fail("Output does not match expected value.");
155 for (i = 0; test_dirname_table[i].output != NULL; i++)
    [all...]
  /src/lib/libc/net/
base64.c 88 The encoding process represents 24-bit groups of input bits as output
96 output string.
132 output will be an integral multiple of 4 characters
135 here, the final unit of encoded output will be two
138 here, the final unit of encoded output will be three
146 u_char output[4]; local in function:b64_ntop
158 output[0] = (uint32_t)input[0] >> 2;
159 output[1] = ((uint32_t)(input[0] & 0x03) << 4) +
161 output[2] = ((uint32_t)(input[1] & 0x0f) << 2) +
163 output[3] = input[2] & 0x3f
    [all...]
  /src/tests/lib/libc/hash/
t_sha2.c 176 char output[SHA256_DIGEST_STRING_LENGTH]; local in function:ATF_TC_BODY
185 digest2string(digest + j, output, SHA256_DIGEST_LENGTH);
186 ATF_CHECK_STREQ(test256[i].hash, output);
203 char output[SHA384_DIGEST_STRING_LENGTH]; local in function:ATF_TC_BODY
212 digest2string(digest + j, output, SHA384_DIGEST_LENGTH);
213 ATF_CHECK_STREQ(test384[i].hash, output);
230 char output[SHA512_DIGEST_STRING_LENGTH]; local in function:ATF_TC_BODY
239 digest2string(digest + j, output, SHA512_DIGEST_LENGTH);
240 ATF_CHECK_STREQ(test512[i].hash, output);
  /src/usr.bin/nbperf/
nbperf.h 37 FILE *output; member in struct:nbperf
  /src/usr.bin/paste/
paste.c 100 int cnt, output; local in function:parallel
116 output = 0;
129 /* Output enough separators to catch up */
136 } while (++output <= cnt);
143 if (!output)
147 while (++output <= cnt) {
  /src/bin/sh/
output.h 1 /* $NetBSD: output.h,v 1.28 2021/11/10 15:58:38 kre Exp $ */
34 * @(#)output.h 8.2 (Berkeley) 5/4/95
41 struct output { struct
49 struct output *chain;
54 #define OUTPUT_ERR 0x01 /* error occurred on output */
57 extern struct output output;
58 extern struct output errout;
59 extern struct output memout;
60 extern struct output *out1
    [all...]
  /src/common/lib/libx86emu/
x86emu_i8254.c 227 uint8_t output; local in function:x86emu_i8254_read_counter
250 output = val & 0xff;
253 output = val >> 8;
256 output = 0; /* Undefined value. */
262 return output;
383 /* NMI register, used to control timer 2 and the output of it */
  /src/sys/dev/
midi_if.h 55 * output -
66 void (*)(void *), /* output callback */
69 int (*output)(void *, int); /* output a byte */ member in struct:midi_hw_if
78 * output(). Two examples are midisyn (which interprets MIDI messages in
86 * messages, respectively, through these methods, and use the original output
  /src/sys/external/bsd/drm2/dist/drm/amd/display/modules/hdcp/
amdgpu_hdcp.c 131 struct mod_hdcp_output *output)
141 callback_in_ms(0, output);
142 set_state_id(hdcp, output, D2_A0_DETERMINE_RX_HDCP_CAPABLE);
144 callback_in_ms(0, output);
145 set_state_id(hdcp, output, D1_A0_DETERMINE_RX_HDCP_CAPABLE);
147 callback_in_ms(0, output);
148 set_state_id(hdcp, output, HDCP_CP_NOT_DESIRED);
152 callback_in_ms(0, output);
153 set_state_id(hdcp, output, H2_A0_KNOWN_HDCP2_CAPABLE_RX);
155 callback_in_ms(0, output);
283 struct mod_hdcp_output output; local in function:mod_hdcp_setup
299 struct mod_hdcp_output output; local in function:mod_hdcp_teardown
    [all...]
  /src/sys/opencrypto/
deflate.c 86 u_int8_t *output; local in function:deflate_global
105 * for the size of the output buffer in the case of
146 /* we need more output space, allocate size */
162 output = malloc(result, M_CRYPTO_DATA, M_NOWAIT);
163 if (output == NULL)
165 *out = output;
170 memcpy(output, buf[j].out, tocopy);
171 output += tocopy;
203 * over all buffers and appended to the output along with
205 * has been compressed and output
232 u_int8_t *output; local in function:gzip_global
    [all...]
  /src/lib/libtelnet/
encrypt.h 82 void (*output)(unsigned char *, int); member in struct:__anon0da87be00208
  /src/sys/external/bsd/drm2/dist/drm/virtio/
virtgpu_plane.c 139 struct virtio_gpu_output *output = NULL; local in function:virtio_gpu_primary_plane_update
144 output = drm_crtc_to_virtio_gpu_output(plane->state->crtc);
146 output = drm_crtc_to_virtio_gpu_output(old_state->crtc);
147 if (WARN_ON(!output))
150 if (!plane->state->fb || !output->enabled) {
152 virtio_gpu_cmd_set_scanout(vgdev, output->index, 0,
181 virtio_gpu_cmd_set_scanout(vgdev, output->index,
240 struct virtio_gpu_output *output = NULL; local in function:virtio_gpu_cursor_plane_update
246 output = drm_crtc_to_virtio_gpu_output(plane->state->crtc);
248 output = drm_crtc_to_virtio_gpu_output(old_state->crtc)
    [all...]
  /src/usr.sbin/ypserv/mkalias/
mkalias.c 155 char *output = NULL; local in function:main
208 output = argv[optind++];
216 if (output != NULL) {
217 if (strlen(output) + strlen(YPDB_SUFFIX) >
219 warnx("file name `%s' too long", output);
221 "%s%s", output, YPDB_SUFFIX);
223 slash = strrchr(output, '/');
227 *output = 0; /* elminate */
229 /* note: output is now directory where map goes ! */
231 if (strlen(output) + strlen(template) + strlen(YPDB_SUFFIX)
    [all...]
  /src/sbin/restore/
interactive.c 315 char output[BUFSIZ * 2]; local in function:getcmd
373 snprintf(output, sizeof(output), "%s/%s", curdir, rawname);
374 canon(output, name, size);
411 copynext(char *input, char *output)
418 bp = output;

Completed in 20 milliseconds

1 2 3