HomeSort by relevance Sort by last modified time
    Searched refs:bb (Results 76 - 100 of 458) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherSpiTest.java 62 byte[] bb = cSpi.engineGetIV();
63 assertEquals("Length of result byte array is not 0", bb.length, 0);
67 bb = cSpi.engineUpdate(bb1, 1, 2);
69 bb.length, 2);
70 bb = cSpi.engineDoFinal(bb1, 1, 2);
72 bb.length);
128 byte[] bb = { (byte) 0, (byte) 1, (byte) 2, (byte) 3, (byte) 4,
131 int len = bb.length;
134 bb1.put(bb);
146 ByteBuffer bb2 = ByteBuffer.allocate(bb.length)
    [all...]
  /dalvik/vm/compiler/
Loop.cpp 96 const BasicBlock *bb)
98 int numPred = dvmCountSetBits(bb->predecessors);
100 dvmBitVectorIteratorInit(bb->predecessors, &bvIterator);
108 dvmIsBitSet(bb->predecessors, cUnit->entryBlock->id)) {
514 void resetBlockEdges(BasicBlock *bb)
516 bb->taken = NULL;
517 bb->fallThrough = NULL;
518 bb->successorBlockList.blockListType = kNotUsed;
522 struct BasicBlock *bb)
524 dvmClearAllBits(bb->predecessors)
617 BasicBlock *bb = (BasicBlock *) dvmGrowableListIteratorNext(&iterator); local
632 BasicBlock *bb = (BasicBlock *) dvmGrowableListIteratorNext(&iterator); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractNonStreamingHashFunctionTest.java 60 protected void process(ByteBuffer bb) {
61 while (bb.hasRemaining()) {
62 out.write(bb.get());
67 protected void processRemaining(ByteBuffer bb) {
68 while (bb.hasRemaining()) {
69 out.write(bb.get());
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/compiler-rt/lib/msandr/
msandr.cc 89 // in here from the bb event. This is better than an rb tree because the lookup
90 // is faster and the bb event occurs far more than the module load event.
174 #define PRE(at, what) instrlist_meta_preinsert(bb, at, INSTR_CREATE_##what);
175 #define PREF(at, what) instrlist_meta_preinsert(bb, at, what);
177 void InstrumentMops(void *drcontext, instrlist_t *bb, instr_t *instr, opnd_t op,
191 // TODO: No need to spill XAX here if XAX is not used in the BB.
192 dr_save_reg(drcontext, bb, instr, DR_REG_XAX, SPILL_SLOT_1);
193 dr_save_arith_flags_to_xax(drcontext, bb, instr);
194 dr_save_reg(drcontext, bb, instr, DR_REG_XAX, SPILL_SLOT_3);
195 dr_restore_reg(drcontext, bb, instr, DR_REG_XAX, SPILL_SLOT_1)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
basic-block.h 179 /* This field is used by the bb-reorder and tracer passes. */
259 #define BB_PARTITION(bb) ((bb)->flags & (BB_HOT_PARTITION|BB_COLD_PARTITION))
260 #define BB_SET_PARTITION(bb, part) do { \
261 basic_block bb_ = (bb); \
340 #define SET_BASIC_BLOCK_FOR_FUNCTION(FN,N,BB) \
341 (VEC_replace (basic_block, basic_block_info_for_function(FN), (N), (BB)))
354 #define SET_BASIC_BLOCK(N,BB) (VEC_replace (basic_block, basic_block_info, (N), (BB)))
357 #define FOR_BB_BETWEEN(BB, FROM, TO, DIR)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
basic-block.h 179 /* This field is used by the bb-reorder and tracer passes. */
259 #define BB_PARTITION(bb) ((bb)->flags & (BB_HOT_PARTITION|BB_COLD_PARTITION))
260 #define BB_SET_PARTITION(bb, part) do { \
261 basic_block bb_ = (bb); \
340 #define SET_BASIC_BLOCK_FOR_FUNCTION(FN,N,BB) \
341 (VEC_replace (basic_block, basic_block_info_for_function(FN), (N), (BB)))
354 #define SET_BASIC_BLOCK(N,BB) (VEC_replace (basic_block, basic_block_info, (N), (BB)))
357 #define FOR_BB_BETWEEN(BB, FROM, TO, DIR)
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
basic-block.h 179 /* This field is used by the bb-reorder and tracer passes. */
259 #define BB_PARTITION(bb) ((bb)->flags & (BB_HOT_PARTITION|BB_COLD_PARTITION))
260 #define BB_SET_PARTITION(bb, part) do { \
261 basic_block bb_ = (bb); \
340 #define SET_BASIC_BLOCK_FOR_FUNCTION(FN,N,BB) \
341 (VEC_replace (basic_block, basic_block_info_for_function(FN), (N), (BB)))
354 #define SET_BASIC_BLOCK(N,BB) (VEC_replace (basic_block, basic_block_info, (N), (BB)))
357 #define FOR_BB_BETWEEN(BB, FROM, TO, DIR)
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
basic-block.h 179 /* This field is used by the bb-reorder and tracer passes. */
259 #define BB_PARTITION(bb) ((bb)->flags & (BB_HOT_PARTITION|BB_COLD_PARTITION))
260 #define BB_SET_PARTITION(bb, part) do { \
261 basic_block bb_ = (bb); \
340 #define SET_BASIC_BLOCK_FOR_FUNCTION(FN,N,BB) \
341 (VEC_replace (basic_block, basic_block_info_for_function(FN), (N), (BB)))
354 #define SET_BASIC_BLOCK(N,BB) (VEC_replace (basic_block, basic_block_info, (N), (BB)))
357 #define FOR_BB_BETWEEN(BB, FROM, TO, DIR)
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
BootSector.java 75 final ByteBuffer bb = ByteBuffer.allocate(512); local
76 bb.order(ByteOrder.LITTLE_ENDIAN);
77 device.read(0, bb);
79 if ((bb.get(510) & 0xff) != 0x55 ||
80 (bb.get(511) & 0xff) != 0xaa) throw new IOException(
83 final byte sectorsPerCluster = bb.get(SECTORS_PER_CLUSTER_OFFSET);
88 final int rootDirEntries = bb.getShort(
94 bb.getShort(TOTAL_SECTORS_16_OFFSET) & 0xffff;
96 bb.getInt(TOTAL_SECTORS_32_OFFSET) & 0xffffffffl;
101 bb.getShort(Fat16BootSector.SECTORS_PER_FAT_OFFSET) & 0xffff
    [all...]
  /external/javassist/src/main/javassist/bytecode/stackmap/
MapMaker.java 317 TypedBlock bb = blocks[i]; local
318 if (isTarget(bb, blocks[i - 1])) {
319 bb.resetNumLocals();
321 bb.numLocals, bb.localsTypes);
322 toStackMapBody(writer, bb, diffL, offsetDelta, prev);
323 offsetDelta = bb.length - 1;
324 prev = bb;
327 offsetDelta += bb.length;
346 private void toStackMapBody(StackMapTable.Writer writer, TypedBlock bb,
479 TypedBlock bb = blocks[i]; local
    [all...]
  /external/clang/test/CodeGenCXX/
derived-to-base-conv.cpp 62 void test1(Derived bb) {
68 test1_helper(bb);
  /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/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 1080 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...]
  /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/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...]

Completed in 691 milliseconds

1 2 34 5 6 7 8 91011>>