Searched refs:Temp (Results 1 - 25 of 53) sorted by relevance

123

/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp12.cpp17 template <class T> class Temp { class in namespace:test1
18 static Temp<A::Public> make() { return Temp<A::Public>(); }
20 template class Temp<A::Private>;
25 template class Temp<A::Private> Temp<int>::make();
38 template <class T> class Temp { class in namespace:test2
39 static Temp<A::Public> make();
41 template <> class Temp<A::Private> { class in namespace:test2
43 Temp(in function in class:test2::Temp
[all...]
/external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/
H A Dsbc_packing.c59 UINT8 Temp; local
93 Temp=0;
100 Temp <<= 1;
101 Temp |= pstrEncParams->as16Join[s32Sb];
111 *(pu8PacketPtr++)=Temp;
112 Temp = 0;
120 /*Temp=*pu8PacketPtr;*/
123 Temp<<= 4;
124 Temp |= *ps16GenPtr++;
129 *(pu8PacketPtr++)=Temp;
[all...]
/external/clang/utils/analyzer/
H A Dupdate_plist_test.pl3 require File::Temp;
4 use File::Temp ();
13 my $fh = File::Temp->new();
H A Dreducer.pl3 use File::Temp qw/ tempdir /;
/external/libvpx/libvpx/vp8/common/
H A Dfilter.c53 int Temp; local
59 Temp = ((int)src_ptr[-2 * (int)pixel_step] * vp8_filter[0]) +
68 Temp = Temp >> VP8_FILTER_SHIFT;
70 if (Temp < 0)
71 Temp = 0;
72 else if (Temp > 255)
73 Temp = 255;
75 output_ptr[j] = Temp;
98 int Temp; local
333 int Temp; local
[all...]
H A Dvariance_c.c261 int Temp; local
268 Temp = ((int)src_ptr[0] * vp8_filter[0]) +
271 output_ptr[j] = (unsigned int)(Temp >> VP8_FILTER_SHIFT);
295 unsigned short FData3[5*4]; /* Temp data bufffer used in filtering */
321 unsigned short FData3[9*8]; /* Temp data bufffer used in filtering */
345 unsigned short FData3[17*16]; /* Temp data bufffer used in filtering */
421 unsigned short FData3[16*9]; /* Temp data bufffer used in filtering */
445 unsigned short FData3[9*16]; /* Temp data bufffer used in filtering */
/external/webkit/Tools/Scripts/
H A Dgdb-safari32 use File::Temp qw/:mktemp/;
H A Dpdevenv6 use File::Temp qw/tempfile/;
H A Dshow-pretty-diff28 use File::Temp qw(tempfile);
H A Densure-valid-python32 use File::Temp qw(tempdir);
45 my $tempDirectory = File::Temp::tempdir("WebKitPythonXXXX", TMPDIR => 1, CLEANUP => 1);
H A Drun-launcher34 use File::Temp qw/tempfile/;
H A Dupdate-webkit-support-libs36 use File::Temp ();
52 my $tmpRelativeDir = File::Temp::tempdir("webkitlibsXXXXXXX", TMPDIR => 1, CLEANUP => 1);
H A Dparallelcl8 use File::Temp;
168 my (undef, $tmpFile) = File::Temp::tempfile('clcommandXXXXX', DIR => File::Spec->tmpdir, OPEN => 0);
H A Dupdate-webkit-dependency37 use File::Temp ();
71 my $tmpRelativeDir = File::Temp::tempdir("webkitlibsXXXXXXX", TMPDIR => 1, CLEANUP => 1);
H A Dcheck-Xcode-source-file-types38 use File::Temp qw(tempfile);
H A Dsort-Xcode-project-file35 use File::Temp qw(tempfile);
H A Dsvn-unapply67 use File::Temp qw(tempfile);
/external/opencv/cv/src/
H A Dcvcondens.cpp93 CV_CALL( CD->Temp = (float *) cvAlloc( sizeof( float ) * DP ));
138 cvFree( &CD->Temp );
170 /* Sets Temp to Zero */
171 icvSetZero_32f( ConDens->Temp, ConDens->DP, 1 );
178 icvAddVector_32f( ConDens->Temp, ConDens->State, ConDens->Temp, ConDens->DP );
185 icvScaleVector_32f( ConDens->Temp, ConDens->Temp, ConDens->DP, 1.f / Sum );
186 icvTransformVector_32f( ConDens->DynamMatr, ConDens->Temp, ConDens->State, ConDens->DP,
/external/antlr/antlr-3.4/runtime/Perl5/t/lib/ANTLR/Runtime/
H A DTest.pm15 use File::Temp qw( tempdir );
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp1.cpp282 template <int N, template <int> class Temp>
283 class Role : public Temp<N> {
284 friend class Temp<N>;
/external/webkit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseDiffWithMockFiles.pl24 use File::Temp;
92 my $mockDir = File::Temp->tempdir("parseDiffXXXX", CLEANUP => 1);
/external/opencv/cv/include/
H A Dcvtypes.h259 float* Temp; /* Temporary vector */ member in struct:CvConDensation
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
H A Dmessages.properties62 RSSFeedPublisherTask.UsingCVSTemp=Using CVS Temp:
/external/clang/test/CodeGenCXX/
H A Dvisibility.cpp346 template <class T> struct Temp { struct in namespace:Test15
353 return Temp<A>::Inner::buffer;
1195 template <template <class T> class Temp> struct C {
/external/llvm/lib/MC/
H A DMCDwarf.cpp379 uint64_t Temp, Opcode; local
402 Temp = LineDelta - DWARF2_LINE_BASE;
406 if (Temp >= DWARF2_LINE_RANGE) {
411 Temp = 0 - DWARF2_LINE_BASE;
422 Temp += DWARF2_LINE_OPCODE_BASE;
427 Opcode = Temp + AddrDelta * DWARF2_LINE_RANGE;
434 Opcode = Temp + (AddrDelta - MAX_SPECIAL_ADDR_DELTA) * DWARF2_LINE_RANGE;
449 OS << char(Temp);

Completed in 539 milliseconds

123