HomeSort by relevance Sort by last modified time
    Searched full:delta (Results 701 - 725 of 3461) sorted by null

<<21222324252627282930>>

  /external/chromium_org/sdch/open-vcdiff/src/
vcdiff_defs.h 42 // The delta file header section as described in section 4.1 of the RFC:
44 // "Each delta file starts with a header section organized as below.
89 // parts of the delta encoding data [...]"
93 // application-defined code table is to be used for decoding the delta
132 // If this flag is set, the delta window includes an Adler32 checksum
  /external/chromium_org/third_party/icu/source/test/cintltst/
sprpdata.c 125 /* ascertain if the value is index or delta */
152 int32_t value=0, index=0, delta=0; local
185 delta = value;
218 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
219 log_err("Did not get the expected result. Expected: 0x%04X Got: 0x%04X \n", mapping[0],(codepoint-delta));
  /external/chromium_org/tools/trace/
trace.html 232 var delta = 0;
234 delta = event.wheelDelta / 120;
236 delta = - event.detail / 3;
238 if (delta) {
242 if (delta < 0)
  /external/icu4c/layout/
LookupProcessor.cpp 32 le_uint32 delta; local
37 delta = applySubtable(lookupSubtable, lookupType, glyphIterator, fontInstance, success);
39 if (delta > 0 && LE_FAILURE(success)) {
108 le_uint32 delta = applyLookupTable(lookupTable, &tempIterator, fontInstance, success); local
110 return delta;
  /external/icu4c/test/cintltst/
sprpdata.c 126 /* ascertain if the value is index or delta */
153 int32_t value=0, idx=0, delta=0; local
186 delta = value;
219 if(retType!=USPREP_DELETE && (codepoint-delta) != (uint16_t)mapping[0]){
220 log_err("Did not get the expected result. Expected: 0x%04X Got: 0x%04X \n", mapping[0],(codepoint-delta));
  /external/open-vcdiff/src/
headerparser.cc 226 VCD_ERROR << "Delta file contains VCD_TARGET flag, which is not "
249 "was called twice for the same delta window" << VCD_ENDL;
253 if (!ParseSize("length of the delta encoding", &delta_encoding_length_)) {
278 VCD_ERROR << "Secondary compression of delta file sections "
314 VCD_ERROR << "The length of the delta encoding does not match "
vcdiff_defs.h 42 // The delta file header section as described in section 4.1 of the RFC:
44 // "Each delta file starts with a header section organized as below.
89 // parts of the delta encoding data [...]"
93 // application-defined code table is to be used for decoding the delta
132 // If this flag is set, the delta window includes an Adler32 checksum
  /frameworks/base/libs/hwui/
Rect.h 168 void outset(float delta) {
169 left -= delta;
170 top -= delta;
171 right += delta;
172 bottom += delta;
  /external/chromium_org/content/browser/renderer_host/
backing_store_gtk.cc 625 void BackingStoreGtk::ScrollBackingStore(const gfx::Vector2d& delta,
632 DCHECK(delta.x() == 0 || delta.y() == 0);
634 if (delta.y()) {
635 // Positive values of |delta|.y() scroll up
636 if (abs(delta.y()) < clip_rect.height()) {
639 std::max(clip_rect.y(), clip_rect.y() - delta.y()),
641 clip_rect.height() - abs(delta.y()),
643 std::max(clip_rect.y(), clip_rect.y() + delta.y()) /* dest y */
646 } else if (delta.x())
    [all...]
  /external/llvm/test/CodeGen/Thumb/
asmprinter-bug.ll 48 %delta.0 = select i1 %16, i32 0, i32 4 ; <i32> [#uses=2]
53 %20 = or i32 %delta.0, 2 ; <i32> [#uses=1]
54 %21 = select i1 %19, i32 %delta.0, i32 %20 ; <i32> [#uses=1]
79 %delta.1 = or i32 %21, %iftmp.1.0 ; <i32> [#uses=1]
80 %delta.2 = or i32 %delta.1, %25 ; <i32> [#uses=1]
81 %29 = xor i32 %delta.2, 1 ; <i32> [#uses=3]
175 %delta.0.in = phi i32 [ %13, %bb2 ], [ %inputbuffer.127, %bb ] ; <i32> [#uses=5]
177 %delta.0 = and i32 %delta.0.in, 15 ; <i32> [#uses=1
    [all...]
  /external/opencv/cv/src/
cvcorner.cpp 218 int i, j, y, dst_y = 0, max_dy, delta = 0; local
317 for( y = 0; y < size.height; y += delta )
321 delta = MIN( size.height - y, max_dy );
322 if( y + delta == size.height )
324 dx_filter.process( src, Dx, cvRect(0,y,-1,delta), cvPoint(0,0), stage );
325 stripe_size.height = dy_filter.process( src, Dy, cvRect(0,y,-1,delta),
330 delta = icvIPPFilterNextStripe( src, tempsrc, y, el_size, el_anchor );
331 stripe_size.height = delta;
515 int i, j, y, dst_y = 0, max_dy, delta = 0; local
620 for( y = 0; y < size.height; y += delta )
    [all...]
  /art/compiler/dex/quick/arm/
assemble_arm.cc 1050 int delta = target - pc; local
1108 int delta = target - pc; local
1154 int delta = 0; local
1169 int delta = target - pc; local
1180 int delta = target - pc; local
1205 int delta = target - cur_pc; local
1216 int delta = target - cur_pc; local
    [all...]
  /external/freetype/src/smooth/
ftgrays.c 633 TCoord ex1, ex2, fx1, fx2, delta, mod; local
656 delta = y2 - y1;
657 ras.area += (TArea)(( fx1 + fx2 ) * delta);
658 ras.cover += delta;
677 delta = (TCoord)( p / dx );
681 delta--;
685 ras.area += (TArea)(( fx1 + first ) * delta);
686 ras.cover += delta;
690 y1 += delta;
697 p = ONE_PIXEL * ( y2 - y1 + delta );
743 int delta, rem, lift, incr; local
1520 TPos delta; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.c 627 motion_vector(struct vl_mpg12_bs *bs, int r, int s, int dmv, short delta[2], short dmvector[2])
640 delta[t] = ((abs(motion_code) - 1) << r_size) + residual;
642 delta[t] = -delta[t];
644 delta[t] = motion_code;
665 short dmvector[2], delta[2]; local
669 motion_vector(bs, 0, s, dmv, delta, dmvector);
670 mb->PMV[0][s][0] = wrap(mb->PMV[0][s][0] + delta[0], bs->desc->f_code[s][0]);
671 mb->PMV[0][s][1] = wrap(DIV2DOWN(mb->PMV[0][s][1]) + delta[1], bs->desc->f_code[s][1]) * 2;
674 motion_vector(bs, 1, s, dmv, delta, dmvector)
689 short dmvector[2], delta[2]; local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingBox.java 808 float delta; local
811 delta = closest.x + xExtent;
812 sqrDistance += delta * delta;
815 delta = closest.x - xExtent;
816 sqrDistance += delta * delta;
821 delta = closest.y + yExtent;
822 sqrDistance += delta * delta;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.c 627 motion_vector(struct vl_mpg12_bs *bs, int r, int s, int dmv, short delta[2], short dmvector[2])
640 delta[t] = ((abs(motion_code) - 1) << r_size) + residual;
642 delta[t] = -delta[t];
644 delta[t] = motion_code;
665 short dmvector[2], delta[2]; local
669 motion_vector(bs, 0, s, dmv, delta, dmvector);
670 mb->PMV[0][s][0] = wrap(mb->PMV[0][s][0] + delta[0], bs->desc->f_code[s][0]);
671 mb->PMV[0][s][1] = wrap(DIV2DOWN(mb->PMV[0][s][1]) + delta[1], bs->desc->f_code[s][1]) * 2;
674 motion_vector(bs, 1, s, dmv, delta, dmvector)
689 short dmvector[2], delta[2]; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
screen_locker.cc 176 base::TimeDelta delta = base::Time::Now() - authentication_start_time_; local
177 VLOG(1) << "Authentication failure: " << delta.InSecondsF() << " second(s)";
178 UMA_HISTOGRAM_TIMES("ScreenLocker.AuthenticationFailureTime", delta);
203 base::TimeDelta delta = base::Time::Now() - authentication_start_time_; local
204 VLOG(1) << "Authentication success: " << delta.InSecondsF() << " second(s)";
205 UMA_HISTOGRAM_TIMES("ScreenLocker.AuthenticationSuccessTime", delta);
428 base::TimeDelta delta = base::Time::Now() - start_time_; local
430 << delta.InSecondsF() << " second(s)";
431 UMA_HISTOGRAM_TIMES("ScreenLocker.ScreenLockTime", delta);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
BuildResultsElement.java 35 static final String P_ID_BUILD_DELTA = "BuildResultsElement.delta"; //$NON-NLS-1$
45 static final String P_STR_BUILD_DELTA = "delta with baseline"; //$NON-NLS-1$
46 static final String P_STR_BUILD_ERROR = "delta error"; //$NON-NLS-1$
113 list.add("The results history shows that the variation of its delta is over 20%, hence its result is surely not reliable");
116 list.add("The results history shows that the variation of its delta is between 10% and 20%, hence its result may not be really reliable");
236 double delta = (baselineValue - buildValue) / baselineValue; local
237 if (Double.isNaN(delta)) {
242 return new Double(delta);
271 return "The delta on this test is over the 10% threshold, hence may indicate a possible regression.";
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java 276 // if the delta of euler angles is higher than PI, we create intermediate keyframes
281 //the maximum delta angle (x,y or z)
282 float delta = Math.max(Math.abs(x - prevRot.eulerAngles.x), Math.abs(y - prevRot.eulerAngles.y)); local
283 delta = Math.max(delta, Math.abs(z - prevRot.eulerAngles.z));
284 //if delta > PI we have to create intermediates key frames
285 if (delta >= FastMath.PI) {
286 //frames delta
294 int keyStep = (int) (((float) (dF)) / delta * (float) EULER_STEP);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 665 int32_t delta = static_cast<int32_t>(Value - FinalAddress + Addend); local
666 if (SignExtend32<24>(delta) != delta)
669 writeInt32BE(LocalAddress, 0x48000001 | (delta & 0x03FFFFFC));
673 int32_t delta = static_cast<int32_t>(Value - FinalAddress + Addend); local
674 if (SignExtend32<32>(delta) != delta)
676 writeInt32BE(LocalAddress, delta);
680 uint64_t Delta = Value - FinalAddress + Addend;
681 writeInt64BE(LocalAddress, Delta);
1002 int32_t delta = static_cast<int32_t>(Target - RelocTarget); local
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
rmepsilon.h 200 // and convergence delta are taken in the options argument.
303 float delta; member in struct:fst::RmEpsilonFstOptions
305 RmEpsilonFstOptions(const CacheOptions &opts, float delta = kDelta)
306 : CacheOptions(opts), delta(delta) {}
308 explicit RmEpsilonFstOptions(float delta = kDelta) : delta(delta) {}
337 RmEpsilonOptions<A, FifoQueue<StateId> >(&queue_, opts.delta,
  /external/aac/libSBRenc/src/
ps_bitenc.cpp 304 INT delta = (val[band] - lastVal) + tableOffset; local
306 if( (delta>maxVal) || (delta<0) ) {
308 delta = delta>0?maxVal:0;
310 bitCnt += FDKsbrEnc_WriteBits_ps(hBitBuf, codeTable[delta], lengthTable[delta]);
331 INT delta = (val[band] - valLast[band]) + tableOffset; local
332 if( (delta>maxVal) || (delta<0) )
    [all...]
tran_det.cpp 119 FIXP_DBL delta,tmp0,tmp1,tmp2; local
157 delta = fixp_abs(fMult(tmp2, FL2FXCONST_DBL(0.6931471806f)));
166 delta_sum += (FIXP_DBL)(fMult(sqrtFixp(result), delta));
306 FIXP_DBL delta; local
346 delta = spectralChange(EnergiesM,
354 if (delta > (h_sbrTransientDetector->split_thr >> LD_DATA_SHIFT)) /* delta scaled by 1/64 */
530 FIXP_DBL delta, tran; local
533 delta = (FIXP_DBL)0;
537 delta += pEnergiesTemp[jIndex+d]; /* R *
    [all...]
  /external/libvorbis/vq/
vqgen.c 162 the encoded (delta) values, not abs positions. This requires minor
170 float delta; local
187 /* first find the basic delta amount from the maximum span to be
188 encoded. Loosen the delta slightly to allow for additional error
191 delta=(maxdel-mindel)/((1<<q->quant)-1.5f);
194 q->delta=_float32_pack(delta);
197 delta=_float32_unpack(q->delta);
203 float now=rint((val-last-mindel)/delta);
227 float delta=_float32_unpack(q->delta); local
    [all...]
  /cts/tools/signature-tools/test/signature/comparator/
ClassCompareTest.java 67 IApiDelta delta = compare(fromApi, toApi); local
68 IClassDefinitionDelta classDelta = getSingleClassDelta(delta);
83 IApiDelta delta = compare(fromApi, toApi); local
84 IClassDefinitionDelta classDelta = getSingleClassDelta(delta);
100 IApiDelta delta = compare(fromApi, toApi); local
101 IClassDefinitionDelta classDelta = getSingleClassDelta(delta);

Completed in 1845 milliseconds

<<21222324252627282930>>