Home
last modified time | relevance | path

Searched refs:bj (Results 1 – 25 of 274) sorted by relevance

1234567891011

/external/eigen/unsupported/Eigen/src/SparseExtra/
DBlockSparseMatrix.h415 for(StorageIndex bj = 0; bj < m_outerBSize; ++bj)
419 blockPattern.startVec(bj);
420 for(StorageIndex j = blockOuterIndex(bj); j < blockOuterIndex(bj+1); ++j)
430 blockPattern.insertBackByOuterInnerUnordered(bj, bi) = true;
432 m_nonzeros += blockOuterSize(bj) * blockInnerSize(bi);
443 for(StorageIndex bj = 0; bj < m_outerBSize; ++bj)
446 for(StorageIndex j = blockOuterIndex(bj); j < blockOuterIndex(bj+1); ++j)
455 while(bi > m_indices[m_outerIndex[bj]+idx]) ++idx; // Not expensive for ordered blocks
460 idxVal = m_blockPtr[m_outerIndex[bj]+idx];
462 … idxVal += (j - blockOuterIndex(bj)) * blockOuterSize(bj) + it_spmat.index() - m_innerOffset[bi];
[all …]
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
Dfft.c281 REAL s1, s2, s3, sd, bb, bj, bk, bjm, bjp, bkm, bkp; in FFTRADIX() local
575 bj = Im [k1] + Im [k2]; in FFTRADIX()
577 Im [kk] = bk + bj; in FFTRADIX()
579 bk -= 0.5 * bj; in FFTRADIX()
581 bj = (Im [k1] - Im [k2]) * s60; in FFTRADIX()
582 Re [k1] = ak - bj; in FFTRADIX()
583 Re [k2] = ak + bj; in FFTRADIX()
616 bj = bkm * s72 + bjm * s2; in FFTRADIX()
617 Re [k1] = ak - bj; in FFTRADIX()
618 Re [k4] = ak + bj; in FFTRADIX()
[all …]
/external/pdfium/third_party/libopenjpeg20/
D0003-dwt-decode.patch161 bj = (OPJ_INT32*)opj_malloc(l_data_size);
162 /* l_data_size is equal to 0 when numresolutions == 1 but bj is not used */
165 bj[k] = aj[k * w];
168 - (*p_function)(bj, dn, sn, cas_col);
169 + (*p_function) (bj, l_data_count, dn, sn, cas_col);
171 opj_dwt_deinterleave_v(bj, aj, dn, sn, w, cas_col);
175 bj[k] = aj[k];
177 - (*p_function)(bj, dn, sn, cas_row);
178 + (*p_function) (bj, l_data_count, dn, sn, cas_row);
179 opj_dwt_deinterleave_h(bj, aj, dn, sn, cas_row);
Ddwt.c1122 OPJ_INT32 *bj = 00; in opj_dwt_encode_procedure() local
1147 bj = (OPJ_INT32*)opj_malloc(l_data_size); in opj_dwt_encode_procedure()
1150 if (l_data_size != 0 && ! bj) { in opj_dwt_encode_procedure()
1175 bj[k] = aj[k * w]; in opj_dwt_encode_procedure()
1178 (*p_function) (bj, l_data_count, dn, sn, cas_col); in opj_dwt_encode_procedure()
1180 opj_dwt_deinterleave_v(bj, aj, dn, sn, w, cas_col); in opj_dwt_encode_procedure()
1189 bj[k] = aj[k]; in opj_dwt_encode_procedure()
1191 (*p_function) (bj, l_data_count, dn, sn, cas_row); in opj_dwt_encode_procedure()
1192 opj_dwt_deinterleave_h(bj, aj, dn, sn, cas_row); in opj_dwt_encode_procedure()
1200 opj_free(bj); in opj_dwt_encode_procedure()
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
DBoundSet.java78 Bound bj = bounds.get(j); in findPairSameAs() local
79 if (bj instanceof SameAsBound) { in findPairSameAs()
80 SameAsBound sj = (SameAsBound)bj; in findPairSameAs()
107 Bound bj = bounds.get(j); in forEachPairSameAs() local
108 if (bj instanceof SameAsBound) { in forEachPairSameAs()
109 SameAsBound sj = (SameAsBound)bj; in forEachPairSameAs()
125 Bound bj = bounds.get(j); in forEachPairSameAndSubtype() local
126 if (bj instanceof SubtypeOfBound) { in forEachPairSameAndSubtype()
127 SubtypeOfBound sj = (SubtypeOfBound)bj; in forEachPairSameAndSubtype()
143 Bound bj = bounds.get(j); in forEachPairSubtypeAndSubtype() local
[all …]
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_Conj.pbtxt7 complex numbers in `input` must be of the form \\(a + bj\\), where *a* is the
10 The complex conjugate returned by this operation is of the form \\(a - bj\\).
Dapi_def_ComplexAbs.pbtxt7 elements in `x` must be complex numbers of the form \\(a + bj\\). The absolute
Dapi_def_Real.pbtxt7 `input` must be complex numbers of the form \\(a + bj\\), where *a* is the real
Dapi_def_Imag.pbtxt7 elements in `input` must be complex numbers of the form \\(a + bj\\), where *a*
Dapi_def_Complex.pbtxt7 operation returns complex numbers elementwise of the form \\(a + bj\\), where
Dapi_def_Angle.pbtxt7 `input` must be complex numbers of the form \\(a + bj\\), where *a*
/external/python/cpython2/Lib/
Ddifflib.py562 for ai, bj, size in self.get_matching_blocks():
569 if i < ai and j < bj:
573 elif j < bj:
576 answer.append( (tag, i, ai, j, bj) )
577 i, j = ai+size, bj+size
581 answer.append( ('equal', ai, i, bj, j) )
972 bj = b[j]
973 cruncher.set_seq2(bj)
976 if ai == bj:
/external/Reactive-Extensions/RxCpp/Ix/CPP/
D.gitignore7 [Oo]bj/
94 [Oo]bj
/external/python/cpython3/Lib/
Ddifflib.py550 for ai, bj, size in self.get_matching_blocks():
557 if i < ai and j < bj:
561 elif j < bj:
564 answer.append( (tag, i, ai, j, bj) )
565 i, j = ai+size, bj+size
569 answer.append( ('equal', ai, i, bj, j) )
957 bj = b[j]
958 cruncher.set_seq2(bj)
961 if ai == bj:
/external/grpc-grpc/examples/csharp/HelloworldXamarin/
D.gitignore5 [Oo]bj/
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Dbaabdd360852098b7997da81850fd3c7.00002112.honggfuzz.cov9 � � �RPUT/z��A�u���\ ��BTTO<bj��:��$w��_(�[�sS*/*�z��Қ��WS7� � �����…
Da7162f05730110058af103168d57e307.00002112.honggfuzz.cov9 � � �RPUT/z��A�u���\ ��BTTO<bj��:��$w��_(�[�sS*/*�z��Қ��WS7� � �����…
/external/cldr/tools/java/org/unicode/cldr/util/data/transforms/
Den-IPA-spellout.txt27 [Ww] > dəbjə ;
/external/clang/test/CodeGenCXX/
Ddynamic-cast-hint.cpp49 volatile J *bj = dynamic_cast<J *>(b); in test() local
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/
Dja-t-cs-fonipa.txt9 bjɛlorusko ビェロルスコ
200 zaːbjɛɦlɪt͡sɛ ザービェフリツェ
/external/mesa3d/src/mesa/main/
Dmipmap.c129 const GLfloat bj = _mesa_half_to_float(rowB[j][e]); \
135 dst[i][e] = _mesa_float_to_half((aj + ak + bj + bk + cj + ck + dj + dk) \
416 GLfloat aj, ak, bj, bk; in do_row() local
419 bj = _mesa_half_to_float(rowB[j][comp]); in do_row()
421 dst[i][comp] = _mesa_float_to_half((aj + ak + bj + bk) * 0.25F); in do_row()
433 GLfloat aj, ak, bj, bk; in do_row() local
436 bj = _mesa_half_to_float(rowB[j][comp]); in do_row()
438 dst[i][comp] = _mesa_float_to_half((aj + ak + bj + bk) * 0.25F); in do_row()
450 GLfloat aj, ak, bj, bk; in do_row() local
453 bj = _mesa_half_to_float(rowB[j][comp]); in do_row()
[all …]
/external/icu/icu4c/source/data/translit/
Ddsb_dsb_FONIPA.txt15 bj → bʲ ; # modern spelling
Dcs_FONIPA_ko.txt16 bj } $vowel → b ; # objɛc → obeti
Dvec_vec_FONIPA.txt30 {ps} {pɾ} {pɾw} {pl} {pj} {pw} {bɾ} {bɾw} {bw} {bj} {bl}
/external/Reactive-Extensions/RxCpp/
D.gitignore70 [Oo]bj

1234567891011