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

1234

/external/syslinux/com32/lib/
H A Dqsort.c12 static inline size_t newgap(size_t gap) argument
14 gap = (gap * 10) / 13;
15 if (gap == 9 || gap == 10)
16 gap = 11;
18 if (gap < 1)
19 gap = 1;
20 return gap;
26 size_t gap local
[all...]
/external/pdfium/core/fpdfdoc/
H A Dcpvt_dash.h13 CPVT_Dash(int32_t dash, int32_t gap, int32_t phase) argument
14 : nDash(dash), nGap(gap), nPhase(phase) {}
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
H A DDeltaFriendlyFile.java89 long gap = rangeToUncompress.getOffset() - lastReadOffset;
90 if (gap > 0) {
92 oldFileRafis.setRange(lastReadOffset, gap);
/external/webrtc/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
100 int gap = 0; variable
104 gap = static_cast<int>(rtc::Time() - last_insert_dtmf_call_);
110 << " gap=" << gap << "."; variable
111 dtmf_info_queue_.push_back(DtmfInfo(code, duration, gap));
163 // DtmfInfo's gap fiel
[all...]
/external/skia/gm/
H A Darithmode.cpp104 SkScalar gap = SkIntToScalar(WW + 20); local
109 canvas->translate(gap, 0);
111 canvas->translate(gap, 0);
118 canvas->translate(gap, 0);
136 canvas->translate(gap, 0);
138 canvas->translate(gap, 0);
147 canvas->translate(gap, 0);
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/holiday/
H A DHolidayBorderPanel.java69 /** Default gap between border and contained component (5). */
82 private int gap; field in class:HolidayBorderPanel
97 gap = DEFAULT_GAP;
192 int dist = thickness + gap;
244 * Sets the gap between the border and the contained Component.
246 * @param gap The new gap, in pixels.
248 public HolidayBorderPanel setGap(int gap) { argument
250 if (gap > -1) {
251 this.gap
[all...]
/external/skia/src/utils/
H A DSkDashPath.cpp19 SkScalar gap = intervals[i]; local
20 if (phase > gap || (phase == gap && gap)) {
21 phase -= gap;
24 return gap - phase;
/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/v8/src/
H A Djson-stringifier.cc92 Handle<Object> gap) {
94 if (!gap->IsUndefined(isolate_) && !InitializeGap(gap)) {
156 bool JsonStringifier::InitializeGap(Handle<Object> gap) { argument
159 if (gap->IsJSValue()) {
160 Handle<Object> value(Handle<JSValue>::cast(gap)->value(), isolate_);
162 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate_, gap,
163 Object::ToString(isolate_, gap), false);
165 ASSIGN_RETURN_ON_EXCEPTION_VALUE(isolate_, gap, Object::ToNumber(gap),
90 Stringify(Handle<Object> object, Handle<Object> replacer, Handle<Object> gap) argument
[all...]
H A Djson-stringifier.h22 Handle<Object> gap);
28 bool InitializeGap(Handle<Object> gap);
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DBarRenderer.java66 * Sets the size of the gap between the bar (or bar groups) when using the VARIABLE_WIDTH render style
162 // The default gap between each bar section
163 int gap = (int) barGap;
167 float f_rough_width = ((plotArea.width() - ((axisMap.size() - 1) * gap)) / (axisMap.size() - 1));
170 if (gap > rough_width) {
171 gap = rough_width / 2;
177 //Log.d("PARAMTER","GAP=" + gap);
198 if (barGroup.intX - barGroup.prev.intX - gap - 1 > (int)(rough_width * 1.5)) {
204 // base left off prev right to get the gap correct.
205 barGroup.leftX = barGroup.prev.rightX + gap
[all...]
/external/autotest/server/site_tests/hardware_StorageStress/
H A Dhardware_StorageStress.py26 def run_once(self, client_ip, gap=_TEST_GAP, duration=_TEST_DURATION,
36 @param gap: gap between each test (second) default = 1 min
97 time.sleep(gap)
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DClassProto.java644 FieldGap gap = gaps.peek();
645 if (gap != null && gap.size >= fieldSize) {
647 linkedFields.put(gap.offset, field);
648 if (gap.size > fieldSize) {
649 addFieldGap(gap.offset + fieldSize, gap.offset + gap.size, gaps);
/external/skia/tools/flags/
H A DSkCommandLineFlags.cpp176 int gap; local
180 gap = 0;
183 gap = 1;
186 currLine += spaceIndex + gap;
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
H A DContinuousOutputModel.java153 final double gap = model.getInitialTime() - current;
154 if (FastMath.abs(gap) > 1.0e-3 * FastMath.abs(step)) {
156 LocalizedFormats.HOLE_BETWEEN_MODELS_TIME_RANGES, FastMath.abs(gap));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DSICBlockCipher.java221 int gap = (int)(byteCount + n + (blockSize * numBlocks));
223 if (gap >= 0)
230 byteCount = blockSize + gap;
/external/compiler-rt/lib/msan/
H A Dmsan_linux.cc62 uptr gap = 16 * GetPageSizeCached(); local
63 beg += gap;
64 size -= gap;
/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/webrtc/webrtc/modules/remote_bitrate_estimator/test/
H A Dbwe.cc25 // With the assumption that packet loss is lower than 97%, the max gap
209 int gap = static_cast<uint16_t>(newest_seq_num - oldest_seq_num + 1); local
211 return static_cast<float>(gap - number_packets_received) / gap;
/external/skia/tools/
H A Dcolorspaceinfo.cpp144 const float gap = 16.0f; local
147 const float gammaWidth = cellWidth - 2 * gap;
148 const float gammaHeight = cellHeight - 2 * gap;
150 const float ox = gap + cellWidth * col;
151 const float oy = gap + gammaHeight;
/external/webrtc/webrtc/modules/rtp_rtcp/test/testFec/
H A Dtest_packet_masks_metrics.cc62 // Maximum gap size for characterizing the consecutiveness of the loss.
65 // Number of gap levels written to file/output.
84 // Number of loss configurations, for a given loss number and gap number.
85 // The gap number refers to the maximum gap/hole of a loss configuration
138 // The residual loss, as a function of the loss number and the gap number of
139 // the loss configurations. The gap number refers to the maximum gap/hole of
161 // Measure of the gap of the loss for configuration given by |state|.
323 // Compute the residual loss per gap, b
[all...]
/external/dng_sdk/source/
H A Ddng_utils.h657 real32 gap = v - Min_real32 (r, Min_real32 (g, b)); local
659 if (gap > 0.0f)
665 h = (g - b) / gap;
676 h = 2.0f + (b - r) / gap;
681 h = 4.0f + (r - g) / gap;
684 s = gap / v;

Completed in 2217 milliseconds

1234