HomeSort by relevance Sort by last modified time
    Searched refs:bb (Results 151 - 175 of 636) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
message_test.py 356 message.repeated_string.append('bb')
360 self.assertEqual(message.repeated_string[1], 'bb')
367 message.repeated_nested_message.add().bb = 1
368 message.repeated_nested_message.add().bb = 3
369 message.repeated_nested_message.add().bb = 2
370 message.repeated_nested_message.add().bb = 6
371 message.repeated_nested_message.add().bb = 5
372 message.repeated_nested_message.add().bb = 4
373 message.repeated_nested_message.sort(lambda x,y: cmp(x.bb, y.bb))
    [all...]
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
mat2d.js 157 ba = b[0], bb = b[1], bc = b[2], bd = b[3],
161 out[1] = aa*bb + ab*bd;
163 out[3] = ac*bb + ad*bd;
165 out[5] = bb*atx + bd*aty + bty;
  /external/clang/test/CXX/special/class.inhctor/
elsewhere.cpp 38 B<bool> bb; variable
  /libcore/luni/src/main/java/java/nio/
ByteBufferAsCharBuffer.java 77 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); local
78 ByteBufferAsCharBuffer buf = new ByteBufferAsCharBuffer(bb);
172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); local
173 CharBuffer result = new ByteBufferAsCharBuffer(bb);
ByteBufferAsDoubleBuffer.java 77 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); local
78 ByteBufferAsDoubleBuffer buf = new ByteBufferAsDoubleBuffer(bb);
172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); local
173 DoubleBuffer result = new ByteBufferAsDoubleBuffer(bb);
ByteBufferAsFloatBuffer.java 76 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); local
77 ByteBufferAsFloatBuffer buf = new ByteBufferAsFloatBuffer(bb);
171 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); local
172 FloatBuffer result = new ByteBufferAsFloatBuffer(bb);
ByteBufferAsIntBuffer.java 77 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); local
78 ByteBufferAsIntBuffer buf = new ByteBufferAsIntBuffer(bb);
172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); local
173 IntBuffer result = new ByteBufferAsIntBuffer(bb);
ByteBufferAsLongBuffer.java 77 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); local
78 ByteBufferAsLongBuffer buf = new ByteBufferAsLongBuffer(bb);
172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); local
173 LongBuffer result = new ByteBufferAsLongBuffer(bb);
ByteBufferAsShortBuffer.java 76 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order()); local
77 ByteBufferAsShortBuffer buf = new ByteBufferAsShortBuffer(bb);
171 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order()); local
172 ShortBuffer result = new ByteBufferAsShortBuffer(bb);
  /libcore/luni/src/test/java/libcore/java/nio/charset/
