/external/webrtc/src/common_audio/signal_processing/ |
D | resample_fractional.c | 44 void WebRtcSpl_Resample48khzTo32khz(const WebRtc_Word32 *In, WebRtc_Word32 *Out, in WebRtcSpl_Resample48khzTo32khz() argument 58 tmp += kCoefficients48To32[0][0] * In[0]; in WebRtcSpl_Resample48khzTo32khz() 59 tmp += kCoefficients48To32[0][1] * In[1]; in WebRtcSpl_Resample48khzTo32khz() 60 tmp += kCoefficients48To32[0][2] * In[2]; in WebRtcSpl_Resample48khzTo32khz() 61 tmp += kCoefficients48To32[0][3] * In[3]; in WebRtcSpl_Resample48khzTo32khz() 62 tmp += kCoefficients48To32[0][4] * In[4]; in WebRtcSpl_Resample48khzTo32khz() 63 tmp += kCoefficients48To32[0][5] * In[5]; in WebRtcSpl_Resample48khzTo32khz() 64 tmp += kCoefficients48To32[0][6] * In[6]; in WebRtcSpl_Resample48khzTo32khz() 65 tmp += kCoefficients48To32[0][7] * In[7]; in WebRtcSpl_Resample48khzTo32khz() 69 tmp += kCoefficients48To32[1][0] * In[1]; in WebRtcSpl_Resample48khzTo32khz() [all …]
|
D | resample.c | 22 static void WebRtcSpl_32khzTo22khzIntToShort(const WebRtc_Word32 *In, WebRtc_Word16 *Out, 25 void WebRtcSpl_32khzTo22khzIntToInt(const WebRtc_Word32 *In, WebRtc_Word32 *Out, 422 void WebRtcSpl_32khzTo22khzIntToInt(const WebRtc_Word32* In, in WebRtcSpl_32khzTo22khzIntToInt() argument 436 Out[0] = ((WebRtc_Word32)In[3] << 15) + (1 << 14); in WebRtcSpl_32khzTo22khzIntToInt() 439 WebRtcSpl_DotProdIntToInt(&In[0], &In[22], kCoefficients32To22[0], &Out[1], &Out[10]); in WebRtcSpl_32khzTo22khzIntToInt() 442 WebRtcSpl_DotProdIntToInt(&In[2], &In[20], kCoefficients32To22[1], &Out[2], &Out[9]); in WebRtcSpl_32khzTo22khzIntToInt() 445 WebRtcSpl_DotProdIntToInt(&In[3], &In[19], kCoefficients32To22[2], &Out[3], &Out[8]); in WebRtcSpl_32khzTo22khzIntToInt() 448 WebRtcSpl_DotProdIntToInt(&In[5], &In[17], kCoefficients32To22[3], &Out[4], &Out[7]); in WebRtcSpl_32khzTo22khzIntToInt() 451 WebRtcSpl_DotProdIntToInt(&In[6], &In[16], kCoefficients32To22[4], &Out[5], &Out[6]); in WebRtcSpl_32khzTo22khzIntToInt() 454 In += 16; in WebRtcSpl_32khzTo22khzIntToInt() [all …]
|
/external/clang/test/Analysis/objc/ |
D | direct-ivar-assignment-in-annotated-functions.m | 18 …- (void) someMethod: (MyClass*)In __attribute__((annotate("objc_no_direct_instance_variable_assign… 19 - (void) someMethodNotAnnaotated: (MyClass*)In; 46 - (void) someMethod: (MyClass*)In { 47 …(__A) = In; // expected-warning {{Direct assignment to an instance variable backing a property; us… 48 …_X = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t… 49 …_Y = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t… 50 …_Z = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t… 55 - (void) someMethodNotAnnaotated: (MyClass*)In { 56 (__A) = In; 57 _X = In; // no-warning [all …]
|
/external/llvm/utils/FileUpdate/ |
D | FileUpdate.cpp | 47 OwningPtr<MemoryBuffer> In; in main() local 48 if (error_code ec = MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), In)) { in main() 59 if (Out && In->getBufferSize() == Out->getBufferSize() && in main() 60 memcmp(In->getBufferStart(), Out->getBufferStart(), in main() 81 OutStream.os().write(In->getBufferStart(), In->getBufferSize()); in main()
|
/external/llvm/test/Transforms/InstCombine/ |
D | 2007-11-15-CompareMiscomp.ll | 1 ; RUN: opt < %s -instcombine -S | grep "icmp eq i32 %In, 1" 4 define i1 @test(i32 %In) { 5 %c1 = icmp sgt i32 %In, -1 6 %c2 = icmp eq i32 %In, 1
|
D | 2008-06-21-CompareMiscomp.ll | 1 ; RUN: opt < %s -instcombine -S | grep "icmp eq i32 %In, 15" 5 define i1 @test(i32 %In) { 6 %c1 = icmp ugt i32 %In, 13 7 %c2 = icmp eq i32 %In, 15
|
/external/libcap-ng/libcap-ng-0.7/ |
D | ChangeLog | 5 - In pscap, don't drop capabilities when running with capabilities 8 - In netcap, make sure readlink is handled properly 10 - In netcap and pscap, ensure euid is initialized 27 - In netcap and pscap use the effective uid 28 - In capng_change_id, only retain setpcap if clearing the bounding set 36 - In netcap, don't complain about missing udp or raw network files 40 - In netcap, don't complain about missing network files 51 - In the init routine, set hdr.pid to current process 54 - In update function, reverse the order of bounding set vs capabilities
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 524 Value *In = ICI->getOperand(0); in transformZExtICmp() local 525 Value *Sh = ConstantInt::get(In->getType(), in transformZExtICmp() 526 In->getType()->getScalarSizeInBits()-1); in transformZExtICmp() 527 In = Builder->CreateLShr(In, Sh, In->getName()+".lobit"); in transformZExtICmp() 528 if (In->getType() != CI.getType()) in transformZExtICmp() 529 In = Builder->CreateIntCast(In, CI.getType(), false/*ZExt*/); in transformZExtICmp() 532 Constant *One = ConstantInt::get(In->getType(), 1); in transformZExtICmp() 533 In = Builder->CreateXor(In, One, In->getName()+".not"); in transformZExtICmp() 536 return ReplaceInstUsesWith(CI, In); in transformZExtICmp() 570 Value *In = ICI->getOperand(0); in transformZExtICmp() local [all …]
|
/external/clang/test/Analysis/ |
D | objc-properties.m | 31 - (void) someMethod: (MyClass*)In; 65 - (void) someMethod: (MyClass*)In { 66 …(__A) = In; // expected-warning {{Direct assignment to an instance variable backing a property; us… 67 …_X = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t… 68 …_Y = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t… 69 …_Z = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
|
/external/icu4c/data/locales/ |
D | af.txt | 530 one{"In {0} dag"} 531 other{"In {0} dae"} 542 one{"In {0} uur"} 543 other{"In {0} uur"} 554 one{"In {0} minuut"} 555 other{"In {0} minute"} 566 one{"In {0} maand"} 567 other{"In {0} maande"} 578 one{"In {0} sekond"} 579 other{"In {0} sekondes"} [all …]
|
D | de.txt | 812 one{"In {0} Tag"} 813 other{"In {0} Tagen"} 824 one{"In {0} Stunde"} 825 other{"In {0} Stunden"} 836 one{"In {0} Minute"} 837 other{"In {0} Minuten"} 848 one{"In {0} Monat"} 849 other{"In {0} Monaten"} 860 one{"In {0} Sekunde"} 861 other{"In {0} Sekunden"} [all …]
|
D | en.txt | 802 one{"In {0} day"} 803 other{"In {0} days"} 814 one{"In {0} hour"} 815 other{"In {0} hours"} 826 one{"In {0} minute"} 827 other{"In {0} minutes"} 838 one{"In {0} month"} 839 other{"In {0} months"} 850 one{"In {0} second"} 851 other{"In {0} seconds"} [all …]
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
D | TiledDrawingArea.cpp | 85 …ecatedSend(DrawingAreaProxyLegacyMessage::Invalidate, m_webPage->pageID(), CoreIPC::In(dirtyRect)); in display() 110 …recatedSend(DrawingAreaProxyLegacyMessage::DidSetSize, m_webPage->pageID(), CoreIPC::In(viewSize)); in setSize() 145 …(DrawingAreaProxyLegacyMessage::TileUpdated, m_webPage->pageID(), CoreIPC::In(tileID, updateChunk,… in updateTile() 159 …edSend(DrawingAreaProxyLegacyMessage::AllTileUpdatesProcessed, m_webPage->pageID(), CoreIPC::In()); in tileUpdateTimerFired() 189 …edSend(DrawingAreaProxyLegacyMessage::AllTileUpdatesProcessed, m_webPage->pageID(), CoreIPC::In()); in didReceiveMessage() 225 …dSend(DrawingAreaProxyLegacyMessage::SnapshotTaken, m_webPage->pageID(), CoreIPC::In(updateChunk)); in didReceiveMessage()
|
D | ChunkedUpdateDrawingArea.cpp | 87 …precatedSend(DrawingAreaProxyLegacyMessage::Update, m_webPage->pageID(), CoreIPC::In(updateChunk)); in display() 130 …edSend(DrawingAreaProxyLegacyMessage::DidSetSize, m_webPage->pageID(), CoreIPC::In(UpdateChunk())); in setSize() 140 …atedSend(DrawingAreaProxyLegacyMessage::DidSetSize, m_webPage->pageID(), CoreIPC::In(updateChunk)); in setSize()
|
/external/webkit/LayoutTests/storage/indexeddb/ |
D | request-event-propagation-expected.txt | 42 In IDBDatabase error capture 51 In IDBTransaction error capture 60 In IDBRequest handler 69 In IDBTransaction error bubble 78 In IDBDatabase error bubble 113 In IDBDatabase success capture 122 In IDBTransaction success capture 131 In IDBRequest handler
|
D | transaction-event-propagation-expected.txt | 26 In IDBDatabase abort capture 33 In abort handler 40 In IDBDatabase error bubble 62 In IDBDatabase complete capture 69 In IDBRequest handler
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | ChunkedUpdateDrawingAreaProxy.cpp | 99 …rocess()->deprecatedSend(DrawingAreaLegacyMessage::SuspendPainting, page->pageID(), CoreIPC::In()); in setPageIsVisible() 104 …tedSend(DrawingAreaLegacyMessage::ResumePainting, page->pageID(), CoreIPC::In(m_forceRepaintWhenRe… in setPageIsVisible() 136 …age->process()->deprecatedSend(DrawingAreaLegacyMessage::DidUpdate, page->pageID(), CoreIPC::In()); in deprecatedUpdate() 148 …->deprecatedSend(DrawingAreaLegacyMessage::SetSize, m_webPageProxy->pageID(), CoreIPC::In(m_size)); in sendSetSize()
|
/external/clang/test/SemaTemplate/ |
D | deduction-crash.cpp | 36 struct In; 39 struct In<a::int_<aaa::a>,my>; 44 In<a::int_<0> > a; in process()
|
/external/llvm/lib/Analysis/ |
D | README.txt | 5 In test/Transforms/LoopStrengthReduce/quadradic-exit-value.ll, the 15 In addition to being much more complicated, it involves i65 arithmetic, 20 In formatValue in test/CodeGen/X86/lsr-delayed-fold.ll,
|
/external/eigen/doc/ |
D | A05_PortingFrom2To3.dox | 29 In order to ease the switch from Eigen2 to Eigen3, Eigen3 features \ref Eigen2SupportModes "Eigen2 … 37 The USING_PART_OF_NAMESPACE_EIGEN macro has been removed. In Eigen 3, just do: 46 … second variable. In other words, the Eigen 2 code \code x.dot(y) \endcode is equivalent to the Ei… 96 In Eigen2, coefficient wise operations which have no proper mathematical definition (as a coefficie… 99 In Eigen3 this .cwise() prefix has been superseded by a new kind of matrix type called 122 In Eigen 2 you had to play with the part, extract, and marked functions to deal with triangular and… 234 <td class="alt">In place solving</td></tr> 250 In Eigen 2, the Transform class didn't really know whether it was a projective or affine transforma… 252 The Transform3f (etc) typedefs are no more. In Eigen 3, the Transform typedefs explicitly refer to … 266 In Eigen all operations are performed in a lazy fashion except the matrix products which are always… [all …]
|
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/ |
D | filter_functions.c | 55 void WebRtcIsac_AllZeroFilter(double *In, double *Coef, int lengthInOut, int orderCoef, double *Out… in WebRtcIsac_AllZeroFilter() argument 64 tmp = In[0] * Coef[0]; in WebRtcIsac_AllZeroFilter() 67 tmp += Coef[k] * In[-k]; in WebRtcIsac_AllZeroFilter() 71 In++; in WebRtcIsac_AllZeroFilter() 77 void WebRtcIsac_ZeroPoleFilter(double *In, double *ZeroCoef, double *PoleCoef, int lengthInOut, int… in WebRtcIsac_ZeroPoleFilter() argument 82 WebRtcIsac_AllZeroFilter(In,ZeroCoef,lengthInOut,orderCoef,Out); in WebRtcIsac_ZeroPoleFilter()
|
/external/llvm/lib/Transforms/IPO/ |
D | Internalize.cpp | 88 std::ifstream In(Filename); in LoadFile() local 89 if (!In.good()) { in LoadFile() 94 while (In) { in LoadFile() 96 In >> Symbol; in LoadFile()
|
D | LoopExtractor.cpp | 198 std::ifstream In(Filename); in LoadFile() local 199 if (!In.good()) { in LoadFile() 204 while (In) { in LoadFile() 206 In >> FunctionName; in LoadFile() 207 In >> BlockName; in LoadFile()
|
/external/clang/test/Modules/Inputs/System/usr/include/ |
D | module.map | 12 // In both directories (compiler support version wins, does not forward) 17 // In both directories (compiler support version wins, forwards)
|
/external/llvm/test/CodeGen/X86/ |
D | 2010-01-07-UAMemFeature.ll | 7 define <4 x float> @foo(<4 x float>* %P, <4 x float> %In) nounwind { 9 %B = fadd <4 x float> %A, %In
|