| /third_party/jerryscript/tests/jerry/ |
| D | array-prototype-shift.js | 40 var obj = { shift : Array.prototype.shift }; property 52 var obj = { shift : Array.prototype.shift }; property 64 var obj = { shift : Array.prototype.shift }; property 70 var obj = { shift : Array.prototype.shift, length : 1 }; property 87 Array.prototype.shift.call(arr); method in Array 100 Array.prototype.shift.call(arr); method in Array 111 Array.prototype.shift.call(arr); method in Array 122 Array.prototype.shift.call(arr); method in Array 133 Array.prototype.shift.call(arr); method in Array
|
| /third_party/pulseaudio/speex/libspeexdsp/ |
| D | fixed_generic.h | 45 #define SHR16(a,shift) ((a) >> (shift)) argument 46 #define SHL16(a,shift) ((a) << (shift)) argument 47 #define SHR32(a,shift) ((a) >> (shift)) argument 48 #define SHL32(a,shift) ((a) << (shift)) argument 49 #define PSHR16(a,shift) (SHR16((a)+((1<<((shift))>>1)),shift)) argument 50 #define PSHR32(a,shift) (SHR32((a)+((EXTEND32(1)<<((shift))>>1)),shift)) argument 51 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift))) argument 55 #define SATURATE32PSHR(x,shift,a) (((x)>=(SHL32(a,shift))) ? (a) : \ argument 59 #define SHR(a,shift) ((a) >> (shift)) argument 60 #define SHL(a,shift) ((spx_word32_t)(a) << (shift)) argument [all …]
|
| D | arch.h | 161 #define SHR16(a,shift) (a) argument 162 #define SHL16(a,shift) (a) argument 163 #define SHR32(a,shift) (a) argument 164 #define SHL32(a,shift) (a) argument 165 #define PSHR16(a,shift) (a) argument 166 #define PSHR32(a,shift) (a) argument 167 #define VSHR32(a,shift) (a) argument 170 #define SATURATE32PSHR(x,shift,a) (x) argument 172 #define PSHR(a,shift) (a) argument 173 #define SHR(a,shift) (a) argument [all …]
|
| /third_party/ffmpeg/libavcodec/arm/ |
| D | simple_idct_armv6.S | 53 .macro idct_row shift argument 94 .macro idct_row4 shift argument 132 .macro idct_finish_shift shift argument 159 .macro idct_finish_shift_sat shift argument
|
| D | mlpdsp_init_arm.c | 44 #define DECLARE_PACK(order,channels,shift) \ argument 46 #define ENUMERATE_PACK(order,channels,shift) \ argument 95 int shift = output_shift[0] < 0 || output_shift[0] > 5 ? 6 : output_shift[0]; in mlp_select_pack_output_armv6() local
|
| /third_party/node/test/parallel/ |
| D | test-readline-keys.js | 10 return Object.assign({ ctrl: false, meta: false, shift: false }, k); property 90 { name: 'j', sequence: 'J', shift: true }, property 91 { name: 's', sequence: 'S', shift: true }, property 134 { name: 'a', sequence: 'A', shift: true }, property 135 { name: 'a', sequence: '\x1bA', meta: true, shift: true }, property 140 { name: 'f1', sequence: '\x1b[2P', code: '[P', shift: true, meta: false, ctrl: false }, property 141 { name: 'f1', sequence: '\x1b[3P', code: '[P', shift: false, meta: true, ctrl: false }, property 142 { name: 'f1', sequence: '\x1b[4P', code: '[P', shift: true, meta: true, ctrl: false }, property 143 { name: 'f1', sequence: '\x1b[5P', code: '[P', shift: false, meta: false, ctrl: true }, property 144 { name: 'f1', sequence: '\x1b[6P', code: '[P', shift: true, meta: false, ctrl: true }, property [all …]
|
| D | test-readline-emit-keypress-events.js | 13 { sequence: 'f', name: 'f', ctrl: false, meta: false, shift: false }, property 14 { sequence: 'o', name: 'o', ctrl: false, meta: false, shift: false }, property 15 { sequence: 'o', name: 'o', ctrl: false, meta: false, shift: false }, property
|
| /third_party/skia/third_party/externals/libwebp/src/dsp/ |
| D | rescaler_msa.c | 27 #define CALC_MULT_FIX_16(in0, in1, in2, in3, scale, shift, dst) do { \ argument 47 #define CALC_MULT_FIX_4(in0, scale, shift, dst) do { \ argument 60 #define CALC_MULT_FIX1_16(in0, in1, in2, in3, fyscale, shift, \ argument 78 #define CALC_MULT_FIX1_4(in0, scale, shift, dst) do { \ argument 87 #define CALC_MULT_FIX2_16(in0, in1, in2, in3, mult, scale, shift, \ argument 102 #define CALC_MULT_FIX2_4(in0, in1, mult, scale, shift, dst) do { \ argument 121 const v4u32 shift = (v4u32)__msa_fill_w(WEBP_RESCALER_RFIX); in ExportRowExpand_0() local 183 const v4u32 shift = (v4u32)__msa_fill_w(WEBP_RESCALER_RFIX); in ExportRowExpand_1() local
|
| /third_party/ffmpeg/libavcodec/ |
| D | hevcdsp_template.c | 109 int shift = 15 - BIT_DEPTH - log2_size; in FUNC() local 152 int shift = 7; in FUNC() local 307 int shift = BIT_DEPTH - 5; in FUNC() local 538 int shift = 14 + 1 - BIT_DEPTH; in FUNC() local 562 int shift = denom + 14 - BIT_DEPTH; in FUNC() local 589 int shift = 14 + 1 - BIT_DEPTH; in FUNC() local 691 int shift = 14 - BIT_DEPTH; in FUNC() local 719 int shift = 14 + 1 - BIT_DEPTH; in FUNC() local 745 int shift = 14 - BIT_DEPTH; in FUNC() local 774 int shift = 14 + 1 - BIT_DEPTH; in FUNC() local [all …]
|
| D | nellymoser.c | 87 static inline int signed_shift(int i, int shift) { in signed_shift() 93 static int sum_bits(short *buf, short shift, short off) in sum_bits() 123 short shift, shift_saved; in ff_nelly_get_sample_bits() local
|
| /third_party/ntfs-3g/include/ntfs-3g/ |
| D | bitmap.h | 79 static __inline__ u32 ntfs_rol32(u32 word, unsigned int shift) in ntfs_rol32() 90 static __inline__ u32 ntfs_ror32(u32 word, unsigned int shift) in ntfs_ror32()
|
| /third_party/curl/scripts/ |
| D | schemetable.c | 79 unsigned int calc(const char *s, int add, int shift) in calc() 94 static void showtable(int try, int init, int shift) in showtable() 150 int shift; in main() local
|
| /third_party/skia/src/core/ |
| D | SkEdge.cpp | 37 int shift) { in setLine() 181 bool SkQuadraticEdge::setQuadraticWithoutUpdate(const SkPoint pts[3], int shift) { in setQuadraticWithoutUpdate() 281 int SkQuadraticEdge::setQuadratic(const SkPoint pts[3], int shift) { in setQuadratic() 297 int shift = fCurveShift; in updateQuadratic() local 351 bool SkCubicEdge::setCubicWithoutUpdate(const SkPoint pts[4], int shift, bool sortY) { in setCubicWithoutUpdate() 451 int SkCubicEdge::setCubic(const SkPoint pts[4], int shift) { in setCubic()
|
| /third_party/node/lib/internal/ |
| D | fixed_queue.js | 80 shift() { method in FixedCircularBuffer 108 shift() { method in module.exports
|
| /third_party/node/deps/undici/src/lib/node/ |
| D | fixed-queue.js | 80 shift() { method in FixedCircularBuffer 108 shift() { method in module.exports
|
| /third_party/ffmpeg/libavfilter/x86/ |
| D | vf_noise.c | 30 int len, const int8_t * const *shift) in line_noise_avg_mmx() 73 const int8_t *noise, int len, int shift) in line_noise_mmxext()
|
| /third_party/node/deps/openssl/openssl/ssl/record/ |
| D | dtls1_bitmap.c | 41 unsigned int shift; in dtls1_record_replay_check() local 62 unsigned int shift; in dtls1_record_bitmap_update() local
|
| /third_party/openssl/ssl/record/ |
| D | dtls1_bitmap.c | 41 unsigned int shift; in dtls1_record_replay_check() local 62 unsigned int shift; in dtls1_record_bitmap_update() local
|
| /third_party/ffmpeg/tools/ |
| D | scale_slice_test.c | 85 int shift = (j == 1 || j == 2) ? pd->v_shift_src : 0; in process_frame() local 99 int shift = (i == 1 || i == 2) ? pd->v_shift_dst : 0; in process_frame() local 166 int shift = (j == 1 || j == 2) ? pd.v_shift_dst : 0; in main() local
|
| /third_party/node/deps/v8/src/bigint/ |
| D | div-helpers.cc | 25 void LeftShift(RWDigits Z, Digits X, int shift) { in LeftShift() 47 void RightShift(RWDigits Z, Digits X, int shift) { in RightShift()
|
| /third_party/vixl/test/aarch64/ |
| D | test-fuzz-aarch64.cc | 41 static void FuzzHelper(std::string mode, int step_size, int offset, int shift) { in FuzzHelper() 72 #define FUZZ_SHARD(mode, step, i, shift) \ argument
|
| /third_party/skia/third_party/externals/freetype/src/base/ |
| D | fttrigon.c | 136 FT_Int shift; in ft_trig_prenorm() local 380 FT_Int shift; in FT_Vector_Rotate() local 419 FT_Int shift; in FT_Vector_Length() local 458 FT_Int shift; in FT_Vector_Polarize() local
|
| /third_party/node/deps/v8/src/base/ |
| D | bits.h | 215 inline constexpr uint32_t RotateRight32(uint32_t value, uint32_t shift) { in RotateRight32() 220 inline constexpr uint32_t RotateLeft32(uint32_t value, uint32_t shift) { in RotateLeft32() 225 inline constexpr uint64_t RotateRight64(uint64_t value, uint64_t shift) { in RotateRight64() 230 inline constexpr uint64_t RotateLeft64(uint64_t value, uint64_t shift) { in RotateLeft64()
|
| /third_party/skia/src/codec/ |
| D | SkMasks.cpp | 61 static uint8_t get_comp(uint32_t pixel, uint32_t mask, uint32_t shift, in get_comp() 92 uint32_t shift = 0; in process_mask() local
|
| /third_party/ffmpeg/libavutil/ |
| D | colorspace.h | 102 #define RGB_TO_U_CCIR(r1, g1, b1, shift)\ argument 106 #define RGB_TO_V_CCIR(r1, g1, b1, shift)\ argument 130 #define RGB_TO_U_BT709(r1, g1, b1, shift)\ argument 134 #define RGB_TO_V_BT709(r1, g1, b1, shift)\ argument
|