/frameworks/av/media/libeffects/lvm/lib/Common/src/ |
LVC_Mixer_SetTimeConstant.c | 29 /* Delta=(2147483647*4*1000)/(NumChannels*SampleRate*Tc_millisec) */ 41 /* Delta - the step change for fractional gain per 4 samples */ 63 LVM_INT32 Delta=DeltaTable[Fs]; 64 Delta=Delta>>(NumChannels-1); 67 Delta=0x7FFFFFFF; 69 Delta=Delta/Tc_millisec; 71 if(Delta==0) 72 Delta=1; // If Time Constant is so large that Delta is 0, assign minimum value to Delt [all...] |
LVC_Mixer_VarSlope_SetTimeConstant.c | 30 /* Delta=(2147483647*4*1000)/(NumChannels*SampleRate*Tc_millisec) */ 42 /* Delta - the step change for fractional gain per 4 samples */ 64 LVM_INT32 Delta=DeltaTable[Fs]; 69 Delta=Delta>>(NumChannels-1); 81 Delta=0x7FFFFFFF; 83 Delta=Delta/Tc_millisec; 85 if(Delta==0) 86 Delta=1; // If Time Constant is so large that Delta is 0, assign minimum value to Delt [all...] |
LVC_Core_MixSoft_1St_D16C31_WRA.c | 40 LVM_INT32 Delta=pInstance->Delta; 50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/ 63 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/ 78 Current -= Delta; /* Q31 + Q31 into Q31*/ 90 Current -= Delta; /* Q31 + Q31 into Q31*/
|
LVC_Mixer_Private.h | 35 LVM_INT32 Delta; /* 32 bit number specifying the fractional value of Delta Gain */
|
LVC_Core_MixInSoft_D16C31_SAT.c | 40 LVM_INT32 Delta=pInstance->Delta; 50 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/ 69 ADD2_SAT_32x32(Current,Delta,Temp); /* Q31 + Q31 into Q31*/ 89 Current -= Delta; /* Q31 + Q31 into Q31*/ 107 Current -= Delta; /* Q31 + Q31 into Q31*/
|
/external/chromium_org/net/quic/ |
quic_time.h | 27 // A QuicTime::Delta represents the signed difference between two points in 29 class NET_EXPORT_PRIVATE Delta { 31 explicit Delta(base::TimeDelta delta); 34 static Delta Zero(); 37 static Delta Infinite(); 40 static Delta FromSeconds(int64 secs); 43 static Delta FromMilliseconds(int64 ms); 46 static Delta FromMicroseconds(int64 us); 57 Delta Add(const Delta& delta) const [all...] |
quic_time.cc | 14 QuicTime::Delta::Delta(base::TimeDelta delta) 15 : delta_(delta) { 19 QuicTime::Delta QuicTime::Delta::Zero() { 20 return QuicTime::Delta::FromMicroseconds(0); 24 QuicTime::Delta QuicTime::Delta::Infinite() { 25 return QuicTime::Delta::FromMicroseconds(kQuicInfiniteTimeUs) [all...] |
quic_framer.cc | 96 QuicPacketSequenceNumber Delta(QuicPacketSequenceNumber a, 108 return (Delta(target, a) < Delta(target, b)) ? a : b; 691 // epoch_delta is the delta between epochs the sequence number was serialized [all...] |
/external/llvm/lib/Support/ |
DeltaAlgorithm.cpp | 44 DeltaAlgorithm::Delta(const changeset_ty &Changes, 66 return Delta(Changes, SplitSets); 79 Res = Delta(*it, Sets); 95 Res = Delta(Complement, ComplementSets); 109 // Otherwise run the real delta algorithm. 113 return Delta(Changes, Sets);
|
/external/chromium_org/third_party/skia/src/core/ |
SkDeviceLooper.h | 84 enum Delta {
|
/external/skia/src/core/ |
SkDeviceLooper.h | 84 enum Delta {
|
/external/chromium_org/third_party/freetype/src/pshinter/ |
pshglob.c | 155 FT_Int reference, delta; local 166 delta = read[0] - reference; 175 delta = read[1] - reference; 196 if ( delta < 0 ) 198 if ( delta < delta0 ) 199 zone->org_delta = delta; 203 if ( delta > delta0 ) 204 zone->org_delta = delta; 214 zone->org_delta = delta; 279 FT_Int delta; local 302 FT_Int delta; local 319 FT_Int dim, top, bot, delta; local 555 FT_Pos delta; local [all...] |
/external/clang/lib/Rewrite/Core/ |
DeltaTree.cpp | 1 //===--- DeltaTree.cpp - B-Tree for Rewrite Delta tracking ----------------===// 24 /// DeltaTree implements a key/value mapping from FileIndex to Delta, allowing 26 /// can also efficiently tell us the full accumulated delta for a specific 31 /// former and adds children pointers. Each node knows the full delta of all 33 /// full delta implied by a whole subtree in constant time. 41 int Delta; 44 SourceDelta Delta; 45 Delta.FileLoc = Loc; 46 Delta.Delta = D [all...] |
/external/freetype/src/pshinter/ |
pshglob.c | 155 FT_Int reference, delta; local 166 delta = read[0] - reference; 175 delta = read[1] - reference; 196 if ( delta < 0 ) 198 if ( delta < delta0 ) 199 zone->org_delta = delta; 203 if ( delta > delta0 ) 204 zone->org_delta = delta; 214 zone->org_delta = delta; 279 FT_Int delta; local 302 FT_Int delta; local 319 FT_Int dim, top, bot, delta; local 555 FT_Pos delta; local [all...] |
/external/llvm/lib/MC/ |
MCObjectStreamer.cpp | 340 const MCExpr *Delta = 343 if (!Delta->EvaluateAsAbsolute(Res, getAssembler()))
|
/external/llvm/lib/Target/SystemZ/ |
SystemZFrameLowering.cpp | 353 int64_t Delta = -int64_t(StackSize); 354 emitIncrement(MBB, MBBI, DL, SystemZ::R15D, Delta, ZII); 361 AdjustSPLabel, SPOffsetFromCFA + Delta)); 362 SPOffsetFromCFA += Delta;
|
/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/llvm/utils/TableGen/ |
FixedLenDecoderEmitter.cpp | 621 uint32_t Delta = DestIdx - FixupIdx - 2; 624 assert(Delta < 65536U && "disassembler decoding table too large!"); 625 Table[FixupIdx] = (uint8_t)Delta; 626 Table[FixupIdx + 1] = (uint8_t)(Delta >> 8); [all...] |
/external/smack/src/org/xbill/DNS/ |
ZoneTransferIn.java | 69 public static class Delta { 74 /** The starting serial number of this delta. */ 77 /** The ending serial number of this delta. */ 87 Delta() { 140 Delta delta = new Delta(); local 141 delta.deletes.add(soa); 142 delta.start = getSOASerial(soa); 143 ixfr.add(delta); 147 Delta delta = (Delta) ixfr.get(ixfr.size() - 1); local 155 Delta delta = (Delta) ixfr.get(ixfr.size() - 1); local 407 Delta delta; local [all...] |
/external/clang/test/Misc/ |
diag-template-diffing.cpp | 121 class Delta{}; 136 void set5(Alpha<Beta<Gamma<Delta<int, int>, int>, int>, int>); 141 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'Alpha<Beta<Gamma<void, void>, double>, double>' to 'Alpha<Beta<Gamma<Delta<int, int>, int>, int>, int>' for 1st argument 143 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'Alpha<Beta<Gamma<void, void>, double>, double>' to 'Alpha<Beta<Gamma<Delta<int, int>, int>, int>, int>' for 1st argument 149 // CHECK-ELIDE-TREE: [void != Delta<int, int>], 158 // CHECK-NOELIDE-TREE: [void != Delta<int, int>], 164 set5(Alpha<Beta<Delta<int, int>, int>, int>()); 167 // CHECK-ELIDE-NOTREE: candidate function not viable: no known conversion from 'Alpha<Beta<Delta<int, int>, [...]>, [...]>' to 'Alpha<Beta<Gamma<Delta<int, int>, int>, [...]>, [...]>' for 1st argument 169 // CHECK-NOELIDE-NOTREE: candidate function not viable: no known conversion from 'Alpha<Beta<Delta<int, int>, int>, int>' to 'Alpha<Beta<Gamma<Delta<int, int>, int>, int>, int>' for 1st argumen [all...] |
/external/llvm/lib/CodeGen/ |
MachineInstr.cpp | [all...] |
/external/llvm/lib/Target/PowerPC/ |
PPCFrameLowering.cpp | 768 int Delta = StackAdj - MaxTCRetDelta; 769 assert((Delta >= 0) && "Delta must be positive"); 771 FrameSize += (StackAdj +Delta); [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
RegionStore.cpp | 791 ptrdiff_t Delta = FieldsInBindingKey.size() - Fields.size(); 792 if (Delta >= 0) 793 return std::equal(FieldsInBindingKey.begin() + Delta, 798 Fields.begin() - Delta); [all...] |
/external/llvm/lib/Analysis/ |
DependenceAnalysis.cpp | 96 STATISTIC(DeltaApplications, "Delta applications"); 97 STATISTIC(DeltaSuccesses, "Delta successes"); 98 STATISTIC(DeltaIndependence, "Delta independence"); 99 STATISTIC(DeltaPropagations, "Delta propagations"); 899 const SCEV *Delta = SE->getMinusSCEV(X, Y); 902 return Delta->isZero(); 904 return SE->isKnownNonZero(Delta); 906 return SE->isKnownNonNegative(Delta); 908 return SE->isKnownNonPositive(Delta); 910 return SE->isKnownPositive(Delta); [all...] |
/external/llvm/lib/Object/ |
MachOObjectFile.cpp | 485 uint64_t Delta; 490 Delta = Sec.Offset - Sec.Address; 493 Delta = Sec.Offset - Sec.Address; 496 Res += Delta; [all...] |