/external/clang/test/CodeGenCXX/ |
derived-to-base-conv.cpp | 62 void test1(Derived bb) { 68 test1_helper(bb);
|
/external/guava/guava-tests/test/com/google/common/hash/ |
HashCodesTest.java | 75 byte[] bb = new byte[hash.bits() / 8]; 76 hash.writeBytesTo(bb, 0, bb.length); 77 assertTrue(Arrays.equals(expected.bytes, bb)); 105 byte[] bb = new byte[bytes]; 106 hashCode.writeBytesTo(bb, 0, bb.length); 108 assertTrue(Arrays.equals(Arrays.copyOf(hashBytes, bytes), bb)); local
|
FunnelsTest.java | 55 @Override protected void process(ByteBuffer bb) { 56 while (bb.hasRemaining()) { 57 bb.get();
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/ |
ProfileLevelIndicationDescriptor.java | 35 public void parseDetail( ByteBuffer bb) throws IOException {
36 profileLevelIndicationIndex = IsoTypeReader.readUInt8(bb);
|
UnknownDescriptor.java | 28 public void parseDetail(ByteBuffer bb) throws IOException {
29 data = (ByteBuffer) bb.slice().limit(this.getSizeOfInstance());
|
/external/valgrind/main/none/tests/x86/ |
smc1.c | 75 void bb ( int x ) { cc(x); } function 78 void aa ( int x ) { bb(x); }
|
/libcore/luni/src/test/java/libcore/java/nio/ |
OldAndroidNIOTest.java | 201 ByteBuffer bb = b.slice(); local 202 checkBuffer(bb); 204 assertEquals(0, bb.position()); 205 assertEquals(4, bb.limit()); 206 assertEquals(4, bb.capacity()); 208 assertEquals((byte) 0xA6, bb.get()); 209 assertEquals((byte) 0xA7, bb.get()); 210 assertEquals((byte) 0xA8, bb.get()); 211 assertEquals((byte) 0xA9, bb.get()); 213 bb.get() [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/rdf/tests/ |
rdftest2.asm | 12 mov bx,localdata2 ; [4] 0 => 66 bb 000a(+0) 19 mov ebx,mybssdata ; [7] => bb 00000000(+08)
|
/external/chromium_org/v8/src/ |
hydrogen-bch.cc | 310 void CollectInductionVariableData(HBasicBlock* bb) { 313 for (int i = 0; i < bb->phis()->length(); i++) { 314 HPhi* phi = bb->phis()->at(i); 319 bb, at(bb)->additional_limit()); 322 at(bb)->additional_limit()->updated_variable-> 323 UpdateAdditionalLimit(at(bb)->additional_limit()); 326 for (HInstruction* i = bb->first(); i != NULL; i = i->next()) { 357 for (int i = 0; i < bb->dominated_blocks()->length(); i++) { 358 CollectInductionVariableData(bb->dominated_blocks()->at(i)) [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/model/shape/ |
TestBillboard.java | 71 Node bb = new Node("billboard"); local 75 bb.addControl(control); 76 bb.attachChild(g); 77 bb.attachChild(g3); 82 n.attachChild(bb); 92 // rootNode.attachChild(bb);
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/ |
ItemLocationBox.java | 162 Item createItem(ByteBuffer bb) { 163 return new Item(bb); 225 public void getContent(ByteBuffer bb) { 226 IsoTypeWriter.writeUInt16(bb, itemId); 229 IsoTypeWriter.writeUInt16(bb, constructionMethod); 233 IsoTypeWriter.writeUInt16(bb, dataReferenceIndex); 235 IsoTypeWriterVariable.write(baseOffset, bb, baseOffsetSize); 237 IsoTypeWriter.writeUInt16(bb, extents.size()); 240 extent.getContent(bb); 287 Extent createExtent(ByteBuffer bb) { [all...] |
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/views/ |
MultiTouchView.java | 190 * @param bb ByteBuffer where to construct the message. 195 public void constructEventMessage(ByteBuffer bb, MotionEvent event, int ptr_index) { 196 bb.putInt(event.getPointerId(ptr_index)); 198 bb.putInt((int) (event.getX(ptr_index) / mDx)); 199 bb.putInt((int) (event.getY(ptr_index) / mDy)); 201 bb.putInt((int) (event.getY(ptr_index) / mDy)); 202 bb.putInt((int) (getWidth() - event.getX(ptr_index) / mDx)); 211 bb.putInt(pressure);
|
/dalvik/vm/compiler/codegen/x86/ |
CodegenInterface.cpp | 1084 BasicBlock *bb; local [all...] |
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/ |
CipherSpiTest.java | 148 byte[] bb = cSpi.engineGetIV(); 149 assertEquals("Length of result byte array is not 0", bb.length, 0); 153 bb = cSpi.engineUpdate(bb1, 1, 2); 155 bb.length, 2); 156 bb = cSpi.engineDoFinal(bb1, 1, 2); 158 bb.length); 214 byte[] bb = { (byte) 0, (byte) 1, (byte) 2, (byte) 3, (byte) 4, 217 int len = bb.length; 220 bb1.put(bb); 232 ByteBuffer bb2 = ByteBuffer.allocate(bb.length) [all...] |
/art/compiler/dex/portable/ |
mir_to_gbc.cc | 121 BasicBlock* bb = mir_graph_->FindBlock(vaddr); local 122 DCHECK(bb != NULL); 123 return GetLLVMBlock(bb->id); 126 void MirConverter::ConvertPackedSwitch(BasicBlock* bb, 135 irb_->CreateSwitch(value, GetLLVMBlock(bb->fall_through->id), 146 bb->taken = NULL; 147 bb->fall_through = NULL; 150 void MirConverter::ConvertSparseSwitch(BasicBlock* bb, 162 irb_->CreateSwitch(value, GetLLVMBlock(bb->fall_through->id), 173 bb->taken = NULL [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-2030.js | 40 var bb = new b(); 41 %DebugPrint(bb); 49 assertSame(2, f(bb)); 50 assertSame(2, f(bb)); 53 assertSame(2, f(bb));
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/ |
DXTFlipper.java | 47 private static final ByteBuffer bb = ByteBuffer.allocate(8); field in class:DXTFlipper 50 bb.order(ByteOrder.LITTLE_ENDIAN); 80 bb.clear(); 81 bb.put(block, 2, 6).flip(); 82 bb.clear(); 83 long l = bb.getLong(); 118 bb.clear(); 119 bb.putLong(n); 120 bb.clear(); 121 bb.get(block, 2, 6).flip() [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/ |
nv50_ir_lowering_nvc0.cpp | 97 NVC0LegalizeSSA::visit(BasicBlock *bb) 100 for (Instruction *i = bb->getEntry(); i; i = next) { 173 if (early->bb == later->bb) 175 return later->bb->dominatedBy(early->bb); 207 if (!insn || !insn->bb->reachableBy(texi->bb, term)) 245 findOverwritingDefs(texi, defi, usei->bb, uses); 291 // tag BB CFG nodes by their id for late 293 BasicBlock *bb = reinterpret_cast<BasicBlock *>(i.get()); local 388 BasicBlock *bb = BasicBlock::get(n); local 410 BasicBlock *bb = BasicBlock::get(n); local 435 BasicBlock *bb = BasicBlock::get(n); local [all...] |
/external/mesa3d/src/gallium/drivers/nvc0/codegen/ |
nv50_ir_lowering_nvc0.cpp | 97 NVC0LegalizeSSA::visit(BasicBlock *bb) 100 for (Instruction *i = bb->getEntry(); i; i = next) { 173 if (early->bb == later->bb) 175 return later->bb->dominatedBy(early->bb); 207 if (!insn || !insn->bb->reachableBy(texi->bb, term)) 245 findOverwritingDefs(texi, defi, usei->bb, uses); 291 // tag BB CFG nodes by their id for late 293 BasicBlock *bb = reinterpret_cast<BasicBlock *>(i.get()); local 388 BasicBlock *bb = BasicBlock::get(n); local 410 BasicBlock *bb = BasicBlock::get(n); local 435 BasicBlock *bb = BasicBlock::get(n); local [all...] |
/art/compiler/dex/quick/arm/ |
call_arm.cc | 97 BasicBlock* bb = *p_bb; local 99 while (bb != NULL) { 106 bb = bb->fall_through; 107 *p_bb = bb; 108 if (bb) { 109 mir = bb->first_mir_insn; 128 MIR* ArmMir2Lir::SpecialIGet(BasicBlock** bb, MIR* mir, 150 return GetNextMir(bb, mir); 153 MIR* ArmMir2Lir::SpecialIPut(BasicBlock** bb, MIR* mir [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_build_util.h | 43 inline BasicBlock *getBB() { return bb; } 46 inline void remove(Instruction *i) { assert(i->bb == bb); bb->remove(i); } 177 BasicBlock *bb; member in class:nv50_ir::BuildUtil 199 bb = block; 200 prog = bb->getProgram(); 201 func = bb->getFunction(); 209 bb = i->bb; [all...] |
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_build_util.h | 43 inline BasicBlock *getBB() { return bb; } 46 inline void remove(Instruction *i) { assert(i->bb == bb); bb->remove(i); } 177 BasicBlock *bb; member in class:nv50_ir::BuildUtil 199 bb = block; 200 prog = bb->getProgram(); 201 func = bb->getFunction(); 209 bb = i->bb; [all...] |
/external/valgrind/main/VEX/priv/ |
ir_defs.c | 1845 IRSB* bb = LibVEX_Alloc(sizeof(IRSB)); local [all...] |
/external/clang/test/Analysis/ |
dynamic-cast.cpp | 16 class BB: public B{}; 51 BB bb; local 52 B *pb = &bb; 66 BB bb; local 67 A *pbb = &bb; 69 BB *s = dynamic_cast<BB*>(b); 81 BB bb local [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
MediaBassBoostTest.java | 93 BassBoost bb = null; local 95 bb = new BassBoost(0, 0); 96 assertNotNull(msg + ": could not create BassBoost", bb); 98 assertTrue(msg +": invalid effect ID", (bb.getId() != 0)); 108 if (bb != null) { 109 bb.release();
|