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

1 2 3

  /development/tools/jdwpspy/
Main.c 41 int gap; local
53 gap = (int) offset & 0x0f;
68 count = ((int)length > 16-gap) ? 16-gap : (int) length; /* cap length */
70 assert(count+gap <= 16);
72 if (gap) {
74 hex += gap * 3;
75 asc += gap;
78 for (i = gap ; i < count+gap; i++)
    [all...]
  /external/v8/src/
json.js 112 function SerializeArray(value, replacer, stack, indent, gap) {
118 indent += gap;
123 indent, gap);
130 if (gap == "") {
143 function SerializeObject(value, replacer, stack, indent, gap) {
149 indent += gap;
156 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
159 if (gap != "") member += " ";
168 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
171 if (gap != "") member += " "
    [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);
  /dalvik/vm/
Misc.c 58 int gap; local
71 gap = (int) offset & 0x0f;
86 count = ((int)length > 16-gap) ? 16-gap : (int)length; /* cap length */
88 assert(count+gap <= 16);
90 if (gap) {
92 hex += gap * 3;
93 asc += gap;
96 for (i = gap ; i < count+gap; i++)
    [all...]
  /frameworks/base/core/java/android/widget/
AbsSeekBar.java 215 int gap = (trackHeight - thumbHeight) / 2;
217 setThumbPos(w, thumb, scale, gap);
223 * @param gap If set to {@link Integer#MIN_VALUE}, this will be ignored and
225 private void setThumbPos(int w, Drawable thumb, float scale, int gap) {
237 if (gap == Integer.MIN_VALUE) {
242 topBound = gap;
243 bottomBound = gap + thumbHeight;
  /external/webkit/WebKitTools/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");
222 } else if (matches(*argv, "gap") == 0) {
224 if (get_u32(&opt.gap, *argv, 0)) {
225 explain1("gap");
266 if (opt.gap == 0)
267 opt.gap = 1;
268 } else if (opt.gap > 0) {
269 fprintf(stderr, "gap specified without reorder probability\n");
387 if (qopt.gap)
388 fprintf(f, " gap %lu", (unsigned long)qopt.gap)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventGeometry.java 34 void setHourGap(float gap) {
35 mHourGap = gap;
  /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...]
  /frameworks/base/core/java/android/inputmethodservice/
Keyboard.java 84 /** Horizontal gap default for all rows */
93 /** Default gap between rows */
163 /** Default horizontal gap between keys in this row. */
165 /** Vertical gap following this row. */
239 /** Width of the key, not including the gap */
241 /** Height of the key, not including the gap */
243 /** The horizontal gap before this key */
244 public int gap; field in class:Keyboard.Key
312 gap = parent.defaultHorizontalGap;
340 gap = getDimensionOrFraction(a,
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
ZoomController.java 217 float gap = mValueGap; local
227 yoffset -= labelStep * gap;
237 yoffset -= labelStep * gap;
250 yoffset -= gap;
  /bionic/libc/kernel/common/linux/
fd.h 28 unsigned char gap, member in struct:floppy_struct
pkt_sched.h 413 __u32 gap; member in struct:tc_netem_qopt
  /development/ndk/platforms/android-3/include/linux/
fd.h 28 unsigned char gap, member in struct:floppy_struct
pkt_sched.h 379 __u32 gap; member in struct:tc_netem_qopt
  /external/kernel-headers/original/linux/
fd.h 23 unsigned char gap, /* gap1 size */ member in struct:floppy_struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
fd.h 28 unsigned char gap, member in struct:floppy_struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
fd.h 28 unsigned char gap, member in struct:floppy_struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
fd.h 28 unsigned char gap, member in struct:floppy_struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
fd.h 28 unsigned char gap, member in struct:floppy_struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
fd.h 28 unsigned char gap, member in struct:floppy_struct
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
fd.h 28 unsigned char gap, member in struct:floppy_struct
  /libcore/luni/src/main/java/org/apache/harmony/nio/internal/
DatagramChannelImpl.java 521 int gap = Math.min(result, source.remaining()); local
522 source.position(source.position() + gap);
524 result -= gap;
SocketChannelImpl.java 429 int gap = Math.min(result, source.remaining()); local
430 source.position(source.position() + gap);
432 result -= gap;
  /external/iproute2/include/linux/
pkt_sched.h 479 __u32 gap; /* re-ordering gap (0 for none) */ member in struct:tc_netem_qopt

Completed in 7123 milliseconds

1 2 3