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

1 2 3 4 5 67 8 91011>>

  /external/llvm/include/llvm/Analysis/
MemoryDependenceAnalysis.h 189 /// each BasicBlock (the BB entry) it keeps a MemDepResult.
191 BasicBlock *BB;
194 NonLocalDepEntry(BasicBlock *bb, MemDepResult result)
195 : BB(bb), Result(result) {}
198 NonLocalDepEntry(BasicBlock *bb) : BB(bb) {}
200 // BB is the sort key, it can't be changed.
201 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...]
global.h 214 typedef struct _BB BB;
245 * for subroutine call (from->bb->jmp_addr => to->bb->addr)
247 * Each BB has at most one CALL instruction. The list of JCC from
291 * Info for a side exit in a BB
295 UInt instr; /* instruction index for BB.instr array */
296 ClgJumpKind jmpkind; /* jump kind when leaving BB at this side exit */
301 * An instrumented basic block (BB).
304 * BB is to be retranslated but cost info is already available.
305 * The key for a BB is a (object, offset) tupel making it independen
395 BB* bb; \/* BB for this cost center *\/ member in struct:_BBCC
    [all...]
main.c 201 helper calls. The BB is scanned top to bottom and memory events
312 /* The array of InstrInfo's is part of BB struct. */
313 BB* bb; member in struct:__anon16631
315 /* BB seen before (ie. re-instrumentation) */
321 // current offset of guest instructions from BB start
375 'consumes' slots in cgs->bb. */
732 end of BB instrumentation. */
738 tl_assert(clgs->ii_index < clgs->bb->instr_count);
739 ii = &clgs->bb->instr[ clgs->ii_index ]
    [all...]
dump.c 418 /* the debug lookup cache is useful if BBCC for same BB are
471 p->file = CLG_(get_file_node)(bbcc->bb->obj, file);
480 p->addr = addr - bbcc->bb->obj->offset;
481 p->bb_addr = bbcc->bb->offset;
483 CLG_DEBUG(3, " get_debug_pos(%#lx): BB %#lx, fn '%s', file '%s', line %u\n",
484 addr, bb_addr(bbcc->bb), bbcc->cxt->fn[0]->name,
519 * print position change inside of a BB (last -> curr)
525 CLG_DEBUG(2, " print_apos(file '%s', line %d, bb %#lx, addr %#lx) fnFile '%s'\n",
636 CLG_DEBUG(2, " print_fcost(file '%s', line %d, bb %#lx, addr %#lx):\n",
667 if (!get_debug_pos(jcc->to, bb_addr(jcc->to->bb), &target))
787 BB* bb = bbcc->bb; local
    [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 */
289 /* Set up BB */
290 IRSB* bb = emptyIRSB();
291 bb->tyenv = dopyIRTypeEnv(bb_in->tyenv);
292 bb->next = dopyIRExpr(bb_in->next);
293 bb->jumpkind = bb_in->jumpkind;
323 bb,
517 IRSB* bb; member in struct:_MCEnv
2584 IRSB* bb = emptyIRSB(); local
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
FloatToFixed.java 88 ByteBuffer bb = BufferUtils.createByteBuffer(fb.capacity()); local
89 convertNormals(fb, bb);
92 normals.setupData(Usage.Static, 3, Format.Byte, bb);
183 ByteBuffer bb = BufferUtils.createByteBuffer(fb.capacity()); local
184 convertToUByte(fb, bb);
190 bb); local
293 ByteBuffer bb = null; local
301 bb = (ByteBuffer) output;
339 bb.put(v1).put(v2).put(v3);
  /frameworks/base/core/java/android/bluetooth/
