Searched refs:gap (Results 1 - 25 of 131) sorted by relevance

123456

/external/pdfium/core/include/fxcrt/
H A Dfx_ext.h86 FX_INT32 i, j, gap; local
88 gap = iCount >> 1;
89 while (gap > 0) {
90 for (i = gap; i < iCount; i ++) {
91 j = i - gap;
94 pArray[j + gap] = v2;
95 j -= gap;
97 pArray[j + gap] = v1;
99 gap >>= 1;
/external/chromium_org/v8/src/
H A Djson.js50 function SerializeArray(value, replacer, stack, indent, gap) {
55 indent += gap;
60 indent, gap);
67 if (gap == "") {
80 function SerializeObject(value, replacer, stack, indent, gap) {
85 indent += gap;
92 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
95 if (gap != "") member += " ";
104 var strP = JSONSerialize(p, value, replacer, stack, indent, gap);
107 if (gap !
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Ddtmfsender_unittest.cc77 DtmfInfo(int code, int duration, int gap) argument
80 gap(gap) {}
83 int gap; member in struct:FakeDtmfProvider::DtmfInfo
99 int gap = 0; variable
103 gap = static_cast<int>(rtc::Time() - last_insert_dtmf_call_);
109 << " gap=" << gap << "."; variable
110 dtmf_info_queue_.push_back(DtmfInfo(code, duration, gap));
162 // DtmfInfo's gap fiel
[all...]
/external/srec/srec/ca/
H A Dutt_data.c42 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/bluetooth/bluedroid/stack/
H A DAndroid.mk13 $(LOCAL_PATH)/gap \
148 ./gap/gap_api.c \
149 ./gap/gap_ble.c \
150 ./gap/gap_conn.c \
151 ./gap/gap_utils.c \
/external/chromium_org/third_party/skia/gm/
H A Darithmode.cpp104 SkScalar gap = SkIntToScalar(src.width() + 20); local
108 x += gap;
110 x += gap;
119 x += gap;
/external/skia/gm/
H A Darithmode.cpp103 SkScalar gap = SkIntToScalar(src.width() + 20); local
107 x += gap;
109 x += gap;
118 x += gap;
/external/chromium_org/native_client_sdk/doc_generated/_static/css/
H A Dnacl.css7 .small-gap {margin-top: 0.5em;}
8 .small-gap li, dt {margin-top: 1em;}
9 .no-gap {margin-bottom: 0;}
10 .no-gap-li li {margin-top: 0;}
112 li.gap, .gap li {margin-top: 1.5em;}
113 .gap li li {margin-top: 0.2em;}
/external/chromium_org/native_client_sdk/src/doc/_static/css/
H A Dnacl.css7 .small-gap {margin-top: 0.5em;}
8 .small-gap li, dt {margin-top: 1em;}
9 .no-gap {margin-bottom: 0;}
10 .no-gap-li li {margin-top: 0;}
112 li.gap, .gap li {margin-top: 1.5em;}
113 .gap li li {margin-top: 0.2em;}
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_constants.h334 * gap ack's to figure out if you need to stroke a chunk for FR.
919 #define SCTP_IS_TSN_PRESENT(arry, gap) ((arry[(gap >> 3)] >> (gap & 0x07)) & 0x01)
920 #define SCTP_SET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] |= (0x01 << ((gap & 0x07))))
921 #define SCTP_UNSET_TSN_PRESENT(arry, gap) (arry[(gap >> 3)] &= ((~(0x01 << ((gap
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/
H A Dmobile_setup_portal.js169 var gap = canvas.width / 24; // Gap between segments
174 var oGap = gap / oCircumference; // Gap size as fraction of outer ring
175 var iGap = gap / iCircumference; // Gap size as fraction of inner ring
H A Dmobile_setup.js328 var gap = canvas.width / 24; // Gap between segments
333 var oGap = gap / oCircumference; // Gap size as fraction of outer ring
334 var iGap = gap / iCircumference; // Gap size as fraction of inner ring
/external/pdfium/core/include/fpdfdoc/
H A Dfpdf_ap.h21 CPVT_Dash(FX_INT32 dash, FX_INT32 gap, FX_INT32 phase) : nDash(dash), nGap(gap), nPhase(phase) argument
/external/javassist/src/main/javassist/bytecode/
H A DStackMapTable.java796 private int where, gap; field in class:StackMapTable.Shifter
801 public Shifter(StackMapTable smt, int where, int gap, boolean exclusive) { argument
805 this.gap = gap;
835 int newDelta = offsetDelta + gap;
836 position += gap;
850 private static byte[] insertGap(byte[] info, int where, int gap) { argument
852 byte[] newinfo = new byte[len + gap];
854 newinfo[i + (i < where ? 0 : gap)] = info[i];
882 int newDelta = offsetDelta + gap;
[all...]
H A DCodeIterator.java24 * 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 lengt
1448 int gap, defaultByte; field in class:CodeIterator.Switcher
[all...]
H A DStackMap.java382 private int where, gap; field in class:StackMap.Shifter
385 public Shifter(StackMap smt, int where, int gap, boolean exclusive) { argument
388 this.gap = gap;
394 ByteArray.write16bit(offset + gap, info, pos - 4);
/external/chromium_org/third_party/skia/tools/flags/
H A DSkCommandLineFlags.cpp173 int gap; local
177 gap = 0;
180 gap = 1;
183 currLine += spaceIndex + gap;
/external/srec/srec/clib/
H A Dfpi_tgt.c433 * 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) /* Limi
[all...]
/external/iproute2/tc/
H A Dq_netem.c41 " [ reorder PRECENT [CORRELATION] [ gap DISTANCE ]]\n" \
359 } else if (matches(*argv, "gap") == 0) {
361 if (get_u32(&opt.gap, *argv, 0)) {
362 explain1("gap");
432 if (opt.gap == 0)
433 opt.gap = 1;
434 } else if (opt.gap > 0) {
435 fprintf(stderr, "gap specified without reorder probability\n");
620 if (qopt.gap)
621 fprintf(f, " gap
[all...]
/external/skia/tools/flags/
H A DSkCommandLineFlags.cpp173 int gap; local
177 gap = 0;
180 gap = 1;
183 currLine += spaceIndex + gap;
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/listfmts/nasm/
H A Dnasm-listfmt.c209 int gap; local
214 bigbuf = yasm_bc_tobytes(bc, buf, &size, &gap, &info,
226 if (gap) {
227 fprintf(f, "%6lu %08lX <gap>%*s%s\n", listline++, offset,
/external/javassist/src/main/javassist/convert/
H A DTransformAccessArrayField.java142 // The gap may include extra padding
145 CodeIterator.Gap gap
147 pos = gap.position;
159 pos = updatePos(pos, gap.length);
/external/javassist/src/main/javassist/expr/
H A DExpr.java293 int gap = code.length - size;
297 if (gap > 0)
298 pos = iterator.insertGapAt(pos, gap, false).position;
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/test/testFec/
H A Dtest_packet_masks_metrics.cc69 // Maximum gap size for characterizing the consecutiveness of the loss.
72 // Number of gap levels written to file/output.
91 // Number of loss configurations, for a given loss number and gap number.
92 // The gap number refers to the maximum gap/hole of a loss configuration
145 // The residual loss, as a function of the loss number and the gap number of
146 // the loss configurations. The gap number refers to the maximum gap/hole of
168 // Measure of the gap of the loss for configuration given by |state|.
330 // Compute the residual loss per gap, b
[all...]
/external/chromium_org/v8/src/compiler/
H A Dinstruction.cc264 const GapInstruction* gap = GapInstruction::cast(&instr); local
265 os << (instr.IsBlockStart() ? " block-start" : "gap ");
269 if (gap->parallel_moves_[i] != NULL) os << *gap->parallel_moves_[i];
342 GapInstruction* gap = GapInstruction::New(zone()); local
343 if (instr->IsControl()) instructions_.push_back(gap);
346 if (!instr->IsControl()) instructions_.push_back(gap);

Completed in 3678 milliseconds

123456