/external/libopus/silk/ |
D | decode_indices.c | 43 opus_int i, k, Ix; in silk_decode_indices() local 52 Ix = ec_dec_icdf( psRangeDec, silk_type_offset_VAD_iCDF, 8 ) + 2; in silk_decode_indices() 54 Ix = ec_dec_icdf( psRangeDec, silk_type_offset_no_VAD_iCDF, 8 ); in silk_decode_indices() 56 psDec->indices.signalType = (opus_int8)silk_RSHIFT( Ix, 1 ); in silk_decode_indices() 57 psDec->indices.quantOffsetType = (opus_int8)( Ix & 1 ); in silk_decode_indices() 84 Ix = ec_dec_icdf( psRangeDec, &psDec->psNLSF_CB->ec_iCDF[ ec_ix[ i ] ], 8 ); in silk_decode_indices() 85 if( Ix == 0 ) { in silk_decode_indices() 86 Ix -= ec_dec_icdf( psRangeDec, silk_NLSF_EXT_iCDF, 8 ); in silk_decode_indices() 87 } else if( Ix == 2 * NLSF_QUANT_MAX_AMPLITUDE ) { in silk_decode_indices() 88 Ix += ec_dec_icdf( psRangeDec, silk_NLSF_EXT_iCDF, 8 ); in silk_decode_indices() [all …]
|
D | decode_parameters.c | 41 opus_int i, k, Ix; in silk_decode_parameters() local 98 Ix = psDec->indices.LTPIndex[ k ]; in silk_decode_parameters() 100 … psDecCtrl->LTPCoef_Q14[ k * LTP_ORDER + i ] = silk_LSHIFT( cbk_ptr_Q7[ Ix * LTP_ORDER + i ], 7 ); in silk_decode_parameters() 107 Ix = psDec->indices.LTP_scaleIndex; in silk_decode_parameters() 108 psDecCtrl->LTP_scale_Q14 = silk_LTPScales_table_Q14[ Ix ]; in silk_decode_parameters()
|
/external/libvpx/libvpx/tools/3D-Reconstruction/MotionEST/ |
D | HornSchunck.py | 30 self.Ix, self.Iy, self.It = self.intensityDiff() 55 Ix = np.zeros((self.num_row, self.num_col)) 69 Ix[i, j] += ( 73 Ix[i, j] /= count 97 return Ix, Iy, It 129 denom = self.alpha**2 + np.power(self.Ix, 2) + np.power(self.Iy, 2) 132 self.mf[:, :, 1] = avg[:, :, 1] - self.Ix * ( 133 self.Ix * avg[:, :, 1] + self.Iy * avg[:, :, 0] + self.It) / denom 135 self.Ix * avg[:, :, 1] + self.Iy * avg[:, :, 0] + self.It) / denom 151 b[u_idx, 0] = -self.Ix[i, j] * self.It[i, j] [all …]
|
D | Anandan.py | 72 Ix = I[i][j + 1] - I[i][j] 75 h12 += Ix * Iy 76 h21 += Ix * Iy 77 h22 += Ix * Ix
|
D | Exhaust.py | 183 Ix = self.cur_yuv[oy, ox + 1, 0] - self.cur_yuv[oy, ox, 0] 185 IxIx += Ix * Ix 187 IxIy += Ix * Iy
|
/external/python/pybind11/tests/ |
D | test_numpy_array.cpp | 82 template<typename... Ix> arr data(const arr& a, Ix... index) { in data() 86 template<typename... Ix> arr data_t(const arr_t& a, Ix... index) { in data_t() 90 template<typename... Ix> arr& mutate_data(arr& a, Ix... index) { in mutate_data() 97 template<typename... Ix> arr_t& mutate_data_t(arr_t& a, Ix... index) { in mutate_data_t() 104 template<typename... Ix> py::ssize_t index_at(const arr& a, Ix... idx) { return a.index_at(idx...);… in index_at() 105 template<typename... Ix> py::ssize_t index_at_t(const arr_t& a, Ix... idx) { return a.index_at(idx.… in index_at_t() 106 template<typename... Ix> py::ssize_t offset_at(const arr& a, Ix... idx) { return a.offset_at(idx...… in offset_at() 107 template<typename... Ix> py::ssize_t offset_at_t(const arr_t& a, Ix... idx) { return a.offset_at(id… in offset_at_t() 108 template<typename... Ix> py::ssize_t at_t(const arr_t& a, Ix... idx) { return a.at(idx...); } in at_t() 109 template<typename... Ix> arr_t& mutate_at_t(arr_t& a, Ix... idx) { a.mutable_at(idx...)++; return a… in mutate_at_t()
|
/external/Reactive-Extensions/RxCpp/ |
D | AUTHORS.txt | 3 Rx and Ix.NET: 17 Rx.js and Ix.js: 39 Rx++ and Ix++:
|
/external/python/pybind11/include/pybind11/ |
D | numpy.h | 341 template <ssize_t Dim = 0, typename Strides, typename... Ix> 342 ssize_t byte_offset_unsafe(const Strides &strides, ssize_t i, Ix... index) { 383 template <typename... Ix> const T &operator()(Ix... index) const { 384 static_assert(ssize_t{sizeof...(Ix)} == Dims || Dynamic, 396 template <typename... Ix> const T *data(Ix... ix) const { return &operator()(ssize_t(ix)...); } 436 template <typename... Ix> T& operator()(Ix... index) { 437 static_assert(ssize_t{sizeof...(Ix)} == Dims || Dynamic, 450 template <typename... Ix> T *mutable_data(Ix... ix) { return &operator()(ssize_t(ix)...); } 704 template<typename... Ix> const void* data(Ix... index) const { 711 template<typename... Ix> void* mutable_data(Ix... index) { [all …]
|
/external/icu/icu4c/source/common/ |
D | ucnv_lmb.cpp | 674 ulmbcs_byte_t Ix; in _LMBCSClose() local 677 for (Ix=0; Ix <= ULMBCS_GRP_LAST; Ix++) in _LMBCSClose() 679 if (extraInfo->OptGrpConverter[Ix] != NULL) in _LMBCSClose() 680 ucnv_unloadSharedDataIfReady(extraInfo->OptGrpConverter[Ix]); in _LMBCSClose()
|
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/win_text/ |
D | CMakeLists.txt | 39 include_directories(${RXCPP_DIR}/Ix/CPP/src ${RXCPP_DIR}/Rx/v2/src)
|
/external/Reactive-Extensions/RxCpp/projects/CMake/ |
D | shared.cmake | 69 set(IX_SRC_DIR ${RXCPP_DIR}/Ix/CPP/src)
|
/external/pcre/dist2/testdata/ |
D | testinput8 | 20 /#/Ix 22 /a#/Ix
|
D | testinput2 | 601 /Ix 618 /\( (?: (?>[^()]+) | (?R) ) \) /Ix 626 /\( (?: (?>[^()]+) | (?R) )? \) /Ix 630 /\( ( (?>[^()]+) | (?R) )* \) /Ix 633 /\( ( ( (?>[^()]+) | (?R) )* ) \) /Ix 636 /\( (123)? ( ( (?>[^()]+) | (?R) )* ) \) /Ix 640 /\( ( (123)? ( (?>[^()]+) | (?R) )* ) \) /Ix 644 /\( (((((((((( ( (?>[^()]+) | (?R) )* )))))))))) \) /Ix 647 /\( ( ( (?>[^()<>]+) | ((?>[^()]+)) | (?R) )* ) \) /Ix 650 /\( ( ( (?>[^()]+) | ((?R)) )* ) \) /Ix [all …]
|
D | testoutput8-32-2 | 63 /#/Ix 75 /a#/Ix
|
D | testoutput8-16-4 | 63 /#/Ix 75 /a#/Ix
|
D | testoutput8-8-4 | 63 /#/Ix 75 /a#/Ix
|
D | testoutput8-8-3 | 63 /#/Ix 75 /a#/Ix
|
D | testoutput8-16-3 | 63 /#/Ix 75 /a#/Ix
|
D | testoutput8-32-4 | 63 /#/Ix 75 /a#/Ix
|
/external/llvm/lib/Target/X86/AsmParser/ |
D | X86AsmInstrumentation.cpp | 414 for (unsigned Ix = 0; Ix < Operands.size(); ++Ix) { in InstrumentMOV() local 415 assert(Operands[Ix]); in InstrumentMOV() 416 MCParsedAsmOperand &Op = *Operands[Ix]; in InstrumentMOV()
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 1575 unsigned Ix = 0, EIx = layout.size(); in all_declared_ivar_begin() local 1577 data().IvarList = layout[0].Ivar; Ix++; in all_declared_ivar_begin() 1580 for ( ; Ix != EIx; curIvar = layout[Ix].Ivar, Ix++) in all_declared_ivar_begin() 1581 curIvar->setNextIvar(layout[Ix].Ivar); in all_declared_ivar_begin()
|
/external/skia/include/private/ |
D | SkVx.h | 492 template <int... Ix, int N, typename T> 493 SI Vec<sizeof...(Ix),T> shuffle(const Vec<N,T>& x) { 496 return to_vec<sizeof...(Ix),T>(__builtin_shufflevector(to_vext(x), to_vext(x), Ix...)); 498 return { x[Ix]... };
|
D | SkNx.h | 363 template <int... Ix, int N, typename T> 364 AI static SkNx<sizeof...(Ix),T> SkNx_shuffle(const SkNx<N,T>& v) { 365 return { v[Ix]... };
|
/external/llvm-project/clang/lib/AST/ |
D | DeclObjC.cpp | 1682 unsigned Ix = 0, EIx = layout.size(); in all_declared_ivar_begin() local 1684 data().IvarList = layout[0].Ivar; Ix++; in all_declared_ivar_begin() 1687 for ( ; Ix != EIx; curIvar = layout[Ix].Ivar, Ix++) in all_declared_ivar_begin() 1688 curIvar->setNextIvar(layout[Ix].Ivar); in all_declared_ivar_begin()
|
/external/skqp/include/private/ |
D | SkNx.h | 367 template <int... Ix, int N, typename T> 368 AI static SkNx<sizeof...(Ix),T> SkNx_shuffle(const SkNx<N,T>& v) { 369 return { v[Ix]... };
|