Searched refs:desc (Results 126 - 150 of 1799) sorted by relevance

1234567891011>>

/freebsd-12-stable/contrib/pjdfstest/tests/truncate/
H A D04.t5 desc="truncate returns ENOENT if the named file does not exist"
H A D13.t5 desc="truncate returns EINVAL if the length argument was less than 0"
/freebsd-12-stable/contrib/pjdfstest/tests/unlink/
H A D02.t5 desc="unlink returns ENAMETOOLONG if a component of a pathname exceeded {NAME_MAX} characters"
H A D03.t5 desc="unlink returns ENAMETOOLONG if an entire path name exceeded {PATH_MAX} characters"
H A D04.t5 desc="unlink returns ENOENT if the named file does not exist"
/freebsd-12-stable/contrib/binutils/gas/config/
H A Dobj-ecoff.h67 #define OBJ_PROCESS_STAB(seg, what, string, type, other, desc) \
68 ecoff_stab ((seg), (what), (string), (type), (other), (desc))
/freebsd-12-stable/contrib/binutils/opcodes/
H A Dcgen.sh22 # Generate CGEN opcode files: arch-desc.[ch], arch-opc.[ch],
85 rm -f tmp-desc.h tmp-desc.h1
86 rm -f tmp-desc.c tmp-desc.c1
103 -H tmp-desc.h1 \
104 -C tmp-desc.c1 \
113 sed -e "s/@ARCH@/${ARCH}/g" -e "s/@arch@/${arch}/g" < tmp-desc.h1 > tmp-desc.h
114 ${rootdir}/move-if-change tmp-desc
[all...]
/freebsd-12-stable/sys/dev/sound/pcm/
H A Dfeeder.c48 struct pcm_feederdesc *desc; member in struct:feedertab_entry
66 KASSERT(fc->desc == NULL, ("first feeder not root: %s", fc->name));
77 fte->desc = NULL;
133 KASSERT(fc->desc != NULL, ("feeder '%s' has no descriptor", fc->name));
137 while ((feedercnt < MAXFEEDERS) && (fc->desc[i].type > 0)) {
138 /* printf("adding feeder %s, %x -> %x\n", fc->name, fc->desc[i].in, fc->desc[i].out); */
141 printf("can't allocate memory for feeder '%s', %x -> %x\n", fc->name, fc->desc[i].in, fc->desc[i].out);
146 fte->desc
187 feeder_create(struct feeder_class *fc, struct pcm_feederdesc *desc) argument
224 feeder_getclass(struct pcm_feederdesc *desc) argument
238 chn_addfeeder(struct pcm_channel *c, struct feeder_class *fc, struct pcm_feederdesc *desc) argument
[all...]
/freebsd-12-stable/tests/sys/kern/pipe/
H A Dpipe_fstat_bug_test.c52 int desc[2], ipc_coord[2]; local
60 error = pipe(desc);
71 close(new_pid == 0 ? desc[0] : desc[1]);
91 if ((_size = write(desc[1], &buffer, s)) != s) \
128 EV_SET(&ke, desc[0], EVFILT_READ, EV_ADD, 0, 0, NULL);
142 fstat(desc[0], &status);
143 error = read(desc[0], &buffer2, sizeof(buffer2));
/freebsd-12-stable/lib/libnetbsd/
H A Dstrsuftoll.c110 strsuftollx(const char *desc, const char *val,
180 num *= strsuftollx(desc, expr + 1, min, max, ebuf, ebuflen);
186 "%s: %s", desc, strerror(ERANGE));
192 "%s `%s': illegal number", desc, val);
198 desc, (long long)num, (long long)min);
205 desc, (long long)num, (long long)max);
214 strsuftoll(const char *desc, const char *val, argument
220 result = strsuftollx(desc, val, min, max, errbuf, sizeof(errbuf));
/freebsd-12-stable/sys/dev/qat/
H A Dqat_hw17.c325 qat_hw17_crypto_setup_cipher_ctrl(struct qat_crypto_desc *desc, argument
332 desc->qcd_cipher_blk_sz = HW_AES_BLK_SZ;
333 desc->qcd_cipher_offset = cd_blk_offset;
335 cipher_cd_ctrl->cipher_state_sz = desc->qcd_cipher_blk_sz >> 3;
345 qat_hw17_crypto_setup_cipher_cdesc(const struct qat_crypto_desc *desc, argument
350 qat_crypto_load_cipher_session(desc, qs);
357 qat_hw17_crypto_setup_auth_ctrl(struct qat_crypto_desc *desc, argument
365 (void)qat_crypto_load_auth_session(desc, qs, &hash_def);
384 desc->qcd_auth_sz = auth_cd_ctrl->final_sz;
385 desc
396 qat_hw17_crypto_setup_auth_cdesc(const struct qat_crypto_desc *desc, const struct qat_session *qs, const uint8_t *key, union hw_auth_algo_blk *auth) argument
451 qat_hw17_init_comn_req_hdr(struct qat_crypto_desc *desc, struct fw_la_bulk_req *req) argument
467 qat_hw17_crypto_setup_desc(struct qat_crypto *qcy, struct qat_session *qs, struct qat_crypto_desc *desc) argument
525 qat_hw17_crypto_req_setkey(const struct qat_crypto_desc *desc, const struct qat_session *qs, struct qat_sym_cookie *qsc, struct fw_la_bulk_req *bulk_req, const struct cryptodesc *enc, const struct cryptodesc *mac) argument
563 qat_hw17_crypto_setup_req_params(struct qat_crypto_bank *qcb __unused, struct qat_session *qs, const struct qat_crypto_desc *desc, struct qat_sym_cookie *qsc, struct cryptodesc *enc, struct cryptodesc *mac) argument
[all...]
/freebsd-12-stable/contrib/gcc/
H A Dloop-doloop.c156 doloop_valid_p (struct loop *loop, struct niter_desc *desc) argument
164 if (!desc->simple_p
165 || desc->assumptions
166 || desc->infinite)
290 doloop_modify (struct loop *loop, struct niter_desc *desc, argument
300 basic_block loop_end = desc->out_edge->src;
308 if (desc->const_iter)
309 fprintf (dump_file, HOST_WIDEST_INT_PRINT_DEC, desc->niter);
348 if (desc->niter_max
370 if (desc
489 struct niter_desc *desc; local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DPluginLoader.h32 cl::desc("Load the specified plugin"));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DBasicTargetTransformInfo.cpp29 cl::desc("Threshold for partial unrolling"),
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-modextract/
H A Dllvm-modextract.cpp25 BinaryExtract("b", cl::desc("Whether to perform binary extraction"));
28 cl::desc("Output filename"),
32 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
35 cl::desc("Index of module to extract"),
/freebsd-12-stable/contrib/gdb/gdb/
H A Dframe-unwind.c89 const struct frame_unwind *desc; local
90 desc = table->sniffer[i] (next_frame);
91 if (desc != NULL)
92 return desc;
H A Dsrec.h23 void load_srec (struct serial *desc, const char *file, bfd_vma load_offset,
/freebsd-12-stable/lib/libc/locale/
H A Dwctrans.c49 towctrans_l(wint_t wc, wctrans_t desc, locale_t locale) argument
51 switch (desc) {
67 towctrans(wint_t wc, wctrans_t desc) argument
69 return towctrans_l(wc, desc, __get_locale());
/freebsd-12-stable/lib/libpmc/pmu-events/
H A Dpmu-events.h15 const char *desc; member in struct:pmu_event
/freebsd-12-stable/libexec/rc/rc.d/
H A Dapm14 desc="Advanced power management"
H A Dapmd14 desc="Advanced power management daemon"
H A Dddb14 desc="DDB kernel debugger"
H A Dgeli237 desc="GELI disk encryption"
H A Dhastd14 desc="Highly Available Storage daemon"
H A Dhostid_save13 desc="Save unique host ID to disk"

Completed in 172 milliseconds

1234567891011>>