Searched refs:desc (Results 1 - 25 of 1113) sorted by relevance

1234567891011>>

/freebsd-10.0-release/contrib/gdb/gdb/
H A Dxmodem.h23 int xmodem_init_xfer (struct serial *desc);
24 void send_xmodem_packet (struct serial *desc, unsigned char *packet, int len,
26 void xmodem_finish_xfer (struct serial *desc);
/freebsd-10.0-release/sys/dev/usb/
H A Dusb_parse.c64 * descriptors. If the "desc" argument passed to this function is
69 * Else: Next descriptor after "desc"
78 uint8_t *desc; local
87 desc = (uint8_t *)_desc;
90 if (desc == NULL)
91 desc = start;
93 desc = desc + desc[0];
96 if ((desc < star
188 struct usb_descriptor *desc; local
223 struct usb_descriptor *desc; local
252 struct usb_descriptor *desc = NULL; local
277 struct usb_descriptor *desc; local
[all...]
/freebsd-10.0-release/contrib/gdb/gdb/config/arm/
H A Dtm-arm.h30 #define VARIABLES_INSIDE_BLOCK(desc, gcc_p) (!(gcc_p))
/freebsd-10.0-release/tools/regression/pipe/
H A Dpipe-fstatbug.c43 int desc[2]; local
48 error = pipe(desc);
56 write(desc[1], &buffer, 145);
58 write(desc[1], &buffer, 2048);
60 write(desc[1], &buffer, 4096);
62 write(desc[1], &buffer, 8191);
64 write(desc[1], &buffer, 8192);
69 fstat(desc[0], &status);
70 error = read(desc[0], &buffer2, 32768);
H A Dpipe-reverse.c41 int desc[2]; local
49 error = pipe(desc);
65 error = write(desc[0], &buffer, 4096);
67 error = write(desc[0], &buffer[total], 4096);
69 error = write(desc[0], &buffer[total], 4096);
71 error = write(desc[0], &buffer[total], 4096);
73 error = write(desc[0], &buffer[total], 4096);
75 error = write(desc[0], &buffer[total], 4096);
77 error = write(desc[0], &buffer[total], 4096);
79 error = write(desc[
[all...]
H A Dpipe-wraparound.c41 int desc[2]; local
49 error = pipe(desc);
65 error = write(desc[1], &buffer, 4096);
67 error = write(desc[1], &buffer[total], 4096);
69 error = write(desc[1], &buffer[total], 4000);
73 error = write(desc[1], &buffer[total], 3000);
75 error = write(desc[1], &buffer[total], 3000);
80 error = read(desc[0], &buffer2, 8192);
84 error = read(desc[0], &buffer2[total], 16384);
/freebsd-10.0-release/sys/ofed/drivers/infiniband/core/
H A Dpacker.c53 * @desc:Array of structure field descriptions
54 * @desc_len:Number of entries in @desc
59 * controlled by the array of fields in @desc.
61 void ib_pack(const struct ib_field *desc, argument
69 if (desc[i].size_bits <= 32) {
75 shift = 32 - desc[i].offset_bits - desc[i].size_bits;
76 if (desc[i].struct_size_bytes)
77 val = value_read(desc[i].struct_offset_bytes,
78 desc[
148 ib_unpack(const struct ib_field *desc, int desc_len, void *buf, void *structure) argument
[all...]
/freebsd-10.0-release/contrib/top/
H A DMake.desc.X1 # Makefile for .desc files
3 # This makefile is the prototype for "Make.desc", which is used by
4 # top's Configure script to build .desc files and the SYNOPSIS file.
10 # DO NOT EDIT "Make.desc"!!! Make changes to "Make.desc.X",
13 # The list of .desc files will be inserted after this next line:
16 .SUFFIXES: .desc
18 .c.desc:
24 grep SYNOPSIS: $(DESCS) | sed -e 's@^machine/m_@@' -e 's@.desc:.[^:]*: *@:@' >SYNOPSIS
/freebsd-10.0-release/sys/dev/puc/
H A Dpuc_pci.c82 puc_pci_match(device_t dev, const struct puc_cfg *desc) argument
92 while (desc->vendor != 0xffff) {
93 if (desc->vendor == vendor && desc->device == device) {
95 if (desc->subvendor == subvendor &&
96 desc->subdevice == subdevice)
97 return (desc);
99 if (desc->subvendor == 0xffff)
100 return (desc);
102 desc
112 const struct puc_cfg *desc; local
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Dgencodes.c54 rtx desc; local
81 desc = read_md_rtx (&line_no, &insn_code_number);
82 if (desc == NULL)
85 if (GET_CODE (desc) == DEFINE_INSN || GET_CODE (desc) == DEFINE_EXPAND)
86 gen_insn (desc, insn_code_number);
H A Dgenconditions.c211 rtx desc; local
223 desc = read_md_rtx (&pattern_lineno, &code);
224 if (desc == NULL)
229 switch (GET_CODE (desc))
236 add_c_test (XSTR (desc, 2), -1);
239 if (!strcmp (XSTR (desc, 0), "eh_return"))
246 add_c_test (XSTR (desc, 1), -1);
/freebsd-10.0-release/sbin/etherswitchcfg/
H A Difmedia.c428 struct ifmedia_description *desc; member in struct:ifmedia_type_to_subtype::__anon5785
432 struct ifmedia_description *desc; member in struct:ifmedia_type_to_subtype::__anon5786
436 struct ifmedia_description *desc; member in struct:ifmedia_type_to_subtype::__anon5787
540 struct ifmedia_description *desc; local
545 for (desc = ifm_type_descriptions, ttos = ifmedia_types_to_subtypes;
546 desc->ifmt_string != NULL; desc++, ttos++)
547 if (type == desc->ifmt_word)
549 if (desc->ifmt_string == NULL)
552 for (i = 0; ttos->subtypes[i].desc !
564 struct ifmedia_description *desc; local
587 struct ifmedia_description *desc; local
626 lookup_media_word(struct ifmedia_description *desc, const char *val) argument
638 struct ifmedia_description *desc; local
649 struct ifmedia_description *desc; local
664 struct ifmedia_description *desc; local
683 struct ifmedia_description *desc; local
701 struct ifmedia_description *desc; local
761 struct ifmedia_description *desc; local
[all...]
/freebsd-10.0-release/sbin/ifconfig/
H A Difmedia.c425 struct ifmedia_description *desc; member in struct:ifmedia_type_to_subtype::__anon5800
429 struct ifmedia_description *desc; member in struct:ifmedia_type_to_subtype::__anon5801
433 struct ifmedia_description *desc; member in struct:ifmedia_type_to_subtype::__anon5802
537 struct ifmedia_description *desc; local
542 for (desc = ifm_type_descriptions, ttos = ifmedia_types_to_subtypes;
543 desc->ifmt_string != NULL; desc++, ttos++)
544 if (type == desc->ifmt_word)
546 if (desc->ifmt_string == NULL)
549 for (i = 0; ttos->subtypes[i].desc !
561 struct ifmedia_description *desc; local
584 struct ifmedia_description *desc; local
623 lookup_media_word(struct ifmedia_description *desc, const char *val) argument
635 struct ifmedia_description *desc; local
646 struct ifmedia_description *desc; local
661 struct ifmedia_description *desc; local
680 struct ifmedia_description *desc; local
698 struct ifmedia_description *desc; local
758 struct ifmedia_description *desc; local
[all...]
/freebsd-10.0-release/sys/amd64/vmm/
H A Dvmm_stat.h48 const char *desc; /* description of statistic */ member in struct:vmm_stat_type
54 #define VMM_STAT_DEFINE(type, nelems, desc, scope) \
56 { -1, nelems, desc, scope } \
63 #define VMM_STAT(type, desc) \
64 VMM_STAT_DEFINE(type, 1, desc, VMM_STAT_SCOPE_ANY)
65 #define VMM_STAT_INTEL(type, desc) \
66 VMM_STAT_DEFINE(type, 1, desc, VMM_STAT_SCOPE_INTEL)
67 #define VMM_STAT_AMD(type, desc) \
68 VMM_STAT_DEFINE(type, 1, desc, VMM_STAT_SCOPE_AMD)
70 #define VMM_STAT_ARRAY(type, nelems, desc) \
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/CodeGen/
H A DCommandFlags.h26 MArch("march", cl::desc("Architecture to generate code for (see --version)"));
30 cl::desc("Target a specific cpu type (-mcpu=help for details)"),
37 cl::desc("Target specific attributes (-mattr=help for details)"),
42 cl::desc("Choose relocation model"),
57 cl::desc("Choose code model"),
73 cl::desc("When used with filetype=obj, "
78 cl::desc("Choose a file type (not all types are supported by all targets):"),
89 cl::desc("Do not use .loc entries"));
92 cl::desc("Do not use .cfi_* directives"));
95 cl::desc("Us
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/svn/
H A Dcl-conflicts.h45 * Return in @a desc a possibly localized human readable
52 const char **desc,
57 * Return in @a desc a possibly localized human readable
64 const char **desc,
H A Dconflict-callbacks.c129 show_diff(const svn_wc_conflict_description2_t *desc,
139 if (desc->merged_file)
153 if (desc->operation == svn_wc_operation_merge)
155 path1 = desc->my_abspath;
160 path1 = desc->their_abspath;
163 path2 = desc->merged_file;
170 path1 = desc->their_abspath;
172 path2 = desc->my_abspath;
200 show_conflicts(const svn_wc_conflict_description2_t *desc,
211 desc
128 show_diff(const svn_wc_conflict_description2_t *desc, const char *path_prefix, apr_pool_t *pool) argument
199 show_conflicts(const svn_wc_conflict_description2_t *desc, apr_pool_t *pool) argument
237 merge_prop_conflict(svn_stream_t *output, const svn_wc_conflict_description2_t *desc, const char *merged_abspath, apr_pool_t *pool) argument
294 show_prop_conflict(const svn_wc_conflict_description2_t *desc, const char *merged_abspath, apr_pool_t *pool) argument
362 edit_prop_conflict(const char **merged_file_path, const svn_wc_conflict_description2_t *desc, svn_cl__interactive_conflict_baton_t *b, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
396 launch_resolver(svn_boolean_t *performed_edit, const svn_wc_conflict_description2_t *desc, svn_cl__interactive_conflict_baton_t *b, apr_pool_t *pool) argument
749 handle_text_conflict(svn_wc_conflict_result_t *result, const svn_wc_conflict_description2_t *desc, svn_cl__interactive_conflict_baton_t *b, apr_pool_t *scratch_pool) argument
964 handle_prop_conflict(svn_wc_conflict_result_t *result, const svn_wc_conflict_description2_t *desc, svn_cl__interactive_conflict_baton_t *b, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1067 handle_tree_conflict(svn_wc_conflict_result_t *result, const svn_wc_conflict_description2_t *desc, svn_cl__interactive_conflict_baton_t *b, apr_pool_t *scratch_pool) argument
1140 handle_obstructed_add(svn_wc_conflict_result_t *result, const svn_wc_conflict_description2_t *desc, svn_cl__interactive_conflict_baton_t *b, apr_pool_t *scratch_pool) argument
1187 conflict_func_interactive(svn_wc_conflict_result_t **result, const svn_wc_conflict_description2_t *desc, void *baton, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1368 svn_cl__conflict_func_interactive(svn_wc_conflict_result_t **result, const svn_wc_conflict_description2_t *desc, void *baton, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
[all...]
/freebsd-10.0-release/tools/regression/pjdfstest/tests/mkdir/
H A D12.t4 desc="mkdir returns EFAULT if the path argument points outside the process's allocated address space"
/freebsd-10.0-release/tools/regression/pjdfstest/tests/mkfifo/
H A D12.t4 desc="mkfifo returns EFAULT if the path argument points outside the process's allocated address space"
/freebsd-10.0-release/tools/regression/pjdfstest/tests/mknod/
H A D10.t4 desc="mknod returns EFAULT if the path argument points outside the process's allocated address space"
/freebsd-10.0-release/tools/regression/pjdfstest/tests/open/
H A D21.t4 desc="open returns EFAULT if the path argument points outside the process's allocated address space"
/freebsd-10.0-release/tools/regression/pjdfstest/tests/rmdir/
H A D15.t4 desc="rmdir returns EFAULT if the path argument points outside the process's allocated address space"
/freebsd-10.0-release/tools/regression/pjdfstest/tests/truncate/
H A D14.t4 desc="truncate returns EFAULT if the path argument points outside the process's allocated address space"
/freebsd-10.0-release/tools/regression/pjdfstest/tests/unlink/
H A D13.t4 desc="unlink returns EFAULT if the path argument points outside the process's allocated address space"
/freebsd-10.0-release/sys/net/
H A Dif_media.c495 struct ifmedia_description *desc; local
500 for (desc = ifm_type_descriptions, ttos = ifmedia_types_to_subtypes;
501 desc->ifmt_string != NULL; desc++, ttos++)
502 if (IFM_TYPE(ifmw) == desc->ifmt_word)
504 if (desc->ifmt_string == NULL) {
508 printf(desc->ifmt_string);
511 for (desc = ttos->modes; desc && desc
[all...]

Completed in 210 milliseconds

1234567891011>>