HomeSort by relevance Sort by last modified time
    Searched refs:gap (Results 1 - 25 of 84) sorted by null

1 2 3 4

  /development/tools/jdwpspy/
Main.cpp 41 int gap; local
53 gap = (int) offset & 0x0f;
66 int count = ((int)length > 16-gap) ? 16-gap : (int) length; /* cap length */
68 assert(count+gap <= 16);
70 if (gap) {
72 hex += gap * 3;
73 asc += gap;
77 for (i = gap ; i < count+gap; i++)
    [all...]
  /external/srec/srec/ca/
utt_data.c 42 int gap = 0; local
48 if ((gap = getBlockGap(hUtt->data.gen_utt.frame)) > 0)
49 (void) setRECframePtr(hUtt->data.gen_utt.frame, gap, 1);
  /external/v8/src/
json.js 64 function SerializeArray(value, replacer, stack, indent, gap) {
69 indent += gap;
74 indent, gap);
81 if (gap == "") {
94 function SerializeObject(value, replacer, stack, indent, gap) {
99 indent += gap;
106 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
109 if (gap != "") member += " ";
118 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
121 if (gap != "") member += " "
    [all...]
lithium-allocator.cc 754 LGap* gap = GapAt(index); local
755 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START);
827 LGap* gap = GapAt(gap_index); local
828 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::BEFORE);
904 // We have a gap at this position.
905 LGap* gap = GapAt(index); local
906 LParallelMove* move = gap->GetOrCreateParallelMove(LGap::START);
1109 LGap* gap = NULL; local
1140 LGap* gap = GapAt(index); local
1151 LGap* gap = GapAt(chunk_->NearestGapPos(pos.InstructionIndex())); local
1242 LGap* gap = GetLastGap(phi->block()->predecessors()->at(0)); local
    [all...]
  /dalvik/vm/
Misc.cpp 56 int gap; local
69 gap = (int) offset & 0x0f;
84 count = ((int)length > 16-gap) ? 16-gap : (int)length; /* cap length */
86 assert(count+gap <= 16);
88 if (gap) {
90 hex += gap * 3;
91 asc += gap;
94 for (i = gap ; i < count+gap; i++)
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
AbsSeekBar.java 258 int gap = (trackWidth - thumbWidth) / 2;
260 setThumbPos(w, h, thumb, scale, gap);
289 int gap = (trackHeight - thumbHeight) / 2;
291 setThumbPos(w, h, thumb, scale, gap);
298 * @param gap If set to {@link Integer#MIN_VALUE}, this will be ignored and
300 private void setThumbPos(int w, int h, Drawable thumb, float scale, int gap) {
317 if (gap == Integer.MIN_VALUE) {
322 leftBound = gap;
323 rightBound = gap + thumbWidth;
331 if (gap == Integer.MIN_VALUE)
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/
misc.c 261 int gap, i, j, jg; local
264 for ( gap = n / 2; gap > 0; gap = gap / 2 )
265 for ( i = gap; i < n; ++i )
266 for ( j = i - gap; j >= 0; j = j - gap )
268 jg = j + gap;
  /external/iproute2/tc/
q_netem.c 37 " [ reorder PRECENT [CORRELATION] [ gap DISTANCE ]]\n");
220 } else if (matches(*argv, "gap") == 0) {
222 if (get_u32(&opt.gap, *argv, 0)) {
223 explain1("gap");
264 if (opt.gap == 0)
265 opt.gap = 1;
266 } else if (opt.gap > 0) {
267 fprintf(stderr, "gap specified without reorder probability\n");
385 if (qopt.gap)
386 fprintf(f, " gap %lu", (unsigned long)qopt.gap)
    [all...]
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 259 int gap = (trackHeight - thumbHeight) / 2;
261 setThumbPos(w, thumb, scale, gap);
267 * @param gap If set to {@link Integer#MIN_VALUE}, this will be ignored and
269 private void setThumbPos(int w, Drawable thumb, float scale, int gap) {
281 if (gap == Integer.MIN_VALUE) {
286 topBound = gap;
287 bottomBound = gap + thumbHeight;
  /packages/apps/Calendar/src/com/android/calendar/
EventGeometry.java 34 public void setHourGap(float gap) {
35 mHourGap = gap;
  /external/javassist/src/main/javassist/bytecode/
StackMapTable.java 796 private int where, gap; field in class:StackMapTable.Shifter
801 public Shifter(StackMapTable smt, int where, int gap, boolean exclusive) {
805 this.gap = gap;
835 int newDelta = offsetDelta + gap;
836 position += gap;
850 private static byte[] insertGap(byte[] info, int where, int gap) {
852 byte[] newinfo = new byte[len + gap];
854 newinfo[i + (i < where ? 0 : gap)] = info[i];
882 int newDelta = offsetDelta + gap;
    [all...]
CodeIterator.java 24 * same <code>Code_attribute</code>, then inserting a gap by one
308 * <p>An extra gap may be inserted at the end of the inserted
331 * <p>An extra gap may be inserted at the end of the inserted
356 * <p>An extra gap may be inserted at the end of the inserted
381 * <p>An extra gap may be inserted at the end of the inserted
404 * <p>An extra gap may be inserted at the end of the inserted
429 * <p>An extra gap may be inserted at the end of the inserted
466 * Inserts a gap
471 * The inserted gap is filled with NOP. The gap length may b
599 Gap gap = new Gap(); local
1448 int gap, defaultByte; field in class:CodeIterator.Switcher
    [all...]
StackMap.java 382 private int where, gap; field in class:StackMap.Shifter
385 public Shifter(StackMap smt, int where, int gap, boolean exclusive) {
388 this.gap = gap;
394 ByteArray.write16bit(offset + gap, info, pos - 4);
  /packages/apps/Browser/src/com/android/browser/
NavTabScroller.java 284 int gap = mHorizontal ? v.getWidth() : v.getHeight(); local
288 if (centerView < centerScreen - gap / 2) {
290 scroll = - (centerScreen - centerView - gap);
291 translate = (position > 0) ? gap : 0;
293 } else if (centerView > centerScreen + gap / 2) {
295 scroll = - (centerScreen + gap - centerView);
297 translate = -gap;
303 translate = -gap;
305 scroll -= gap;
328 trans2 = ObjectAnimator.ofInt(this, "gap", 0, translate)
    [all...]
  /external/srec/srec/clib/
fpi_tgt.c 433 * With multiple recognizers, the gap-test doesn't work !!!
454 int gap; local
466 gap = POINTER_GAP(frmPkt, frmPkt->pullp, frmPkt->pushBlkp);
467 if (fCnt > gap) /* Limit movement */
468 fCnt = gap;
472 gap = POINTER_GAP(frmPkt, frmPkt->pushp, frmPkt->pullp);
473 if (fCnt < -gap) /* Limit movement */
474 fCnt = -gap;
490 gap = POINTER_GAP(frmPkt, frmPkt->pushp, frmPkt->pushBlkp);
492 if (fCnt > gap) /* Limit movement *
    [all...]
  /external/javassist/src/main/javassist/convert/
TransformAccessArrayField.java 142 // The gap may include extra padding
145 CodeIterator.Gap gap local
147 pos = gap.position;
159 pos = updatePos(pos, gap.length);
  /external/javassist/src/main/javassist/expr/
Expr.java 293 int gap = code.length - size; local
297 if (gap > 0)
298 pos = iterator.insertGapAt(pos, gap, false).position;
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 84 /** Horizontal gap default for all rows */
93 /** Default gap between rows */
165 /** Default horizontal gap between keys in this row. */
167 /** Vertical gap following this row. */
244 /** Width of the key, not including the gap */
246 /** Height of the key, not including the gap */
248 /** The horizontal gap before this key */
249 public int gap; field in class:Keyboard.Key
317 gap = parent.defaultHorizontalGap;
345 gap = getDimensionOrFraction(a,
    [all...]
  /external/dbus/test/
break-loader.c 52 double gap; local
61 gap = end - start - 1; /* -1 to not include "end" */
62 v_double = ((double)start) + (((double)rand ())/RAND_MAX) * gap;
  /libcore/luni/src/main/java/java/nio/
DatagramChannelImpl.java 391 int gap = Math.min(result, source.remaining()); local
392 source.position(source.position() + gap);
394 result -= gap;
SocketChannelImpl.java 351 int gap = Math.min(result, source.remaining()); local
352 source.position(source.position() + gap);
354 result -= gap;
  /packages/apps/Browser/src/com/android/browser/view/
PieMenu.java 205 int gap = 1; local
227 Path slice = makeSlice(getDegrees(itemstart) - gap,
228 getDegrees(itemstart + sweep) + gap,
  /bionic/libc/kernel/common/linux/
fd.h 28 unsigned char gap, member in struct:floppy_struct
  /development/ndk/platforms/android-3/include/linux/
fd.h 28 unsigned char gap, member in struct:floppy_struct
  /external/kernel-headers/original/linux/
fd.h 23 unsigned char gap, /* gap1 size */ member in struct:floppy_struct

Completed in 1618 milliseconds

1 2 3 4