| /third_party/toybox/tests/files/bc/ |
| D | sine.txt | 4 s(0) 5 s(0.5) 6 s(1) 7 s(2) 8 s(3) 9 s(-0.5) 10 s(-1) 11 s(-2) 12 s(-3) 13 s(p / 7) [all …]
|
| /third_party/ffmpeg/libavcodec/aarch64/ |
| D | fft_neon.S | 28 #include "libavutil/aarch64/asm.S" 40 ld1 {v0.2s,v1.2s,v2.2s,v3.2s}, [x0] 42 fadd v4.2s, v0.2s, v1.2s // r0+r1,i0+i1 43 fsub v6.2s, v0.2s, v1.2s // r0-r1,i0-i1 48 fadd v5.2s, v2.2s, v3.2s // i2+i3,r2+r3 49 fsub v7.2s, v16.2s, v17.2s // r3-r2,i2-i3 51 fadd v0.2s, v4.2s, v5.2s 52 fsub v2.2s, v4.2s, v5.2s 53 fadd v1.2s, v6.2s, v7.2s 54 fsub v3.2s, v6.2s, v7.2s [all …]
|
| D | aacpsdsp_neon.S | 19 #include "libavutil/aarch64/asm.S" 22 1: ld1 {v0.4S,v1.4S}, [x1], #32 23 fmul v0.4S, v0.4S, v0.4S 24 fmul v1.4S, v1.4S, v1.4S 25 faddp v2.4S, v0.4S, v1.4S 26 ld1 {v3.4S}, [x0] 27 fadd v3.4S, v3.4S, v2.4S 28 st1 {v3.4S}, [x0], #16 35 1: ld1 {v0.4S,v1.4S}, [x1], #32 36 ld1 {v2.4S}, [x2], #16 [all …]
|
| D | mdct_neon.S | 23 #include "libavutil/aarch64/asm.S" 40 ld2 {v16.2s,v17.2s}, [x7], x12 // d16=x,n1 d17=x,n0 41 ld2 {v0.2s,v1.2s}, [x2], #16 // d0 =m0,x d1 =m1,x 42 rev64 v17.2s, v17.2s 43 ld2 {v2.2s,v3.2s}, [x4], #16 // d2=c0,c1 d3=s0,s2 44 fmul v6.2s, v17.2s, v2.2s 45 fmul v7.2s, v0.2s, v2.2s 49 fmul v4.2s, v0.2s, v3.2s 50 fmul v5.2s, v17.2s, v3.2s 51 fsub v4.2s, v6.2s, v4.2s [all …]
|
| D | sbrdsp_neon.S | 19 #include "libavutil/aarch64/asm.S" 49 1: ld1 {v0.4S}, [x0] 50 ld1 {v1.4S}, [x1], #16 51 fadd v0.4S, v0.4S, v1.4S 52 ld1 {v2.4S}, [x2], #16 53 fadd v0.4S, v0.4S, v2.4S 54 ld1 {v3.4S}, [x3], #16 55 fadd v0.4S, v0.4S, v3.4S 56 ld1 {v4.4S}, [x4], #16 57 fadd v0.4S, v0.4S, v4.4S [all …]
|
| /third_party/cups-filters/filter/braille/drivers/index/ |
| D | imageubrltoindexv3.in | 50 -e 's/⠀/@@/g' \ 51 -e 's/⠁/A@/g' \ 52 -e 's/⠂/B@/g' \ 53 -e 's/⠃/C@/g' \ 54 -e 's/⠄/D@/g' \ 55 -e 's/⠅/E@/g' \ 56 -e 's/⠆/F@/g' \ 57 -e 's/⠇/G@/g' \ 58 -e 's/⡀/H@/g' \ 59 -e 's/⡁/I@/g' \ [all …]
|
| D | imageubrltoindexv4.in | 51 -e 's/⠀/@@/g' \ 52 -e 's/⠁/A@/g' \ 53 -e 's/⠂/B@/g' \ 54 -e 's/⠃/C@/g' \ 55 -e 's/⠄/D@/g' \ 56 -e 's/⠅/E@/g' \ 57 -e 's/⠆/F@/g' \ 58 -e 's/⠇/G@/g' \ 59 -e 's/⡀/H@/g' \ 60 -e 's/⡁/I@/g' \ [all …]
|
| /third_party/ffmpeg/libswresample/ |
| D | swresample.c | 32 int swr_set_channel_mapping(struct SwrContext *s, const int *channel_map){ in swr_set_channel_mapping() argument 33 if(!s || s->in_convert) // s needs to be allocated but not initialized in swr_set_channel_mapping() 35 s->channel_map = channel_map; in swr_set_channel_mapping() 41 struct SwrContext *swr_alloc_set_opts(struct SwrContext *s, in swr_alloc_set_opts() argument 45 if(!s) s= swr_alloc(); in swr_alloc_set_opts() 46 if(!s) return NULL; in swr_alloc_set_opts() 48 s->log_level_offset= log_offset; in swr_alloc_set_opts() 49 s->log_ctx= log_ctx; in swr_alloc_set_opts() 51 if (av_opt_set_int(s, "ocl", out_ch_layout, 0) < 0) in swr_alloc_set_opts() 54 if (av_opt_set_int(s, "osf", out_sample_fmt, 0) < 0) in swr_alloc_set_opts() [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | chainedCallsWithTypeParameterConstrainedToOtherTypeParameter2.types | 8 then<S extends T>(cb: (x: T) => S): Chain<S> { 9 >then : <S extends T>(cb: (x: T) => S) => Chain<S> 10 >cb : (x: T) => S 16 var s: S; 17 >s : S 20 (new Chain(t)).then(tt => s).then(ss => t); 21 >(new Chain(t)).then(tt => s).then(ss => t) : Chain<S> 22 >(new Chain(t)).then(tt => s).then : <S extends S>(cb: (x: S) => S) => Chain<S> 23 >(new Chain(t)).then(tt => s) : Chain<S> 24 >(new Chain(t)).then : <S extends T>(cb: (x: T) => S) => Chain<S> [all …]
|
| D | symbolType12.types | 2 var s = Symbol.for("assign"); 3 >s : symbol 14 s *= s; 15 >s *= s : number 16 >s : symbol 17 >s : symbol 19 s *= 0; 20 >s *= 0 : number 21 >s : symbol 24 s /= s; [all …]
|
| /third_party/libphonenumber/resources/carrier/en/ |
| D | 56.txt | 19 56211|Rural Telecommunications Chile S.A. 20 562198|Compania De Telecomunicaciones De Chile S.A. 21 562220|Compania De Telecomunicaciones De Chile S.A. 22 562221|Compania De Telecomunicaciones De Chile S.A. 23 562222|Compania De Telecomunicaciones De Chile S.A. 24 562223|Compania De Telecomunicaciones De Chile S.A. 25 562224|Gtd Manquehue S.A. 26 562225|Complejo Manufacturero De Equipos Telefonicos S.A.C.I. 27 562226|Compania De Telecomunicaciones De Chile S.A. 28 562227|Compania De Telecomunicaciones De Chile S.A. [all …]
|
| /third_party/musl/libc-test/src/api/ |
| D | inttypes.c | 3 #define S(n) {char s[] = "" n;} macro 99 S(PRId8) in f() 100 S(PRId16) in f() 101 S(PRId32) in f() 102 S(PRId64) in f() 103 S(PRIdLEAST8) in f() 104 S(PRIdLEAST16) in f() 105 S(PRIdLEAST32) in f() 106 S(PRIdLEAST64) in f() 107 S(PRIdFAST8) in f() [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/framework/vulkan/generated/vulkan/ |
| D | vkStrUtilImpl.inl | 57 std::ostream& operator<< (std::ostream& s, XlibDisplayPtr v) { return s << tcu::toHex(v.internal… argument 58 std::ostream& operator<< (std::ostream& s, XlibWindow v) { return s << tcu::toHex(v.internal); } argument 59 std::ostream& operator<< (std::ostream& s, XlibVisualID v) { return s << tcu::toHex(v.internal)… argument 60 std::ostream& operator<< (std::ostream& s, XcbConnectionPtr v) { return s << tcu::toHex(v.intern… argument 61 std::ostream& operator<< (std::ostream& s, XcbWindow v) { return s << tcu::toHex(v.internal); } argument 62 std::ostream& operator<< (std::ostream& s, XcbVisualid v) { return s << tcu::toHex(v.internal);… argument 63 std::ostream& operator<< (std::ostream& s, WaylandDisplayPtr v) { return s << tcu::toHex(v.intern… argument 64 std::ostream& operator<< (std::ostream& s, WaylandSurfacePtr v) { return s << tcu::toHex(v.intern… argument 65 std::ostream& operator<< (std::ostream& s, MirConnectionPtr v) { return s << tcu::toHex(v.intern… argument 66 std::ostream& operator<< (std::ostream& s, MirSurfacePtr v) { return s << tcu::toHex(v.internal)… argument [all …]
|
| /third_party/ffmpeg/libavcodec/ |
| D | vp9.c | 4 * Copyright (C) 2013 Ronald S. Bultje <rsbultje gmail com> 53 VP9Context *s = avctx->priv_data; in vp9_alloc_entries() local 57 if (s->entries) in vp9_alloc_entries() 58 av_freep(&s->entries); in vp9_alloc_entries() 60 s->entries = av_malloc_array(n, sizeof(atomic_int)); in vp9_alloc_entries() 61 if (!s->entries) in vp9_alloc_entries() 65 atomic_init(&s->entries[i], 0); in vp9_alloc_entries() 70 static void vp9_report_tile_progress(VP9Context *s, int field, int n) { in vp9_report_tile_progress() argument 71 pthread_mutex_lock(&s->progress_mutex); in vp9_report_tile_progress() 72 atomic_fetch_add_explicit(&s->entries[field], n, memory_order_release); in vp9_report_tile_progress() [all …]
|
| D | mpegvideo.c | 52 static void dct_unquantize_mpeg1_intra_c(MpegEncContext *s, in dct_unquantize_mpeg1_intra_c() argument 58 nCoeffs= s->block_last_index[n]; in dct_unquantize_mpeg1_intra_c() 60 block[0] *= n < 4 ? s->y_dc_scale : s->c_dc_scale; in dct_unquantize_mpeg1_intra_c() 62 quant_matrix = s->intra_matrix; in dct_unquantize_mpeg1_intra_c() 64 int j= s->intra_scantable.permutated[i]; in dct_unquantize_mpeg1_intra_c() 81 static void dct_unquantize_mpeg1_inter_c(MpegEncContext *s, in dct_unquantize_mpeg1_inter_c() argument 87 nCoeffs= s->block_last_index[n]; in dct_unquantize_mpeg1_inter_c() 89 quant_matrix = s->inter_matrix; in dct_unquantize_mpeg1_inter_c() 91 int j= s->intra_scantable.permutated[i]; in dct_unquantize_mpeg1_inter_c() 110 static void dct_unquantize_mpeg2_intra_c(MpegEncContext *s, in dct_unquantize_mpeg2_intra_c() argument [all …]
|
| D | mpegvideo_dec.c | 37 void ff_mpv_decode_init(MpegEncContext *s, AVCodecContext *avctx) in ff_mpv_decode_init() argument 39 ff_mpv_common_defaults(s); in ff_mpv_decode_init() 41 s->avctx = avctx; in ff_mpv_decode_init() 42 s->width = avctx->coded_width; in ff_mpv_decode_init() 43 s->height = avctx->coded_height; in ff_mpv_decode_init() 44 s->codec_id = avctx->codec->id; in ff_mpv_decode_init() 45 s->workaround_bugs = avctx->workaround_bugs; in ff_mpv_decode_init() 48 s->codec_tag = ff_toupper4(avctx->codec_tag); in ff_mpv_decode_init() 55 MpegEncContext *const s = dst->priv_data; in ff_mpeg_update_thread_context() local 61 av_assert0(s != s1); in ff_mpeg_update_thread_context() [all …]
|
| D | mpegvideo_enc.c | 86 static int encode_picture(MpegEncContext *s, int picture_number); 87 static int dct_quantize_refine(MpegEncContext *s, int16_t *block, int16_t *weight, int16_t *orig, i… 88 static int sse_mb(MpegEncContext *s); 89 static void denoise_dct_c(MpegEncContext *s, int16_t *block); 90 static int dct_quantize_trellis_c(MpegEncContext *s, int16_t *block, int n, int qscale, int *overfl… 108 void ff_convert_matrix(MpegEncContext *s, int (*qmat)[64], in ff_convert_matrix() argument 113 FDCTDSPContext *fdsp = &s->fdsp; in ff_convert_matrix() 121 if (s->q_scale_type) qscale2 = ff_mpeg2_non_linear_qscale[qscale]; in ff_convert_matrix() 130 const int j = s->idsp.idct_permutation[i]; in ff_convert_matrix() 142 const int j = s->idsp.idct_permutation[i]; in ff_convert_matrix() [all …]
|
| /third_party/python/Modules/ |
| D | sha512module.c | 3 /* This module provides an interface to NIST's SHA-512 and SHA-384 Algorithms */ 112 #define S(x, n) ROR64((x),(n)) macro 114 #define Sigma0(x) (S(x, 28) ^ S(x, 34) ^ S(x, 39)) 115 #define Sigma1(x) (S(x, 14) ^ S(x, 18) ^ S(x, 41)) 116 #define Gamma0(x) (S(x, 1) ^ S(x, 8) ^ R(x, 7)) 117 #define Gamma1(x) (S(x, 19) ^ S(x, 61) ^ R(x, 6)) 124 SHA_INT64 S[8], W[80], t0, t1; in sha512_transform() local 135 S[i] = sha_info->digest[i]; in sha512_transform() 145 RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],0,0x428a2f98d728ae22ULL); in sha512_transform() 146 RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],1,0x7137449123ef65cdULL); in sha512_transform() [all …]
|
| D | sha256module.c | 3 /* This module provides an interface to NIST's SHA-256 and SHA-224 Algorithms */ 124 #define S(x, n) ROR((x),(n)) macro 126 #define Sigma0(x) (S(x, 2) ^ S(x, 13) ^ S(x, 22)) 127 #define Sigma1(x) (S(x, 6) ^ S(x, 11) ^ S(x, 25)) 128 #define Gamma0(x) (S(x, 7) ^ S(x, 18) ^ R(x, 3)) 129 #define Gamma1(x) (S(x, 17) ^ S(x, 19) ^ R(x, 10)) 136 SHA_INT32 S[8], W[64], t0, t1; in sha_transform() local 147 S[i] = sha_info->digest[i]; in sha_transform() 157 RND(S[0],S[1],S[2],S[3],S[4],S[5],S[6],S[7],0,0x428a2f98); in sha_transform() 158 RND(S[7],S[0],S[1],S[2],S[3],S[4],S[5],S[6],1,0x71374491); in sha_transform() [all …]
|
| /third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/ |
| D | vkStrUtilImpl.inl | 56 std::ostream& operator<< (std::ostream& s, XlibDisplayPtr v) { return s << tcu::toHex(v.internal… argument 57 std::ostream& operator<< (std::ostream& s, XlibWindow v) { return s << tcu::toHex(v.internal); } argument 58 std::ostream& operator<< (std::ostream& s, XlibVisualID v) { return s << tcu::toHex(v.internal)… argument 59 std::ostream& operator<< (std::ostream& s, XcbConnectionPtr v) { return s << tcu::toHex(v.intern… argument 60 std::ostream& operator<< (std::ostream& s, XcbWindow v) { return s << tcu::toHex(v.internal); } argument 61 std::ostream& operator<< (std::ostream& s, XcbVisualid v) { return s << tcu::toHex(v.internal);… argument 62 std::ostream& operator<< (std::ostream& s, WaylandDisplayPtr v) { return s << tcu::toHex(v.intern… argument 63 std::ostream& operator<< (std::ostream& s, WaylandSurfacePtr v) { return s << tcu::toHex(v.intern… argument 64 std::ostream& operator<< (std::ostream& s, MirConnectionPtr v) { return s << tcu::toHex(v.intern… argument 65 std::ostream& operator<< (std::ostream& s, MirSurfacePtr v) { return s << tcu::toHex(v.internal)… argument [all …]
|
| /third_party/ffmpeg/libavformat/ |
| D | aviobuf.c | 48 AVIOContext *s = obj; in ff_avio_child_next() local 49 return prev ? NULL : s->opaque; in ff_avio_child_next() 76 static void fill_buffer(AVIOContext *s); 77 static int url_resetbuf(AVIOContext *s, int flags); 79 static int set_buf_size(AVIOContext *s, int buf_size); 90 AVIOContext *const s = &ctx->pub; in ffio_init_context() local 94 s->buffer = buffer; in ffio_init_context() 96 s->buffer_size = buffer_size; in ffio_init_context() 97 s->buf_ptr = buffer; in ffio_init_context() 98 s->buf_ptr_max = buffer; in ffio_init_context() [all …]
|
| /third_party/ffmpeg/libswresample/aarch64/ |
| D | audio_convert_neon.S | 23 #include "libavutil/aarch64/asm.S" 28 ld1 {v0.4s}, [x1], #16 29 fcvtzs v4.4s, v0.4s, #31 30 ld1 {v1.4s}, [x1], #16 31 fcvtzs v5.4s, v1.4s, #31 36 sqrshrn v4.4h, v4.4s, #16 37 ld1 {v2.4s}, [x1], #16 38 fcvtzs v6.4s, v2.4s, #31 39 sqrshrn2 v4.8h, v5.4s, #16 40 ld1 {v3.4s}, [x1], #16 [all …]
|
| /third_party/ffmpeg/libavresample/aarch64/ |
| D | audio_convert_neon.S | 23 #include "libavutil/aarch64/asm.S" 27 ld1 {v0.4s}, [x1], #16 28 fcvtzs v4.4s, v0.4s, #31 29 ld1 {v1.4s}, [x1], #16 30 fcvtzs v5.4s, v1.4s, #31 35 sqrshrn v4.4h, v4.4s, #16 36 ld1 {v2.4s}, [x1], #16 37 fcvtzs v6.4s, v2.4s, #31 38 sqrshrn2 v4.8h, v5.4s, #16 39 ld1 {v3.4s}, [x1], #16 [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/framework/vulkan/generated/vulkansc/ |
| D | vkStrUtilImpl.inl | 42 std::ostream& operator<< (std::ostream& s, XlibDisplayPtr v) { return s << tcu::toHex(v.internal… argument 43 std::ostream& operator<< (std::ostream& s, XlibWindow v) { return s << tcu::toHex(v.internal); } argument 44 std::ostream& operator<< (std::ostream& s, XlibVisualID v) { return s << tcu::toHex(v.internal)… argument 45 std::ostream& operator<< (std::ostream& s, XcbConnectionPtr v) { return s << tcu::toHex(v.intern… argument 46 std::ostream& operator<< (std::ostream& s, XcbWindow v) { return s << tcu::toHex(v.internal); } argument 47 std::ostream& operator<< (std::ostream& s, XcbVisualid v) { return s << tcu::toHex(v.internal);… argument 48 std::ostream& operator<< (std::ostream& s, WaylandDisplayPtr v) { return s << tcu::toHex(v.intern… argument 49 std::ostream& operator<< (std::ostream& s, WaylandSurfacePtr v) { return s << tcu::toHex(v.intern… argument 50 std::ostream& operator<< (std::ostream& s, MirConnectionPtr v) { return s << tcu::toHex(v.intern… argument 51 std::ostream& operator<< (std::ostream& s, MirSurfacePtr v) { return s << tcu::toHex(v.internal)… argument [all …]
|
| /third_party/pulseaudio/src/pulse/ |
| D | stream.c | 61 static void reset_callbacks(pa_stream *s) { in reset_callbacks() argument 62 s->read_callback = NULL; in reset_callbacks() 63 s->read_userdata = NULL; in reset_callbacks() 64 s->write_callback = NULL; in reset_callbacks() 65 s->write_userdata = NULL; in reset_callbacks() 66 s->state_callback = NULL; in reset_callbacks() 67 s->state_userdata = NULL; in reset_callbacks() 68 s->overflow_callback = NULL; in reset_callbacks() 69 s->overflow_userdata = NULL; in reset_callbacks() 70 s->underflow_callback = NULL; in reset_callbacks() [all …]
|