Home
last modified time | relevance | path

Searched refs:DEST (Results 1 - 12 of 12) sorted by relevance

/third_party/node/deps/v8/tools/turbolizer/
H A Ddeploy.sh3 DEST=$1
5 if [ ! -d "$DEST" ]; then
6 echo -e "Destination \"$DEST\" is not a directory. Run\n\tnpm deploy -- [destination-directory]"
16 copy *.png $DEST/
17 copy *.css $DEST/
18 copy index.html $DEST/
19 copy info-view.html $DEST/
20 copy -R build $DEST/
21 copy -R img $DEST/
24 echo "Deployed to $DEST/
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dxvididct.asm246 ; DEST is set to where address of dest was loaded
254 %xdefine DEST r2q ; BLOCK is r0, stride r1
255 movifnidn DEST, destm
258 %xdefine DEST r0q
264 movq [DEST + strideq], TAN3
265 movhps [DEST + 2*strideq], TAN3
286 movq [DEST], %3
287 movhps [DEST + r3q], %3
288 lea DEST, [DEST
[all...]
/third_party/zlib/os400/
H A Dmake.sh214 do DEST="${SRCPF}/`db2_name \"${HFILE}\"`.MBR"
216 if action_needed "${DEST}" "${HFILE}"
221 CMD="CPY OBJ('`pwd`/tmphdrfile') TOOBJ('${DEST}')"
224 # touch -r "${HFILE}" "${DEST}"
230 if action_needed "${IFSFILE}" "${DEST}"
232 ln -s "${DEST}" "${IFSFILE}"
241 DEST="${SRCPF}/ZLIB.INC.MBR"
243 if action_needed "${DEST}" "${HFILE}"
244 then CMD="CPY OBJ('${HFILE}') TOOBJ('${DEST}')"
247 # touch -r "${HFILE}" "${DEST}"
[all...]
/third_party/curl/packages/OS400/
H A Dmake-include.sh79 DEST="${SRCPF}/`db2_name \"${HFILE}\" nomangle`.MBR"
81 if action_needed "${DEST}" "${HFILE}"
82 then copy_hfile "${DEST}" "${HFILE}"
85 ln -s "${DEST}" "${IFSDEST}"
/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_vec.h38 * |DEST| with the literal string |LIT|.
40 #define ngtcp2_vec_lit(DEST, LIT) \
41 ((DEST)->base = (uint8_t *)(LIT), (DEST)->len = sizeof(LIT) - 1, (DEST))
H A Dngtcp2_qlog.c41 #define write_verbatim(DEST, S) ngtcp2_cpymem((DEST), (S), sizeof(S) - 1)
53 #define write_string(DEST, S) \
54 write_string_impl((DEST), (const uint8_t *)(S), sizeof(S) - 1)
114 #define write_pair(DEST, NAME, VALUE) \
115 write_pair_impl((DEST), (const uint8_t *)(NAME), sizeof(NAME) - 1, (VALUE))
125 #define write_pair_hex(DEST, NAME, VALUE, VALUELEN) \
126 write_pair_hex_impl((DEST), (const uint8_t *)(NAME), sizeof(NAME) - 1, \
136 #define write_pair_number(DEST, NAME, VALUE) \
137 write_pair_number_impl((DEST), (cons
[all...]
/third_party/node/deps/ngtcp2/ngtcp2/lib/includes/ngtcp2/
H A Dngtcp2.h5680 #define ngtcp2_conn_write_pkt(CONN, PATH, PI, DEST, DESTLEN, TS) \
5682 (PI), (DEST), (DESTLEN), (TS))
5689 #define ngtcp2_conn_write_stream(CONN, PATH, PI, DEST, DESTLEN, PDATALEN, \
5692 (CONN), (PATH), NGTCP2_PKT_INFO_VERSION, (PI), (DEST), (DESTLEN), \
5700 #define ngtcp2_conn_writev_stream(CONN, PATH, PI, DEST, DESTLEN, PDATALEN, \
5703 (CONN), (PATH), NGTCP2_PKT_INFO_VERSION, (PI), (DEST), (DESTLEN), \
5711 #define ngtcp2_conn_writev_datagram(CONN, PATH, PI, DEST, DESTLEN, PACCEPTED, \
5714 (CONN), (PATH), NGTCP2_PKT_INFO_VERSION, (PI), (DEST), (DESTLEN), \
5722 #define ngtcp2_conn_write_connection_close(CONN, PATH, PI, DEST, DESTLEN, \
5725 (CONN), (PATH), NGTCP2_PKT_INFO_VERSION, (PI), (DEST), (DESTLE
[all...]
/third_party/mbedtls/library/
H A Dcamellia.c212 #define ROTL(DEST, SRC, SHIFT) \
214 (DEST)[0] = (SRC)[0] << (SHIFT) ^ (SRC)[1] >> (32 - (SHIFT)); \
215 (DEST)[1] = (SRC)[1] << (SHIFT) ^ (SRC)[2] >> (32 - (SHIFT)); \
216 (DEST)[2] = (SRC)[2] << (SHIFT) ^ (SRC)[3] >> (32 - (SHIFT)); \
217 (DEST)[3] = (SRC)[3] << (SHIFT) ^ (SRC)[0] >> (32 - (SHIFT)); \
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
H A DCopyTextureForBrowserTests.cpp68 DEST, member in CopyTextureForBrowserTests::TextureCopyRole
443 GetTextureData(dstCopyLayout, TextureCopyRole::DEST);
/third_party/node/deps/openssl/openssl/crypto/aria/
H A Daria.c46 #define PUT_U32_BE(DEST, IDX, VAL) \
48 ((uint8_t *)(DEST))[IDX * 4 ] = GET_U8_BE(VAL, 0); \
49 ((uint8_t *)(DEST))[IDX * 4 + 1] = GET_U8_BE(VAL, 1); \
50 ((uint8_t *)(DEST))[IDX * 4 + 2] = GET_U8_BE(VAL, 2); \
51 ((uint8_t *)(DEST))[IDX * 4 + 3] = GET_U8_BE(VAL, 3); \
/third_party/openssl/crypto/aria/
H A Daria.c46 #define PUT_U32_BE(DEST, IDX, VAL) \
48 ((uint8_t *)(DEST))[IDX * 4 ] = GET_U8_BE(VAL, 0); \
49 ((uint8_t *)(DEST))[IDX * 4 + 1] = GET_U8_BE(VAL, 1); \
50 ((uint8_t *)(DEST))[IDX * 4 + 2] = GET_U8_BE(VAL, 2); \
51 ((uint8_t *)(DEST))[IDX * 4 + 3] = GET_U8_BE(VAL, 3); \
/third_party/python/Python/
H A Dinitconfig.c1454 #define CONFIG_GET_ENV_DUP(CONFIG, DEST, WNAME, NAME) \
1455 config_get_env_dup(CONFIG, DEST, WNAME, NAME, "cannot decode " NAME)

Completed in 17 milliseconds