BluetoothSocket.java 483 ByteBuffer bb = ByteBuffer.wrap(sig); local
484 bb.order(ByteOrder.nativeOrder());
485 int size = bb.getShort();
489 bb.get(addr);
490 int channel = bb.getInt();
491 int status = bb.getInt();
517 ByteBuffer bb = ByteBuffer.wrap(ibytes); local
518 bb.order(ByteOrder.nativeOrder());
519 return bb.getInt();
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 136 BasicBlock bb = blocks.get(i); local
137 int label = bb.getLabel();
138 IntList successors = bb.getSuccessors();
150 if (successor != bb.getPrimarySuccessor()) {
158 + Hex.u2(bb.getPrimarySuccessor())
  /dalvik/vm/compiler/
Compiler.h 222 struct BasicBlock *bb);
224 struct BasicBlock *bb);
226 struct BasicBlock *bb);
228 struct BasicBlock *bb);
229 /* Clear the visited flag for each BB */
231 struct BasicBlock *bb);
InlineTransformation.cpp 312 BasicBlock *bb = (BasicBlock *) dvmGrowableListIteratorNext(&iterator); local
313 if (bb == NULL) break;
314 if (bb->blockType != kDalvikByteCode)
316 MIR *lastMIRInsn = bb->lastMIRInsn;
358 lastMIRInsn, bb, isRange);
403 lastMIRInsn, bb, isRange);
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 546 | Before bb ->
547 f bb;
548 iter_global_range f (global_succ bb) e
557 | Before bb -> fold_left_global_range f (f init bb) (global_succ bb) e
566 | After bb ->
567 f bb;
568 rev_iter_global_range f (global_pred bb) e
577 | After bb -> fold_right_global_range f (global_pred bb) e (f bb init
    [all...]
  /external/webkit/Source/WebCore/platform/efl/
RenderThemeEfl.cpp 362 int fr, fg, fb, fa, br, bg, bb, ba; local
364 if (!edje_object_color_class_get(object, source, &fr, &fg, &fb, &fa, &br, &bg, &bb, &ba, 0, 0, 0, 0))
367 that->setActiveSelectionColor(fr, fg, fb, fa, br, bg, bb, ba);
373 int fr, fg, fb, fa, br, bg, bb, ba; local
375 if (!edje_object_color_class_get(object, source, &fr, &fg, &fb, &fa, &br, &bg, &bb, &ba, 0, 0, 0, 0))
378 that->setInactiveSelectionColor(fr, fg, fb, fa, br, bg, bb, ba);
395 int fr, fg, fb, fa, br, bg, bb, ba; local
397 if (!edje_object_color_class_get(object, source, &fr, &fg, &fb, &fa, &br, &bg, &bb, &ba, 0, 0, 0, 0))
400 that->setButtonTextColor(fr, fg, fb, fa, br, bg, bb, ba);
406 int fr, fg, fb, fa, br, bg, bb, ba local
417 int fr, fg, fb, fa, br, bg, bb, ba; local
428 int fr, fg, fb, fa, br, bg, bb, ba; local
483 int fr, fg, fb, fa, br, bg, bb, ba; local
    [all...]
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
CharsetTest.java 556 ByteBuffer bb = c1.encode(CharBuffer.wrap("abcdefg"));
557 assertEquals("abcdefg", new String(bb.array(), "iso8859-1"));
558 bb = c1.encode(CharBuffer.wrap(""));
559 assertEquals("", new String(bb.array(), "iso8859-1"));
567 ByteBuffer bb = c1.encode(CharBuffer.wrap("abcd\u5D14efg"));
568 assertEquals(new String(bb.array(), "iso8859-1"), "abcd"
604 ByteBuffer bb = c1.encode("abcdefg");
605 assertEquals("abcdefg", new String(bb.array(), "iso8859-1"));
606 bb = c1.encode("");
607 assertEquals("", new String(bb.array(), "iso8859-1"))
    [all...]
  /external/libvpx/libvpx/vp8/encoder/arm/armv5te/
vp8_packtokens_armv5.asm 89 ; This value is refered to as "bb"
90 lsls r12, r12, #1 ; bb = v >> n
93 ; bb can only be 0 or 1. So only execute this statement
94 ; if bb == 1, otherwise it will act like i + 0
95 addcs lr, lr, #1 ; i + bb
98 ldrsb lr, [r10, lr] ; i = vp8_coef_tree[i+bb]
101 addcs r2, r2, r4 ; if (bb) lowvalue += split
102 subcs r4, r5, r4 ; if (bb) range = range-split
196 addcs lr, lr, #1 ; i + bb
199 ldrsb lr, [r10, lr] ; i = b->tree[i+bb]
    [all...]
vp8_packtokens_mbrow_armv5.asm 110 ; This value is refered to as "bb"
111 lsls r12, r12, #1 ; bb = v >> n
114 ; bb can only be 0 or 1. So only execute this statement
115 ; if bb == 1, otherwise it will act like i + 0
116 addcs lr, lr, #1 ; i + bb
119 ldrsb lr, [r10, lr] ; i = vp8_coef_tree[i+bb]
122 addcs r2, r2, r4 ; if (bb) lowvalue += split
123 subcs r4, r5, r4 ; if (bb) range = range-split
217 addcs lr, lr, #1 ; i + bb
220 ldrsb lr, [r10, lr] ; i = b->tree[i+bb]
    [all...]
  /packages/screensavers/Basic/src/com/android/dreams/basic/
ColorsGLRenderer.java 361 ByteBuffer bb = ByteBuffer.allocateDirect( local
364 bb.order(ByteOrder.nativeOrder());
365 vertexBuffer = bb.asFloatBuffer();
369 bb = ByteBuffer.allocateDirect(vertexCount * colorStride);
370 bb.order(ByteOrder.nativeOrder());
371 colorBuffer = bb.asFloatBuffer();
  /build/tools/rgb2565/
to565.c 63 int bb = (b < 0) ? 0 : ((b > 255) ? 255 : b); local
65 out = to565(rb, gb, bb);
  /external/chromium/sdch/open-vcdiff/packages/
rpm.sh 50 rpmbuild -bb rpm/rpm.spec \
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
SampleFlags.java 48 public SampleFlags(ByteBuffer bb) {
49 BitReaderBuffer brb = new BitReaderBuffer(bb);
  /external/open-vcdiff/packages/
rpm.sh 64 rpmbuild -bb rpm/rpm.spec \
  /external/skia/legacy/include/core/
SkDescriptor.h 107 const uint32_t* bb = (const uint32_t*)&other; local
110 if (*aa++ != *bb++)
  /external/skia/src/core/
SkDescriptor.h 98 const uint32_t* bb = (const uint32_t*)&other; local
101 if (*aa++ != *bb++)
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
RamDisk.java 72 final ByteBuffer bb = ByteBuffer.wrap(bos.toByteArray(), 0, total); local
73 return new RamDisk(bb, DEFAULT_SECTOR_SIZE);

Completed in 7692 milliseconds

1 2 3 4 5 67 8 91011>>