/third_party/ffmpeg/libavcodec/arm/ |
H A D | mdct_vfp.S | 27 OUT .req v1 label 68 add J0, OUT, J0, lsl #3 70 add J1, OUT, J1, lsl #3 71 add J2, OUT, J2, lsl #3 72 add J3, OUT, J3, lsl #3 106 add J0, OUT, J0, lsl #3 108 add J1, OUT, J1, lsl #3 109 add J2, OUT, J2, lsl #3 110 add J3, OUT, J3, lsl #3 151 vldr s0, [OUT, #out_lo_hea [all...] |
/third_party/node/deps/openssl/openssl/util/ |
H A D | mkerr.pl | 328 open( OUT, ">$hfile" ) || die "Can't write to $hfile, $!,"; 329 print OUT <<"EOF"; 354 print OUT <<"EOF"; 360 print OUT <<"EOF"; 367 print OUT "\n/*\n * $lib reason codes.\n */\n"; 382 printf OUT "#${indent}define $i%s $rcodes{$i}\n", " " x $z; 384 print OUT "\n"; 391 print OUT "#${indent}endif\n"; 394 print OUT <<"EOF"; 401 close OUT; [all...] |
/third_party/openssl/util/ |
H A D | mkerr.pl | 328 open( OUT, ">$hfile" ) || die "Can't write to $hfile, $!,"; 329 print OUT <<"EOF"; 354 print OUT <<"EOF"; 360 print OUT <<"EOF"; 367 print OUT "\n/*\n * $lib reason codes.\n */\n"; 382 printf OUT "#${indent}define $i%s $rcodes{$i}\n", " " x $z; 384 print OUT "\n"; 391 print OUT "#${indent}endif\n"; 394 print OUT <<"EOF"; 401 close OUT; [all...] |
/third_party/node/deps/v8/tools/ |
H A D | callstats-from-telemetry.sh | 46 OUT=out.json 47 if [[ -e $OUT ]]; then 48 echo "# Creating backup for $OUT" 49 cp $OUT $OUT.bak 51 echo "# Writing to $OUT" 61 echo "," >> $OUT; 62 echo "\"$NAME\": " >> $OUT; 63 jq '[.traceEvents[].args | select(."runtime-call-stats" != null) | ."runtime-call-stats"]' $JSON >> $OUT; 68 echo '{ "telemetry-results": { "placeholder":{}' > $OUT [all...] |
/third_party/icu/tools/multi/proj/provider/ |
H A D | check-icu2symver.sh | 29 OUT=`./icu2symver.sh $IN` 30 if [ "x${OUT}" != "x${EXP}" ]; 32 echo "Error: \"${IN}\" -> \"${OUT}\", expected ${EXP}" >&2 35 verbose "${IN} -> ${OUT}" 38 OUT=`echo ${IN} | ./icu2symver.sh` 39 if [ "x${OUT}" != "x${EXP}" ]; 41 echo "Error: \"${IN}\" -> \"${OUT}\", expected ${EXP} (via stream)" >&2 44 verbose "${IN} -> ${OUT} (via stream)"
|
H A D | Makefile | 48 #libs: $(ICU_TARBALLS_VERS:%=$(OUT)/%/lib/$(LIBPROVIDER)) 59 PLUGLIB_OUTLIBS=$(PLUGLIB:%=$(OUT)/%/lib/$(PLUGLIB_NAME)) 77 OUT=$(TOP)/out macro 96 ALLDIRS=$(INST) $(BUILD) $(SRC) $(GLOUT) $(OUT) $(GLOUT)/$(PLUGLIB) $(OUT)/$(PLUGLIB)/bin 201 plugs: $(PLUGLIB_OUTLIBS) $(OUT)/$(PLUGLIB_MAJ:%=icuplugins%.txt) 224 $(OUT)/icuplugins$(PLUGLIB_MAJ).txt: $(PLUGLIB_OUTLIBS) Makefile 234 testprog: $(PLUGLIB:%=$(OUT)/%/bin/$(TESTPROG)) 241 echo "set environment ICU_PLUGINS=$(OUT)" >> .gdbrc 242 echo "set environment $(LIBPATH_VAR)=$(OUT)/ [all...] |
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
H A D | varsub.bat | 43 $OUT = shift; 45 if (!($IN && $OUT)) { 50 open(OUT, ">$OUT") or die "Can't open $OUT: $!"; 72 print OUT; 75 close(OUT); 79 `native2ascii -encoding UTF8 $N2Aoption $OUT $OUT.native2ascii`; 80 unlink $OUT; [all...] |
H A D | dumpICUrules.bat | 351 my $OUT = "$out.txt"; 354 print "$id (", -s $IN, ") -> $OUT ("; 357 open(OUT, ">$OUTDIR/$OUT") or die; 358 binmode OUT; # Must do this so we can write our UTF8 marker 359 print OUT pack("C3", 0xEF, 0xBB, 0xBF); # Write UTF8 marker 360 close(OUT); 362 open(OUT, ">>$OUTDIR/$OUT") or die; 363 print OUT " // [all...] |
/third_party/icu/tools/multi/proj/chello/ |
H A D | Makefile | 25 OUT=out macro 27 $(OUT): 28 mkdir $(OUT) 31 OUTFILES=$(C_GOOD:%=$(OUT)/%.txt) 36 $(OUT)/%.txt: $(OUT) $(C_INS)/%/bin/$(TARGET) 42 -rm -f ./$(OUT)/* 43 -rmdir $(OUT)
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
H A D | Converter.h | 71 // Conversion function. Converts the interop type IN to the Dawn type OUT. 73 template <typename OUT, typename IN> 74 [[nodiscard]] inline bool operator()(OUT&& out, IN&& in) { in operator ()() 75 return Convert(std::forward<OUT>(out), std::forward<IN>(in)); in operator ()() 79 // elements of Dawn type OUT, which is assigned to 'out_els'. 83 template <typename OUT, typename IN> 84 [[nodiscard]] inline bool operator()(OUT*& out_els, in operator ()() 271 template <typename OUT, 273 typename = std::enable_if_t<std::is_integral_v<IN> && std::is_integral_v<OUT>>> 274 inline bool Convert(OUT [all...] |
/third_party/openssl/test/ |
H A D | cms-examples.pl | 80 open OUT, ">$filename"; 81 binmode OUT; 82 print OUT $data; 83 close OUT; 149 open OUT, ">$filename"; 151 print OUT "-----BEGIN $str-----\n"; 152 print OUT $data; 153 print OUT "-----END $str-----\n"; 155 close OUT;
|
/third_party/ffmpeg/libswresample/aarch64/ |
H A D | resample_init.c | 32 #define DECLARE_RESAMPLE_COMMON_TEMPLATE(TYPE, DELEM, FELEM, FELEM2, OUT) \ 75 OUT(dst[dst_index], val); \ 98 #define OUT(d, v) d = v macro 99 DECLARE_RESAMPLE_COMMON_TEMPLATE(float, float, float, float, OUT) 100 #undef OUT macro 102 #define OUT(d, v) (v) = ((v) + (1<<(14)))>>15; (d) = av_clip_int16(v) macro 103 DECLARE_RESAMPLE_COMMON_TEMPLATE(s16, int16_t, int16_t, int32_t, OUT) in DECLARE_RESAMPLE_COMMON_TEMPLATE() 104 #undef OUT in DECLARE_RESAMPLE_COMMON_TEMPLATE() macro
|
/third_party/ffmpeg/libswresample/arm/ |
H A D | resample_init.c | 32 #define DECLARE_RESAMPLE_COMMON_TEMPLATE(TYPE, DELEM, FELEM, FELEM2, OUT) \ 75 OUT(dst[dst_index], val); \ 98 #define OUT(d, v) d = v macro 99 DECLARE_RESAMPLE_COMMON_TEMPLATE(float, float, float, float, OUT) 100 #undef OUT macro 102 #define OUT(d, v) (v) = ((v) + (1<<(14)))>>15; (d) = av_clip_int16(v) macro 103 DECLARE_RESAMPLE_COMMON_TEMPLATE(s16, int16_t, int16_t, int32_t, OUT) in DECLARE_RESAMPLE_COMMON_TEMPLATE() 104 #undef OUT in DECLARE_RESAMPLE_COMMON_TEMPLATE() macro
|
/third_party/jerryscript/tools/ |
H A D | rss-measure.sh | 27 OUT=$OUT_NAME; 38 eval "$OUT=\"\$$OUT $SUM\\n\""; 45 OUT=$OUT_NAME; 47 eval "echo -e \"\$$OUT\"" | awk -v entry="$1" '{ if ($1 != "") { n += 1; if ($1 > max) { max = $1; } } } END { if (n == 0) { exit; }; printf "%d\n", max; }';
|
/third_party/toybox/toys/pending/ |
H A D | crontab.c | 129 goto OUT; in parse_crontab() 149 goto OUT; in parse_crontab() 160 goto OUT; in parse_crontab() 166 goto OUT; in parse_crontab() 174 goto OUT; in parse_crontab() 180 goto OUT; in parse_crontab() 184 goto OUT; in parse_crontab() 188 goto OUT; in parse_crontab() 192 goto OUT; in parse_crontab() 196 goto OUT; in parse_crontab() [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | flacdsp_template.c | 28 #undef OUT macro 40 # define OUT(n) n macro 45 # define OUT(n) n[0] macro 54 sample *samples = (sample *) OUT(out); in flac_decorrelate_indep_c() 65 sample *samples = (sample *) OUT(out); in flac_decorrelate_ls_c() 79 sample *samples = (sample *) OUT(out); in flac_decorrelate_rs_c() 93 sample *samples = (sample *) OUT(out); in flac_decorrelate_ms_c()
|
/third_party/ffmpeg/libavresample/ |
H A D | resample_template.c | 32 #define OUT(d, v) d = v macro 39 #define OUT(d, v) d = v macro 46 #define OUT(d, v) d = av_clipl_int32((v + (1 << 29)) >> 30) macro 53 #define OUT(d, v) d = av_clip_int16((v + (1 << 14)) >> 15) macro 82 OUT(dst[dst_index], val); in resample_linear() 100 OUT(dst[dst_index], val); in resample_one() 117 #undef OUT macro
|
/third_party/icu/tools/scripts/ |
H A D | icurun | 204 OUT=`basename ${FILE} .cpp` 209 OUT=`basename ${FILE} .c` 218 echo "# ${COMP}" "${SRC_OPTS}" -o "${OUT}" "${FILE}" "${XTRA_OPTS}" 219 ( ${COMP} ${SRC_OPTS} -o "${OUT}" "${FILE}" ${XTRA_OPTS} || (rm -f "${OUT}" ; exit 1) ) && ( echo "# ${INVOKE} ${LEAK_CHECKER} ./${OUT}" "$@" ; "${SHELL}" -c "${INVOKE} ${LEAK_CHECKER} ./${OUT} $*")
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | common_sse41.h | 27 #define WEBP_SSE41_SHUFF(OUT, IN0, IN1) \ 28 OUT##0 = _mm_shuffle_epi8(*IN0, shuff0); \ 29 OUT##1 = _mm_shuffle_epi8(*IN0, shuff1); \ 30 OUT##2 = _mm_shuffle_epi8(*IN0, shuff2); \ 31 OUT##3 = _mm_shuffle_epi8(*IN1, shuff0); \ 32 OUT##4 = _mm_shuffle_epi8(*IN1, shuff1); \ 33 OUT##5 = _mm_shuffle_epi8(*IN1, shuff2);
|
H A D | common_sse2.h | 109 #define VP8PlanarTo24bHelper(IN, OUT) \ 113 (OUT##0) = _mm_packus_epi16(_mm_and_si128((IN##0), v_mask), \ 115 (OUT##1) = _mm_packus_epi16(_mm_and_si128((IN##2), v_mask), \ 117 (OUT##2) = _mm_packus_epi16(_mm_and_si128((IN##4), v_mask), \ 120 (OUT##3) = _mm_packus_epi16(_mm_srli_epi16((IN##0), 8), \ 122 (OUT##4) = _mm_packus_epi16(_mm_srli_epi16((IN##2), 8), \ 124 (OUT##5) = _mm_packus_epi16(_mm_srli_epi16((IN##4), 8), \
|
/third_party/icu/tools/colprobe/ |
H A D | extractCollationData.pl | 87 #open(OUT, ">:utf8", "$filename"); 88 open(OUT, ">$filename"); 97 print OUT processLine($line); 98 print OUT "\n"; 105 close(OUT); 227 print OUT <<"EndOfHeading"; 243 print OUT <<"EndOfFooting";
|
/third_party/ffmpeg/libswresample/ |
H A D | resample_template.c | 36 # define OUT(d, v) d = v macro 46 # define OUT(d, v) d = v macro 58 # define OUT(d, v) (d) = av_clipl_int32((v)>>FILTER_SHIFT) macro 71 # define OUT(d, v) (d) = av_clip_int16((v)>>FILTER_SHIFT) macro 117 OUT(dst[dst_index], val + (FELEML)val2); in resample_common() 119 OUT(dst[dst_index], val + val2); in resample_common() 180 OUT(dst[dst_index], val); in resample_linear() 211 #undef OUT macro
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/ |
H A D | HolidayBorderPanel.java | 46 public final static int OUT = 4; field in HolidayBorderPanel 147 case OUT: thickness = DEFAULT_OUT_THICKNESS; break; in HolidayBorderPanel() 175 if (style == IN || style == OUT) { in getInsets() 276 if (style == SOLID || style == IN || style == OUT) in setColor() 299 if (style == IN || style == OUT) { in setTextFont() 324 if (style == IN || style == OUT) { in setText() 348 if (style == IN || style == OUT) { in setAlignment() 411 case OUT: in paint() 511 case OUT: str.append("OUT"); brea in toString() [all...] |
/third_party/rust/crates/rustix/tests/net/ |
H A D | poll.rs | 46 assert!(!fds[0].revents().intersects(PollFlags::OUT)); in server() 53 let mut fds = [PollFd::new(&data_socket, PollFlags::OUT)]; in server() 56 assert!(fds[0].revents().intersects(PollFlags::OUT)); in server() 82 let mut fds = [PollFd::new(&data_socket, PollFlags::OUT)]; in client() 85 assert!(fds[0].revents().intersects(PollFlags::OUT)); in client() 92 assert!(!fds[0].revents().intersects(PollFlags::OUT)); in client()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-directwrite.cc | 14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN 70 IFACEMETHOD (QueryInterface) (IID const& iid, OUT void** ppObject) in QueryInterface() 79 OUT IDWriteFontFileStream** fontFileStream) in CreateStreamFromKey() 101 IFACEMETHOD (QueryInterface) (IID const& iid, OUT void** ppObject) in QueryInterface() 111 OUT void** fragmentContext) in ReadFileFragment() 129 GetFileSize (OUT UINT64* fileSize) in GetFileSize() 136 GetLastWriteTime (OUT UINT64* lastWriteTime) { return E_NOTIMPL; } in GetLastWriteTime() 296 IFACEMETHOD (QueryInterface) (IID const& iid, OUT void** ppObject) in QueryInterface() 367 OUT wchar_t const** textString, in GetTextAtPosition() 368 OUT uint32_ in GetTextAtPosition() [all...] |