Home
last modified time | relevance | path

Searched refs:inenc (Results 1 – 25 of 44) sorted by relevance

12

/dports/converters/enca/enca-1.19/script/
H A Db-recode17 inenc=`transform_enc_name "$1"`
20 recode -f "$inenc..$outenc" <"$3" \
21 || { echo "$0: recode -f $inenc..$outenc failed" 1>&2
24 recode -f "$inenc..$outenc" -- "$3" \
25 || { echo "$0: recode -f $inenc..$outenc $3 failed, file $3 may be damaged" 1>&2
H A Db-piconv.in17 inenc=`transform_enc_name "$1"`
20 if piconv -f "$inenc" -t "$outenc" <"$3"; then
23 echo "$0: piconv -f $inenc -t $outenc failed" 1>&2
29 if piconv -f "$inenc" -t "$outenc" <"$3" >"$temp"; then
33 echo "$0: piconv -f $inenc -t $outenc <$3 failed, file $3 unchanged" 1>&2
H A Db-umap.in17 inenc=`transform_enc_name "$1"`
20 if umap "$inenc:$outenc" <"$3"; then
23 echo "$0: umap $inenc:$outenc failed" 1>&2
29 if umap "$inenc:$outenc" <"$3" >"$temp"; then
33 echo "$0: umap $inenc:$outenc <$3 failed, file $3 unchanged" 1>&2
H A Db-map.in17 inenc=`transform_enc_name "$1"`
21 if map --from "$inenc" --to "$outenc" <"$3"; then
22 echo "$0: map --from $inenc --to $outenc failed" 1>&2
31 if map --from "$inenc" --to "$outenc" <"$3" >"$temp"; then
32 echo "$0: map --from $inenc --to $outenc <$3 failed, file $3 unchanged" 1>&2
H A Db-cstocs.in27 inenc=`transform_enc_name "$1"`
30 if cstocs "$inenc" "$outenc" <"$3"; then
33 echo "$0: cstocs $inenc $outenc failed" 1>&2
39 if cstocs "$inenc" "$outenc" <"$3" >>"$temp"; then
43 echo "$0: cstocs $inenc $outenc $3 failed, file $3 unchanged" 1>&2
/dports/mail/thunderbird/thunderbird-91.8.0/comm/third_party/rnp/src/tests/
H A Dcli_perf.py223 inenc = infile + '.enc'
225 gpg_symencrypt_file(infile, inenc, 'AES', 0, 1, armor)
226 tmrnp = run_iterated(iterations, rnp_decrypt_file, inenc, rnpout)
230 os.remove(inenc)
237 inenc = infile + '.enc'
240 gpg_symencrypt_file(infile, inenc, cipher, 0, 1, False)
245 os.remove(inenc)
252 inenc = infile + '.enc'
253 gpg_symencrypt_file(infile, inenc, 'AES128', 0, 1, True)
254 tmrnp = run_iterated(iterations, rnp_decrypt_file, inenc, rnpout)
[all …]
/dports/security/rnp/rnp-0.15.2/src/tests/
H A Dcli_perf.py224 inenc = infile + '.enc'
226 gpg_symencrypt_file(infile, inenc, 'AES', 0, 1, armor)
227 tmrnp = run_iterated(iterations, rnp_decrypt_file, inenc, rnpout)
231 os.remove(inenc)
238 inenc = infile + '.enc'
241 gpg_symencrypt_file(infile, inenc, cipher, 0, 1, False)
246 os.remove(inenc)
253 inenc = infile + '.enc'
254 gpg_symencrypt_file(infile, inenc, 'AES128', 0, 1, True)
255 tmrnp = run_iterated(iterations, rnp_decrypt_file, inenc, rnpout)
[all …]
/dports/textproc/libcss/libcss-0.9.1/test/
H A Dcsdetect.c22 bool inenc; member
52 ctx.inenc = false; in main()
74 if (ctx->inenc) { in handle_line()
88 ctx->inenc = (strncasecmp(data+1, "encoding", 8) == 0); in handle_line()
94 if (ctx->inenc) { in handle_line()
/dports/www/libhubbub/libhubbub-0.3.7/test/
H A Dcsdetect.c22 bool inenc; member
52 ctx.inenc = false; in main()
74 if (ctx->inenc) { in handle_line()
88 ctx->inenc = (strncasecmp(data+1, "encoding", 8) == 0); in handle_line()
94 if (ctx->inenc) { in handle_line()
/dports/math/R-cran-dimRed/dimRed/R/
H A Dautoencoder.R311 inenc <- keras::layer_input(shape = n_in) functionVar
312 enc <- inenc %>% chain_list(encoder)
318 encdec <- inenc %>% chain_list(encoder) %>% chain_list(decoder)
321 loss <- tensorflow::tf$compat$v1$reduce_mean((encdec - inenc) ^ 2)
330 in_data = inenc,
/dports/graphics/bmeps/dktools-4.31.1/src/htmlbook/
H A Dhbnode.c270 ptr->inenc = 0; in hb_node_delete()
360 back->inenc = parent->inenc; in hb_node_new()
362 back->inenc = job->iecmd; in hb_node_new()
H A Dhbcont.c767 int inenc; /* Input encoding */ in hbcont_read() local
770 inenc = dk3app_get_input_file_encoding(job->app); in hbcont_read()
771 if(0 <= job->iecmd) { inenc = job->iecmd; } in hbcont_read()
772 if(0 <= (job->currentnode)->inenc) { inenc = (job->currentnode)->inenc; } in hbcont_read()
778 inenc, in hbcont_read()
H A Dhbnode.ctr338 ptr->inenc = 0;
426 /* back->inenc = -1; */
428 back->inenc = parent->inenc;
430 back->inenc = job->iecmd;
H A Dhtmlbook.h136 int inenc; /**< Text file input encoding. */ member
/dports/multimedia/scte35dump/scte35dump-0.1.6/cargo-crates/encoding-0.2.33/examples/
H A Drecode.rs39 let inenc = match inencname.as_ref().map(|s| &s[..]) { in main() localVariable
84 let decoded = match inenc.decode(&ret, intrap) { in main()
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/encoding-0.2.33/examples/
H A Drecode.rs39 let inenc = match inencname.as_ref().map(|s| &s[..]) { in main() localVariable
84 let decoded = match inenc.decode(&ret, intrap) { in main()
/dports/graphics/librsvg2-rust/librsvg-2.52.8/vendor/encoding/examples/
H A Drecode.rs39 let inenc = match inencname.as_ref().map(|s| &s[..]) { in main() localVariable
84 let decoded = match inenc.decode(&ret, intrap) { in main()
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/encoding-0.2.33/examples/
H A Drecode.rs39 let inenc = match inencname.as_ref().map(|s| &s[..]) { in main() localVariable
84 let decoded = match inenc.decode(&ret, intrap) { in main()
/dports/www/zola/zola-0.15.2/cargo-crates/encoding-0.2.33/examples/
H A Drecode.rs39 let inenc = match inencname.as_ref().map(|s| &s[..]) { in main() localVariable
84 let decoded = match inenc.decode(&ret, intrap) { in main()
/dports/textproc/bat/bat-0.18.3/cargo-crates/encoding-0.2.33/examples/
H A Drecode.rs39 let inenc = match inencname.as_ref().map(|s| &s[..]) { in main() localVariable
84 let decoded = match inenc.decode(&ret, intrap) { in main()
/dports/www/mod_tidy/mod_tidy-0.5.5/tidy/src/
H A Dconfig.c831 int inenc = -1; in AdjustCharEncoding() local
836 inenc = MACROMAN; in AdjustCharEncoding()
841 inenc = WIN1252; in AdjustCharEncoding()
846 inenc = IBM858; in AdjustCharEncoding()
851 inenc = LATIN1; in AdjustCharEncoding()
856 inenc = LATIN0; in AdjustCharEncoding()
876 inenc = outenc = encoding; in AdjustCharEncoding()
880 if ( inenc >= 0 ) in AdjustCharEncoding()
883 SetOptionInt( doc, TidyInCharEncoding, inenc ); in AdjustCharEncoding()
/dports/textproc/tidyp/tidyp-1.04/src/
H A Dconfig.c924 int inenc = -1; in TY_() local
929 inenc = MACROMAN; in TY_()
934 inenc = WIN1252; in TY_()
939 inenc = IBM858; in TY_()
944 inenc = LATIN1; in TY_()
949 inenc = LATIN0; in TY_()
969 inenc = outenc = encoding; in TY_()
973 if ( inenc >= 0 ) in TY_()
976 TY_(SetOptionInt)( doc, TidyInCharEncoding, inenc ); in TY_()
/dports/www/tidy-lib/tidy/src/
H A Dconfig.c939 int inenc = -1; in TY_() local
944 inenc = MACROMAN; in TY_()
949 inenc = WIN1252; in TY_()
954 inenc = IBM858; in TY_()
959 inenc = LATIN1; in TY_()
964 inenc = LATIN0; in TY_()
984 inenc = outenc = encoding; in TY_()
988 if ( inenc >= 0 ) in TY_()
991 TY_(SetOptionInt)( doc, TidyInCharEncoding, inenc ); in TY_()
/dports/www/tidy-devel/tidy/src/
H A Dconfig.c939 int inenc = -1; in TY_() local
944 inenc = MACROMAN; in TY_()
949 inenc = WIN1252; in TY_()
954 inenc = IBM858; in TY_()
959 inenc = LATIN1; in TY_()
964 inenc = LATIN0; in TY_()
984 inenc = outenc = encoding; in TY_()
988 if ( inenc >= 0 ) in TY_()
991 TY_(SetOptionInt)( doc, TidyInCharEncoding, inenc ); in TY_()
/dports/www/tidy-html5/tidy-html5-5.8.0/src/
H A Dconfig.c1172 int inenc = -1; in TY_() local
1177 inenc = MACROMAN; in TY_()
1182 inenc = WIN1252; in TY_()
1187 inenc = IBM858; in TY_()
1192 inenc = LATIN1; in TY_()
1197 inenc = LATIN0; in TY_()
1213 inenc = outenc = encoding; in TY_()
1217 if ( inenc >= 0 ) in TY_()
1220 TY_(SetOptionInt)( doc, TidyInCharEncoding, inenc ); in TY_()

12