Searched refs:bi (Results 26 - 50 of 155) sorted by relevance

1234567

/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLocalVariableExtractor.java86 for (int bi = method.getEntryBlockIndex();
87 bi >= 0;
88 bi = workSet.nextSetBit(0)) {
89 workSet.clear(bi);
90 processBlock(bi);
H A DSsaConverter.java315 for (int bi = 0, s = ssaBlocks.size(); bi < s; bi++) {
316 SsaBasicBlock b = ssaBlocks.get(bi);
322 defsites[rs.getReg() - threshold].set(bi);
/external/jpeg/
H A Djcdctmgr.c191 JDIMENSION bi; local
195 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) {
229 register JCOEFPTR output_ptr = coef_blocks[bi];
281 JDIMENSION bi; local
285 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) {
320 register JCOEFPTR output_ptr = coef_blocks[bi];
[all...]
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jcdctmgr.c192 JDIMENSION bi; local
196 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) {
230 register JCOEFPTR output_ptr = coef_blocks[bi];
282 JDIMENSION bi; local
286 for (bi = 0; bi < num_blocks; bi++, start_col += DCTSIZE) {
321 register JCOEFPTR output_ptr = coef_blocks[bi];
[all...]
/external/eigen/Eigen/src/Core/
H A DStableNorm.h165 Index bi = internal::first_aligned(derived()); local
166 if (bi>0)
167 internal::stable_norm_kernel(this->head(bi), ssq, scale, invScale);
168 for (; bi<n; bi+=blockSize)
169 internal::stable_norm_kernel(this->segment(bi,(min)(blockSize, n - bi)).template forceAlignedAccessIf<Alignment>(), ssq, scale, invScale);
/external/libvorbis/vq/
H A Dmetrics.c263 int bi; local
266 for(bi=0;bi<books;bi++){
267 codebook *b=bs[bi];
273 base=process_one(b,bi,a+i,dim,n/dim,addmul[bi],base);
276 base=process_one(b,bi,a+i,dim,1,addmul[bi],base);
/external/mesa3d/src/mesa/main/
H A Dimports.h356 int ai, bi; local
362 __asm__ ("fstps %0" : "=m" (bi) : "t" (bf) : "st");
363 return (ai - bi) >> 1;
369 int ai, bi; local
376 u.f = (float) bf; bi = u.i;
377 return (ai - bi) >> 1;
403 int ai, bi; local
409 __asm__ ("fstps %0" : "=m" (bi) : "t" (bf) : "st");
410 return (ai - bi + 1) >> 1;
416 int ai, bi; local
[all...]
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
H A Dp13.cpp66 void bi(int[] ...);
/external/clang/test/CodeGenCXX/
H A Ddebug-info-template-explicit-specialization.cpp19 b<int> bi; variable
/external/icu/icu4c/source/test/intltest/
H A Drbbiapts.h96 void doBoundaryTest(BreakIterator& bi, UnicodeString& text, int32_t *boundaries);
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DCollectionUtilities.java266 Iterator bi = bb.iterator();
268 Comparable bo = (Comparable) bi.next();
275 if (!bi.hasNext()) return false;
276 bo = (Comparable) bi.next();
283 Iterator bi = bb.iterator();
285 Object bo = bi.next();
292 if (!bi.hasNext()) return false;
293 bo = bi.next();
319 Iterator bi = bb.iterator();
321 Comparable bo = (Comparable) bi
[all...]
/external/lldb/source/Expression/
H A DASTStructExtractor.cpp75 for (CompoundStmt::const_body_iterator bi = body_compound_stmt->body_begin(), be = body_compound_stmt->body_end();
76 bi != be;
77 ++bi)
79 Stmt *curr_stmt = *bi;
/external/icu/icu4c/source/i18n/unicode/
H A Dfieldpos.h217 * @param bi the new value of the begin index
220 void setBeginIndex(int32_t bi) { fBeginIndex = bi; } argument
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Ddwt.c245 OPJ_INT32 *bi = h->mem + h->cas; local
248 *bi = *(ai++);
249 bi += 2;
252 bi = h->mem + 1 - h->cas;
255 *bi = *(ai++);
256 bi += 2;
265 OPJ_INT32 *bi = v->mem + v->cas; local
268 *bi = *ai;
269 bi += 2;
273 bi
617 OPJ_FLOAT32* restrict bi = (OPJ_FLOAT32*) (w->wavelet + w->cas); local
660 opj_v4_t* restrict bi = v->wavelet + v->cas; local
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
H A DBreakIteratorTest.java47 private void generalIteratorTest(BreakIterator bi, List<String> expectedResult) { argument
56 bi.setText(text);
58 List<String> nextResults = _testFirstAndNext(bi, text);
59 List<String> previousResults = _testLastAndPrevious(bi, text);
79 _testFollowing(bi, text, boundaries);
80 _testPreceding(bi, text, boundaries);
81 _testIsBoundary(bi, text, boundaries);
83 doMultipleSelectionTest(bi, text);
86 private List<String> _testFirstAndNext(BreakIterator bi, String text) { argument
87 int p = bi
112 _testLastAndPrevious(BreakIterator bi, String text) argument
192 _testFollowing(BreakIterator bi, String text, int[] boundaries) argument
207 _testPreceding(BreakIterator bi, String text, int[] boundaries) argument
222 _testIsBoundary(BreakIterator bi, String text, int[] boundaries) argument
[all...]
H A DRBBITestMonkey.java1646 * bi - the break iterator to use
1652 void RunMonkey(BreakIterator bi, RBBIMonkeyKind mk, String name, int seed, int numIterations) { argument
1695 // ((RuleBasedBreakIterator_New)bi).dump();
1776 bi.setText(testText.toString());
1777 for (i=bi.first(); i != BreakIterator.DONE; i=bi.next()) {
1792 for (i=bi.last(); i != BreakIterator.DONE; i=bi.previous()) {
1802 isBoundaryBreaks[i] = bi.isBoundary(i);
1809 breakPos = bi
[all...]
/external/skia/bench/
H A DSortBench.cpp77 const int bi = *(const int*)b; local
78 return ai < bi ? -1 : (ai > bi);
/external/eigen/bench/
H A Dbench_gemm.cpp93 void matlab_cplx_cplx(const M& ar, const M& ai, const M& br, const M& bi, M& cr, M& ci) argument
96 cr.noalias() -= ai * bi;
97 ci.noalias() += ar * bi;
101 void matlab_real_cplx(const M& a, const M& br, const M& bi, M& cr, M& ci) argument
104 ci.noalias() += a * bi;
232 M bi(p,n); bi.setRandom();
237 BENCH(t, tries, rep, matlab_cplx_cplx(ar,ai,br,bi,cr,ci));
245 M bi(p,n); bi
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocOverflowSecurityChecker.cpp238 for (CFGBlock::iterator bi = block->begin(), be = block->end();
239 bi != be; ++bi) {
240 if (Optional<CFGStmt> CS = bi->getAs<CFGStmt>()) {
/external/pdfium/third_party/bigint/
H A DBigUnsigned.hh106 * is zero and otherwise one more than the largest value of bi for
107 * which getBit(bi) returns true. */
109 /* Get the state of bit bi, which has value 2^bi. Bits beyond the
111 bool getBit(Index bi) const {
112 return (getBlock(bi / N) & (Blk(1) << (bi % N))) != 0;
114 /* Sets the state of bit bi to newBit. The number grows or shrinks as
116 void setBit(Index bi, bool newBit);
/external/jetty/src/java/org/eclipse/jetty/io/
H A DByteArrayBuffer.java170 int bi=b.putIndex();
174 byte b2 = b.peek(--bi);
200 int bi=b.putIndex();
207 byte b2 = b.peek(--bi);
221 byte b2 = barray[--bi];
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-jai.jar ... instr int i java.awt.image.BufferedImage bi java.awt.Graphics2D graphics } org/apache/tools/ant ...
/external/lzma/CPP/7zip/Archive/7z/
H A D7zHandler.cpp331 for (size_t bi = 0; bi < coder.Props.GetCapacity(); bi++)
333 if (bi > 5 && bi + 1 < coder.Props.GetCapacity())
339 AddHexToString(methodsString, coder.Props[bi]);
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_bb.cpp431 for (ArrayList::Iterator bi = allBBlocks.iterator(); !bi.end(); bi.next())
432 BasicBlock::get(bi)->liveSet.marker = false;
441 for (ArrayList::Iterator bi = allBBlocks.iterator(); !bi.end(); bi.next())
442 BasicBlock::get(bi)->liveSet.marker = false;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
H A DShaderUtils.java259 BufferedImage bi = new BufferedImage(128, 64, BufferedImage.TYPE_INT_ARGB);
260 Graphics2D g = bi.createGraphics();
262 bufferedImage = bi;
263 wr = bi.getRaster();

Completed in 1132 milliseconds

1234567