| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | test-comments | 7 ./sox --i -a $1 > $tmp.comments 8 cmp $tmp.comments $2 || exit 1 39 ./sox $input --comment-file $tmp.i $tmp.comments.au 40 check_file $tmp.comments.au $tmp.i 57 ./sox $tmp.comments.au --comment= $tmp.au 60 ./sox $tmp.comments.au --comment "$com1" $tmp.au 63 ./sox $tmp.comments.au --add-comment "$com1" $tmp.au 68 ./sox $tmp.comments.au --add-comment "$com1" --add-comment "$com2" $tmp.au 73 ./sox $tmp.comments.au $tmp.aiff
|
| H A D | soundtool.c | 27 char id1[sizeof(ID1)], comments[text_field_len + 1]; in start_read() local 34 lsx_readchars(ft, comments, text_field_len)) in start_read() 40 comments[text_field_len] = '\0'; /* Be defensive against incorrect files */ in start_read() 41 sox_append_comments(&ft->oob.comments, comments); in start_read() 47 char * comment = lsx_cat_comments(ft->oob.comments); in write_header()
|
| H A D | mp3-util.h | 33 if ((comment = sox_find_comment(ft->oob.comments, "Title"))) in write_comments() 35 if ((comment = sox_find_comment(ft->oob.comments, "Artist"))) in write_comments() 37 if ((comment = sox_find_comment(ft->oob.comments, "Album"))) in write_comments() 39 if ((comment = sox_find_comment(ft->oob.comments, "Tracknumber"))) in write_comments() 41 if ((comment = sox_find_comment(ft->oob.comments, "Year"))) in write_comments() 43 if ((comment = sox_find_comment(ft->oob.comments, "Comment"))) in write_comments() 45 if ((comment = sox_find_comment(ft->oob.comments, "Genre"))) in write_comments() 51 if ((comment = sox_find_comment(ft->oob.comments, "Discnumber"))) in write_comments()
|
| H A D | formats.c | 218 size_t sox_num_comments(sox_comments_t comments) in sox_num_comments() argument 221 if (!comments) in sox_num_comments() 223 while (*comments++) in sox_num_comments() 228 void sox_append_comment(sox_comments_t * comments, char const * comment) in sox_append_comment() argument 230 size_t n = sox_num_comments(*comments); in sox_append_comment() 231 *comments = lsx_realloc(*comments, (n + 2) * sizeof(**comments)); in sox_append_comment() 233 (*comments)[n++] = lsx_strdup(comment); in sox_append_comment() 234 (*comments)[n] = 0; in sox_append_comment() 237 void sox_append_comments(sox_comments_t * comments, char const * comment) in sox_append_comments() argument 246 sox_append_comment(comments, c); in sox_append_comments() [all …]
|
| H A D | vorbis.c | 144 for (i = 0; i < vc->comments; i++) in startread() 145 sox_append_comment(&ft->oob.comments, vc->user_comments[i]); in startread() 259 vc.comments = sox_num_comments(ft->oob.comments); in write_vorbis_header() 260 if (vc.comments) { /* Make the comment structure */ in write_vorbis_header() 261 vc.comment_lengths = lsx_calloc((size_t)vc.comments, sizeof(*vc.comment_lengths)); in write_vorbis_header() 262 vc.user_comments = lsx_calloc((size_t)vc.comments, sizeof(*vc.user_comments)); in write_vorbis_header() 263 for (i = 0; i < vc.comments; ++i) { in write_vorbis_header() 265 char * text = lsx_calloc(strlen(prepend) + strlen(ft->oob.comments[i]) + 1, sizeof(*text)); in write_vorbis_header() 267 if (!strchr(ft->oob.comments[i], '=')) in write_vorbis_header() 269 vc.user_comments[i] = strcat(text, ft->oob.comments[i]); in write_vorbis_header() [all …]
|
| H A D | sox-fmt.c | 63 sox_append_comments(&ft->oob.comments, buf); in startread() 78 char * comments = lsx_cat_comments(ft->oob.comments); in write_header() local 79 size_t comments_len = strlen(comments); in write_header() 92 ||lsx_writechars(ft, comments, comments_len) in write_header() 94 free(comments); in write_header()
|
| H A D | sox.c | 311 text = sox_find_comment(f->ft->oob.comments, "Comment"); in play_file_info() 313 text = sox_find_comment(f->ft->oob.comments, "Description"); in play_file_info() 315 text = sox_find_comment(f->ft->oob.comments, "Year"); in play_file_info() 322 text = sox_find_comment(f->ft->oob.comments, "Tracknumber"); in play_file_info() 325 text = sox_find_comment(f->ft->oob.comments, "Tracktotal"); in play_file_info() 333 text = sox_find_comment(f->ft->oob.comments, "Album"); in play_file_info() 344 text = sox_find_comment(f->ft->oob.comments, "Artist"); in play_file_info() 350 text = sox_find_comment(f->ft->oob.comments, "Title"); in play_file_info() 428 if (!(ft->handler.flags & SOX_FILE_DEVICE) && ft->oob.comments) { in display_file_info() 429 if (sox_num_comments(ft->oob.comments) > 1) { in display_file_info() [all …]
|
| H A D | flac.c | 128 if (ft->oob.comments != NULL) { in decoder_metadata_callback() 134 if (vc->comments[i].entry) in decoder_metadata_callback() 135 sox_append_comment(&ft->oob.comments, (char const *) vc->comments[i].entry); in decoder_metadata_callback() 493 if (ft->oob.comments) { /* Make the comment structure */ in start_write() 498 for (i = 0; ft->oob.comments[i]; ++i) { in start_write() 500 char * text = lsx_calloc(strlen(prepend) + strlen(ft->oob.comments[i]) + 1, sizeof(*text)); in start_write() 502 if (!strchr(ft->oob.comments[i], '=')) in start_write() 504 entry.entry = (FLAC__byte *) strcat(text, ft->oob.comments[i]); in start_write()
|
| H A D | smp.c | 31 char comments[COMMENTLEN]; /* User comments */ member 248 commentlen >= 0 && header.comments[commentlen] == ' '; commentlen--) in sox_smpstartread() 251 commentlen+1, header.comments); in sox_smpstartread() 252 sox_append_comments(&ft->oob.comments, smp->comment); in sox_smpstartread() 345 char * comment = lsx_cat_comments(ft->oob.comments); in sox_smpstartwrite() 356 sprintf(header.comments, "%-*s", COMMENTLEN - 1, "Converted using Sox."); in sox_smpstartwrite()
|
| H A D | sox.h | 1489 sox_comments_t comments; /**< Comment strings in id=value format. */ member 1710 LSX_PARAM_IN_OPT sox_comments_t comments /**< Metadata block. */ 1720 …LSX_PARAM_DEREF_PRE_MAYBENULL LSX_PARAM_DEREF_POST_NOTNULL sox_comments_t * comments, /**< Metadat… 1731 …LSX_PARAM_DEREF_PRE_MAYBENULL LSX_PARAM_DEREF_POST_NOTNULL sox_comments_t * comments, /**< Metadat… 1744 LSX_PARAM_IN_OPT sox_comments_t comments /**< Metadata block to copy. */ 1754 …LSX_PARAM_DEREF_PRE_MAYBENULL LSX_PARAM_DEREF_POST_NULL sox_comments_t * comments /**< Metadata bl… 1766 LSX_PARAM_IN_OPT sox_comments_t comments, /**< Metadata block in which to search. */
|
| H A D | sf.c | 106 sox_append_comments(&ft->oob.comments, buf); in startread() 120 char * comment = lsx_cat_comments(ft->oob.comments); in write_header()
|
| H A D | opus.c | 124 for (i = 0; i < ot->comments; i++) in startread() 125 sox_append_comment(&ft->oob.comments, ot->user_comments[i]); in startread()
|
| /OK3568_Linux_fs/kernel/Documentation/doc-guide/ |
| H A D | kernel-doc.rst | 1 Writing kernel-doc comments 5 comments in the kernel-doc format to describe the functions, types 12 comments. Please stick to the style described here. 14 The kernel-doc structure is extracted from the comments, and proper 24 to be used by modules should also have kernel-doc comments. 33 How to format kernel-doc comments 36 The opening comment mark ``/**`` is used for kernel-doc comments. The 37 ``kernel-doc`` tool will extract comments marked this way. The rest of 41 The function and type kernel-doc comments should be placed just before 44 overview kernel-doc comments may be placed anywhere at the top indentation [all …]
|
| H A D | contributing.rst | 50 problems in kerneldoc comments in C code. While the documentation 66 comments that look like this:: 85 [PATCH] PM / devfreq: Fix two malformed kerneldoc comments 87 Two kerneldoc comments in devfreq.c fail to adhere to the required format, 140 Languishing kerneldoc comments 143 Developers are encouraged to write kerneldoc comments for their code, but 144 many of those comments are never pulled into the docs build. That makes 147 the documentation to bring those comments in can help the community derive 151 overlooked comments. 155 kerneldoc comments for internal use; those should not be pulled into the
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/flex/flex/ |
| H A D | check-funcs.patch | 1 Subject: build: Move dnl comments out of AC_CHECK_FUNCS 3 Due to a bug, autoheader (2.69) will treat M4 dnl comments in a quoted 15 As a workaround, let's move comments out of AC_CHECK_FUNCS. 49 +dnl Autoheader (<= 2.69) bug: "dnl" comments in a quoted argument of
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-perl/recipes-perl/libxml/libxml-libxml-perl/ |
| H A D | using-DOCB-conditional.patch | 29 @@ -5286,7 +5288,9 @@ _toStringC14N(self, comments=0, xpath=&PL_sv_undef, exclusive=0, inc_prefix_l… 37 if (comments) 39 @@ -5297,7 +5301,10 @@ _toStringC14N(self, comments=0, xpath=&PL_sv_undef, exclusive=0, inc_prefix_…
|
| /OK3568_Linux_fs/buildroot/package/taglib/ |
| H A D | Config.in | 8 ID3v1 and ID3v2 for MP3 files, Ogg Vorbis comments and ID3 9 tags and Vorbis comments in FLAC, MPC, Speex, WavPack and
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/python/python3/ |
| H A D | create_manifest3.py | 86 def prepend_comments(comments, json_manifest): argument 90 manifest.write(comments + json_contents) 104 comments = manifest.read(json_start) variable 434 prepend_comments(comments,'python3-manifest.json.new')
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/ |
| H A D | .yamllint | 21 comments: 24 comments-indentation: disable
|
| /OK3568_Linux_fs/kernel/Documentation/gpu/ |
| H A D | introduction.rst | 59 concepts. Documentation should be put into the code itself as kerneldoc comments 64 have formal kerneldoc comments. Use normal C comments if you feel like a comment 67 anything entirely private with ``/* private: */`` comments as per the
|
| /OK3568_Linux_fs/kernel/Documentation/process/ |
| H A D | 6.Followthrough.rst | 25 A patch of any significance will result in a number of comments from other 54 What all of this comes down to is that, when reviewers send you comments, 57 from happening. When you get review comments on a patch, take the time to 78 One fatal mistake is to ignore review comments in the hope that they will 80 responded to the comments you got the time before, you're likely to find 124 there's a good chance that you will get more comments from a new set of 125 reviewers; these comments need to be answered as in the previous round. 145 may be a new round of comments from developers who had not been aware of
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/ |
| H A D | python3-typed-ast_1.5.2.bb | 1 SUMMARY = "Modified fork of CPython's ast module that parses `# type:` comments"
|
| H A D | python3-jstyleson_0.0.2.bb | 1 SUMMARY = "Library to parse JSON with js-style comments."
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/nxp/ |
| H A D | SCR.txt | 9 Description and comments: NXP Wi-Fi linux SDK
|
| /OK3568_Linux_fs/kernel/drivers/staging/netlogic/ |
| H A D | TODO | 3 * Changing comments into linux standard format
|