/external/libopus/silk/ |
D | SigProc_FIX.h | 469 #define silk_LSHIFT8(a, shift) ((opus_int8)((opus_uint8)(a)<<(shift))) /* shif… argument 470 #define silk_LSHIFT16(a, shift) ((opus_int16)((opus_uint16)(a)<<(shift))) /* shif… argument 471 #define silk_LSHIFT32(a, shift) ((opus_int32)((opus_uint32)(a)<<(shift))) /* shif… argument 472 #define silk_LSHIFT64(a, shift) ((opus_int64)((opus_uint64)(a)<<(shift))) /* shif… argument 473 #define silk_LSHIFT(a, shift) silk_LSHIFT32(a, shift) /* shif… argument 475 #define silk_RSHIFT8(a, shift) ((a)>>(shift)) /* shif… argument 476 #define silk_RSHIFT16(a, shift) ((a)>>(shift)) /* shif… argument 477 #define silk_RSHIFT32(a, shift) ((a)>>(shift)) /* shif… argument 478 #define silk_RSHIFT64(a, shift) ((a)>>(shift)) /* shif… argument 479 #define silk_RSHIFT(a, shift) silk_RSHIFT32(a, shift) /* shif… argument [all …]
|
D | MacroCount.h | 331 static OPUS_INLINE opus_int8 silk_LSHIFT8(opus_int8 a, opus_int32 shift){ in silk_LSHIFT8() 338 static OPUS_INLINE opus_int16 silk_LSHIFT16(opus_int16 a, opus_int32 shift){ in silk_LSHIFT16() 345 static OPUS_INLINE opus_int32 silk_LSHIFT32(opus_int32 a, opus_int32 shift){ in silk_LSHIFT32() 352 static OPUS_INLINE opus_int64 silk_LSHIFT64(opus_int64 a, opus_int shift){ in silk_LSHIFT64() 358 static OPUS_INLINE opus_int32 silk_LSHIFT_ovflw(opus_int32 a, opus_int32 shift){ in silk_LSHIFT_ovflw() 364 static OPUS_INLINE opus_uint32 silk_LSHIFT_uint(opus_uint32 a, opus_int32 shift){ in silk_LSHIFT_uint() 372 static OPUS_INLINE opus_int8 silk_RSHIFT8(opus_int8 a, opus_int32 shift){ in silk_RSHIFT8() 377 static OPUS_INLINE opus_int16 silk_RSHIFT16(opus_int16 a, opus_int32 shift){ in silk_RSHIFT16() 382 static OPUS_INLINE opus_int32 silk_RSHIFT32(opus_int32 a, opus_int32 shift){ in silk_RSHIFT32() 387 static OPUS_INLINE opus_int64 silk_RSHIFT64(opus_int64 a, opus_int64 shift){ in silk_RSHIFT64() [all …]
|
D | MacroDebug.h | 547 static OPUS_INLINE opus_int8 silk_LSHIFT8_(opus_int8 a, opus_int32 shift, char *file, int line){ in silk_LSHIFT8_() 566 static OPUS_INLINE opus_int16 silk_LSHIFT16_(opus_int16 a, opus_int32 shift, char *file, int line){ in silk_LSHIFT16_() 585 static OPUS_INLINE opus_int32 silk_LSHIFT32_(opus_int32 a, opus_int32 shift, char *file, int line){ in silk_LSHIFT32_() 604 static OPUS_INLINE opus_int64 silk_LSHIFT64_(opus_int64 a, opus_int shift, char *file, int line){ in silk_LSHIFT64_() 623 static OPUS_INLINE opus_int32 silk_LSHIFT_ovflw_(opus_int32 a, opus_int32 shift, char *file, int li… in silk_LSHIFT_ovflw_() 636 static OPUS_INLINE opus_uint32 silk_LSHIFT_uint_(opus_uint32 a, opus_int32 shift, char *file, int l… in silk_LSHIFT_uint_() 651 static OPUS_INLINE opus_int8 silk_RSHIFT8_(opus_int8 a, opus_int32 shift, char *file, int line){ in silk_RSHIFT8_() 664 static OPUS_INLINE opus_int16 silk_RSHIFT16_(opus_int16 a, opus_int32 shift, char *file, int line){ in silk_RSHIFT16_() 677 static OPUS_INLINE opus_int32 silk_RSHIFT32_(opus_int32 a, opus_int32 shift, char *file, int line){ in silk_RSHIFT32_() 690 static OPUS_INLINE opus_int64 silk_RSHIFT64_(opus_int64 a, opus_int64 shift, char *file, int line){ in silk_RSHIFT64_() [all …]
|
/external/libhevc/decoder/ |
D | ihevcd_boundary_strength.c | 315 WORD32 shift; in ihevcd_ctb_boundary_strength_islice() local 328 WORD32 shift; in ihevcd_ctb_boundary_strength_islice() local 601 WORD32 shift; in ihevcd_ctb_boundary_strength_pbslice() local 614 WORD32 shift; in ihevcd_ctb_boundary_strength_pbslice() local 635 WORD32 shift; in ihevcd_ctb_boundary_strength_pbslice() local 648 WORD32 shift; in ihevcd_ctb_boundary_strength_pbslice() local 663 WORD32 shift; in ihevcd_ctb_boundary_strength_pbslice() local 679 WORD32 shift; in ihevcd_ctb_boundary_strength_pbslice() local 745 WORD32 shift; in ihevcd_ctb_boundary_strength_pbslice() local 761 WORD32 shift; in ihevcd_ctb_boundary_strength_pbslice() local [all …]
|
/external/speex/libspeex/ |
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 | 165 #define SHR16(a,shift) (a) argument 166 #define SHL16(a,shift) (a) argument 167 #define SHR32(a,shift) (a) argument 168 #define SHL32(a,shift) (a) argument 169 #define PSHR16(a,shift) (a) argument 170 #define PSHR32(a,shift) (a) argument 171 #define VSHR32(a,shift) (a) argument 174 #define SATURATE32PSHR(x,shift,a) (x) argument 176 #define PSHR(a,shift) (a) argument 177 #define SHR(a,shift) (a) argument [all …]
|
D | fixed_debug.h | 103 #define SHR16(a, shift) _SHR16(a, shift, __FILE__, __LINE__) argument 104 static inline short _SHR16(int a, int shift, char *file, int line) in _SHR16() 117 #define SHL16(a, shift) _SHL16(a, shift, __FILE__, __LINE__) argument 118 static inline short _SHL16(int a, int shift, char *file, int line) in _SHL16() 132 static inline int SHR32(long long a, int shift) in SHR32() 147 static inline int SHL32(long long a, int shift) in SHL32() 163 #define PSHR16(a,shift) (SHR16(ADD16((a),((1<<((shift))>>1))),shift)) argument 164 #define PSHR32(a,shift) (SHR32(ADD32((a),((EXTEND32(1)<<((shift))>>1))),shift)) argument 165 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift))) argument
|
/external/libopus/celt/ |
D | fixed_generic.h | 68 #define SHR16(a,shift) ((a) >> (shift)) argument 70 #define SHL16(a,shift) ((opus_int16)((opus_uint16)(a)<<(shift))) argument 72 #define SHR32(a,shift) ((a) >> (shift)) argument 74 #define SHL32(a,shift) ((opus_int32)((opus_uint32)(a)<<(shift))) argument 77 #define PSHR32(a,shift) (SHR32((a)+((EXTEND32(1)<<((shift))>>1)),shift)) argument 79 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift))) argument 82 #define SHR(a,shift) ((a) >> (shift)) argument 83 #define SHL(a,shift) SHL32(a,shift) argument 84 #define PSHR(a,shift) (SHR((a)+((EXTEND32(1)<<((shift))>>1)),shift)) argument
|
D | arch.h | 156 #define SHR16(a,shift) (a) argument 157 #define SHL16(a,shift) (a) argument 158 #define SHR32(a,shift) (a) argument 159 #define SHL32(a,shift) (a) argument 160 #define PSHR32(a,shift) (a) argument 161 #define VSHR32(a,shift) (a) argument 163 #define PSHR(a,shift) (a) argument 164 #define SHR(a,shift) (a) argument 165 #define SHL(a,shift) (a) argument 169 #define ROUND16(a,shift) (a) argument
|
D | fixed_debug.h | 137 #define SHR16(a, shift) SHR16_(a, shift, __FILE__, __LINE__) argument 138 static OPUS_INLINE short SHR16_(int a, int shift, char *file, int line) in SHR16_() 159 #define SHL16(a, shift) SHL16_(a, shift, __FILE__, __LINE__) argument 160 static OPUS_INLINE short SHL16_(int a, int shift, char *file, int line) in SHL16_() 182 static OPUS_INLINE int SHR32(opus_int64 a, int shift) in SHR32() 203 #define SHL32(a, shift) SHL32_(a, shift, __FILE__, __LINE__) argument 204 static OPUS_INLINE int SHL32_(opus_int64 a, int shift, char *file, int line) in SHL32_() 226 #define PSHR32(a,shift) (celt_mips--,SHR32(ADD32((a),(((opus_val32)(1)<<((shift))>>1))),shift)) argument 227 #define VSHR32(a, shift) (((shift)>0) ? SHR32(a, shift) : SHL32(a, -(shift))) argument
|
/external/aac/libSBRdec/src/ |
D | transcendent.h | 128 int shift; in FDK_add_MantExp() local 166 int shift; in FDK_add_MantExp() local 215 int preShift, postShift, index, shift; in FDK_divide_MantExp() local 271 int preShift, postShift, index, shift; in FDK_divide_MantExp() local 347 int shift = result_e - *destScale; in FDK_sqrt_MantExp() local
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
D | indented_text.cc | 30 void IndentedText::AddBlockWithOffset(const IndentedText& block, size_t shift) { in AddBlockWithOffset() 40 void IndentedText::AddLineWithOffset(const std::string& line, size_t shift) { in AddLineWithOffset() 117 size_t shift = line.empty() ? 0 : member.second; in GetLines() local 124 void IndentedText::PushOffset(size_t shift) { in PushOffset()
|
/external/libhevc/common/ |
D | ihevc_weighted_pred.c | 112 WORD32 shift, in ihevc_weighted_pred_uni() 197 WORD32 shift, in ihevc_weighted_pred_chroma_uni() 302 WORD32 shift, in ihevc_weighted_pred_bi() 407 WORD32 shift, in ihevc_weighted_pred_chroma_bi() 502 WORD32 shift; in ihevc_weighted_pred_bi_default() local 585 WORD32 shift; in ihevc_weighted_pred_chroma_bi_default() local
|
/external/compiler-rt/lib/builtins/ |
D | floatunsisf.c | 37 const int shift = significandBits - exponent; in ARM_EABI_FNALIAS() local 40 const int shift = exponent - significandBits; in ARM_EABI_FNALIAS() local
|
D | floatsisf.c | 45 const int shift = significandBits - exponent; in ARM_EABI_FNALIAS() local 48 const int shift = exponent - significandBits; in ARM_EABI_FNALIAS() local
|
/external/v8/src/base/ |
D | bits.h | 163 inline uint32_t RotateRight32(uint32_t value, uint32_t shift) { in RotateRight32() 169 inline uint32_t RotateLeft32(uint32_t value, uint32_t shift) { in RotateLeft32() 175 inline uint64_t RotateRight64(uint64_t value, uint64_t shift) { in RotateRight64() 181 inline uint64_t RotateLeft64(uint64_t value, uint64_t shift) { in RotateLeft64()
|
/external/fio/lib/ |
D | ieee754.c | 14 int shift; in pack754() local 56 long long shift; in unpack754() local
|
/external/opencv3/modules/imgproc/src/ |
D | drawing.cpp | 1036 FillConvexPoly( Mat& img, const Point* v, int npts, const void* color, int line_type, int shift ) in FillConvexPoly() 1197 const void* color, int line_type, int shift, Point offset ) in CollectPolyEdges() 1558 int thickness, int line_type, int flags, int shift ) in ThickLine() 1637 int line_type, int shift ) in PolyLine() 1662 int thickness, int line_type, int shift ) in line() 1678 int thickness, int line_type, int shift, double tipLength) in arrowedLine() 1697 int lineType, int shift ) in rectangle() 1728 int lineType, int shift ) in rectangle() 1738 const Scalar& color, int thickness, int line_type, int shift ) in circle() 1766 const Scalar& color, int thickness, int line_type, int shift ) in ellipse() [all …]
|
/external/valgrind/none/tests/s390x/ |
D | dfp-2.c | 215 int *shift = (int *) amount; in sldt() local 231 int *shift = (int *) amount; in slxt() local 247 int *shift = (int *) amount; in srdt() local 263 int *shift = (int *) amount; in srxt() local
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_bld_depth.c | 356 unsigned *shift, unsigned *width, unsigned *mask) in get_z_shift_and_mask() 403 unsigned *shift, unsigned *mask) in get_s_shift_and_mask() 656 LLVMValueRef shift = lp_build_const_int_vec(gallivm, z_type, z_shift); in lp_build_depth_stencil_test() local 670 LLVMValueRef shift = lp_build_const_int_vec(gallivm, s_type, s_shift); in lp_build_depth_stencil_test() local 748 LLVMValueRef shift = lp_build_const_int_vec(gallivm, z_src_type, in lp_build_depth_stencil_test() local 819 LLVMValueRef shift = lp_build_const_int_vec(gallivm, z_type, z_shift); in lp_build_depth_stencil_test() local
|
/external/skia/src/images/ |
D | SkImageDecoder_libico.cpp | 319 int shift = 7 - (andPixelNo & 0x7); in onDecode() local 338 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors) in editPixelBit1() 367 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors) in editPixelBit4() 387 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors) in editPixelBit8() 397 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors) in editPixelBit24() 411 SkBitmap* bm, int alphaByte, int m, int shift, SkPMColor* colors) in editPixelBit32()
|
/external/pdfium/third_party/freetype/src/base/ |
D | fttrigon.c | 136 FT_Int shift; in ft_trig_prenorm() local 388 FT_Int shift; in FT_Vector_Rotate() local 427 FT_Int shift; in FT_Vector_Length() local 466 FT_Int shift; in FT_Vector_Polarize() local
|
/external/freetype/src/base/ |
D | fttrigon.c | 136 FT_Int shift; in ft_trig_prenorm() local 388 FT_Int shift; in FT_Vector_Rotate() local 427 FT_Int shift; in FT_Vector_Length() local 466 FT_Int shift; in FT_Vector_Polarize() local
|
/external/opencv3/samples/android/camera-calibration/src/org/opencv/samples/cameracalibration/ |
D | CalibrationResult.java | 32 int shift = CAMERA_MATRIX_ROWS * CAMERA_MATRIX_COLS; in save() local 60 int shift = CAMERA_MATRIX_ROWS * CAMERA_MATRIX_COLS; in tryLoad() local
|
/external/skia/src/core/ |
D | SkEdge.cpp | 35 int shift) { in setLine() 176 int SkQuadraticEdge::setQuadratic(const SkPoint pts[3], int shift) in setQuadratic() 282 int shift = fCurveShift; in updateQuadratic() local 335 int SkCubicEdge::setCubic(const SkPoint pts[4], int shift) { in setCubic()
|