Charset_TestGenerator.java 223 ByteBuffer bb = encoder.encode(cb); local
224 // bb.rewind();
225 while (bb.hasRemaining()) {
226 out.consume(bb.get());
234 static void genDecoded (Charset charset, ByteBuffer bb) {
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
MacSpiTest.java 176 byte[] bb = mSpi.engineDoFinal();
177 assertEquals(bb.length, 0);
203 bb = mSpi1.engineDoFinal();
204 assertEquals("Incorrect result of engineDoFinal", bb.length, beforeUp);
KeyAgreementSpiTest.java 98 byte[] bb = kaSpi.engineGenerateSecret();
99 assertEquals("Length is not 0", bb.length, 0);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
cfghooks.h 74 bool (*predicted_by_p) (const_basic_block bb, enum br_predictor predictor);
133 /* Given a condition BB extract the true/false taken/not taken edges
177 extern bool predicted_by_p (const_basic_block bb, enum br_predictor predictor);
180 extern bool block_ends_with_call_p (basic_block bb);
183 extern bool block_ends_with_condjump_p (const_basic_block bb);
  /external/chromium_org/v8/src/
hydrogen-bce.cc 198 HBasicBlock* bb,
206 basic_block_(bb),
334 // Eliminates checks in bb and recursively in the dominated blocks.
374 HBasicBlock* bb) {
377 for (HInstructionIterator it(bb); !it.Done(); it.Advance()) {
392 bb,
400 bb->block_id(), offset);
403 bb->graph()->isolate()->counters()->
410 } else if (data->BasicBlock() == bb) {
412 // if (data->Basicblock() == bb ||
    [all...]
  /art/compiler/dex/
mir_dataflow.cc 594 // BB ADD_LONG_2ADDR vA, vB
926 bool MIRGraph::FindLocalLiveIn(BasicBlock* bb) {
930 if (bb->data_flow_info == NULL) return false;
932 use_v = bb->data_flow_info->use_v =
934 def_v = bb->data_flow_info->def_v =
936 live_in_v = bb->data_flow_info->live_in_v =
939 for (mir = bb->first_mir_insn; mir != NULL; mir = mir->next) {
1073 bool MIRGraph::DoSSAConversion(BasicBlock* bb) {
1076 if (bb->data_flow_info == NULL) return false;
1078 for (mir = bb->first_mir_insn; mir != NULL; mir = mir->next)
1249 BasicBlock* bb = iterator.Next(); local
    [all...]
  /external/apache-harmony/crypto/src/test/impl/java/org/apache/harmony/crypto/tests/javax/crypto/
SecretKeyFactory_Impl1Test.java 105 byte[] bb = new byte[10];
106 SecretKeySpec secKeySpec = new SecretKeySpec(bb, defaultAlgorithm);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
ChannelHelper.java 33 ByteBuffer bb = ((FileChannel) channel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) channel).position(), size); local
35 return bb;
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
ConstrainedConjGrad.h 146 Scalar bb = CINV.row(i).dot(z); local
147 if (bb > 0.0)
148 // FIXME: we should allow that: z += -bb * C.row(i);
150 z.coeffRef(it.index()) -= bb*it.value();
175 Scalar bb = C.row(i).dot(p) - f[i]; local
176 if (bb > 0.0)
177 lambda = (std::min)(lambda, (f.coeff(i)-C.row(i).dot(x)) / bb);
  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 188 /// each BasicBlock (the BB entry) it keeps a MemDepResult.
190 BasicBlock *BB;
193 NonLocalDepEntry(BasicBlock *bb, MemDepResult result)
194 : BB(bb), Result(result) {}
197 NonLocalDepEntry(BasicBlock *bb) : BB(bb) {}
199 // BB is the sort key, it can't be changed.
200 BasicBlock *getBB() const { return BB; }
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AbstractAppleMetaDataBox.java 109 ByteBuffer bb = ByteBuffer.allocate(content.length); local
111 IsoTypeWriter.writeUInt8(bb, (Byte.parseByte(value) & 0xFF));
113 IsoTypeWriter.writeUInt16(bb, Integer.parseInt(value));
115 IsoTypeWriter.writeUInt32(bb, Long.parseLong(value));
117 IsoTypeWriter.writeUInt64(bb, Long.parseLong(value));
121 appleDataBox.setData(bb.array());
  /external/valgrind/main/callgrind/
fn.c 483 static BB* exit_bb = 0;
487 * Attach function struct to a BB from debug info.
489 fn_node* CLG_(get_fn_node)(BB* bb)
496 /* fn from debug info is idempotent for a BB */
497 if (bb->fn) return bb->fn;
499 CLG_DEBUG(3,"+ get_fn_node(BB %#lx)\n", bb_addr(bb));
502 * the BB according to debug informatio
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
codegen_unittest.cc 345 BasicBlock* bb = bb_iter->second; local
346 SANDBOX_ASSERT(bb != NULL);
347 SANDBOX_ASSERT(bb->instructions.size() > 0);
348 Instruction* insn = bb->instructions[0];
351 for (Instructions::const_iterator insn_iter = bb->instructions.begin();;) {
353 if (++insn_iter != bb->instructions.end()) {
391 for (BasicBlock* bb = first_block;;) {
396 for (Instructions::const_iterator iter = bb->instructions.begin();
397 iter != bb->instructions.end();
410 edges[i].append(reinterpret_cast<char*>(&bb), sizeof(bb))
    [all...]
  /external/valgrind/main/VEX/
test_main.c 119 /* Run with default params. However, we can't allow bb chasing
121 to read code outside the initial BB we hand it. So when calling
144 /* first line is: . bb-number bb-addr n-bytes */
312 /* Set up BB */
313 IRSB* bb = emptyIRSB();
314 bb->tyenv = dopyIRTypeEnv(bb_in->tyenv);
315 bb->next = dopyIRExpr(bb_in->next);
316 bb->jumpkind = bb_in->jumpkind;
346 bb,
540 IRSB* bb; member in struct:_MCEnv
2607 IRSB* bb = emptyIRSB(); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_print.cpp 502 if (asFlow()->target.bb)
503 PRINT(" %sBB:%i", colour[TXT_BRA], asFlow()->target.bb->getId());
587 PrintPass::visit(BasicBlock *bb)
591 for (Graph::EdgeIterator ei = bb->cfg.incident(); !ei.end(); ei.next())
592 INFO(" <- BB:%i (%s)\n",
596 INFO("BB:%i (%u instructions) - ", bb->getId(), bb->getInsnCount());
598 if (bb->idom())
599 INFO("idom = BB:%i, ", bb->idom()->getId())
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_print.cpp 502 if (asFlow()->target.bb)
503 PRINT(" %sBB:%i", colour[TXT_BRA], asFlow()->target.bb->getId());
587 PrintPass::visit(BasicBlock *bb)
591 for (Graph::EdgeIterator ei = bb->cfg.incident(); !ei.end(); ei.next())
592 INFO(" <- BB:%i (%s)\n",
596 INFO("BB:%i (%u instructions) - ", bb->getId(), bb->getInsnCount());
598 if (bb->idom())
599 INFO("idom = BB:%i, ", bb->idom()->getId())
    [all...]

Completed in 3130 milliseconds

1 2 3 4 5 67 8 91011>>