/external/doclava/res/assets/templates/assets/ |
search_autocomplete.js | 11 var c1 = row.cells[0]; 14 c1.className = "jd-autocomplete jd-selected"; 17 c1.className = "jd-autocomplete"; 48 var c1 = r.insertCell(-1); 50 c1.className = "jd-autocomplete"; 53 c1.onmousedown = function() { 56 c1.onmouseover = function() { 59 c1.onmouseout = function() { 62 c1.appendChild(link); 65 var c1 = r.insertCell(-1) [all...] |
/external/jpeg/ |
rdjpgcom.c | 88 int c1, c2; local 90 c1 = NEXTBYTE(); 91 if (c1 == EOF) 96 return (((unsigned int) c1) << 8) + ((unsigned int) c2); 175 int c1, c2; local 177 c1 = NEXTBYTE(); 179 if (c1 != 0xFF || c2 != M_SOI)
|
/external/qemu/distrib/jpeg-6b/ |
rdjpgcom.c | 88 int c1, c2; local 90 c1 = NEXTBYTE(); 91 if (c1 == EOF) 96 return (((unsigned int) c1) << 8) + ((unsigned int) c2); 175 int c1, c2; local 177 c1 = NEXTBYTE(); 179 if (c1 != 0xFF || c2 != M_SOI)
|
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
BitmapTest.java | 198 int c1 = bm1.getPixel(i % 16, i / 16); local 202 assertEquals("getPixel", c1, c2); 208 int a1 = Color.alpha(c1); 212 int r1 = Color.red(c1); 217 int g1 = Color.green(c1); 222 int b1 = Color.blue(c1); 229 " set+get " + Integer.toHexString(c1) +
|
/external/qemu/distrib/sdl-1.2.15/src/video/gapi/ |
SDL_gapivideo.c | 1006 PIXEL c1 = *srcPointer++; local 1007 c1 = ((c1 & REDMASK) >> 11) + ((c1 & GREENMASK) >> 5) + (c1 & BLUEMASK); 1008 *destPointer = (*destPointer & 0x0F) | ((~(c1 >> 3) << 4)); 1019 PIXEL c1 = *srcPointer++; local 1020 c1 = ((c1 & REDMASK) >> 11) + ((c1 & GREENMASK) >> 5) + (c1 & BLUEMASK); 1032 PIXEL c1 = *line1++; local 1048 PIXEL c1 = *srcPointer++; local 1056 PIXEL c1 = *srcPointer; local 1067 PIXEL c1 = *srcPointer; local [all...] |
/external/v8/test/mjsunit/bugs/ |
618.js | 29 function C1() { 32 var c1 = new C1(); 33 assertEquals(23, c1.x); 34 assertEquals("undefined", typeof c1.y); 38 C1.prototype = { set x(value) { this.y = 23; } }; 39 var c1 = new C1(); 40 assertEquals("undefined", typeof c1.x); 41 assertEquals(23, c1.y) [all...] |
/external/valgrind/main/memcheck/tests/ |
varinfo5so.c | 126 typedef struct { short c1; char* c2[3]; } XX; member in struct:__anon17264 137 croak(1 + (char*)(&a[3].xyzzy[x*y].c1)); 141 return a[3].xyzzy[x*y].c1;
|
/external/icu4c/test/cintltst/ |
custrtst.c | 1195 UChar32 c1, c2; local 1549 UChar32 c1, c2; local [all...] |
/external/libvorbis/lib/ |
smallft.c | 271 static void dradfg(int ido,int ip,int l1,int idl1,float *cc,float *c1, 300 ch[t2]=c1[t2]; 319 ch[t3-1]=wa[idij-1]*c1[t3-1]+wa[idij]*c1[t3]; 320 ch[t3]=wa[idij-1]*c1[t3]-wa[idij]*c1[t3-1]; 336 ch[t3-1]=wa[idij-1]*c1[t3-1]+wa[idij]*c1[t3]; 337 ch[t3]=wa[idij-1]*c1[t3]-wa[idij]*c1[t3-1] [all...] |
/external/speex/libspeex/ |
smallft.c | 273 static void dradfg(int ido,int ip,int l1,int idl1,float *cc,float *c1, 302 ch[t2]=c1[t2]; 321 ch[t3-1]=wa[idij-1]*c1[t3-1]+wa[idij]*c1[t3]; 322 ch[t3]=wa[idij-1]*c1[t3]-wa[idij]*c1[t3-1]; 338 ch[t3-1]=wa[idij-1]*c1[t3-1]+wa[idij]*c1[t3]; 339 ch[t3]=wa[idij-1]*c1[t3]-wa[idij]*c1[t3-1] [all...] |
/external/chromium/chrome/browser/ui/ |
input_window_dialog_win.cc | 179 ColumnSet* c1 = layout->AddColumnSet(0); local 180 c1->AddColumn(GridLayout::CENTER, GridLayout::CENTER, 0, 182 c1->AddPaddingColumn(0, views::kRelatedControlHorizontalSpacing); 183 c1->AddColumn(GridLayout::FILL, GridLayout::CENTER, 1,
|
/external/clang/test/Sema/ |
attr-aligned.c | 28 char c1[__alignof__(c) == 4 ?: -1] = {0}; variable
|
vla.c | 40 extern int (*c1)[i]; // expected-error {{variably modified type declaration can not have 'extern' linkage}}
|
/external/clang/test/SemaCXX/ |
aggregate-initialization.cpp | 70 C c1 = { 1 }; local
|
constexpr-value-init.cpp | 26 constexpr C c1; // expected-error {{requires a user-provided default constructor}} variable
|
scope-check.cpp | 71 C c1; // expected-note {{jump bypasses variable initialization}} 229 const C &c1 = 42; // expected-note {{jump exits scope of variable with non-trivial destructor}} local 244 const int &c1 = C(1).i; // expected-note {{jump exits scope of variable with non-trivial destructor}} local 259 const int &c1 = C(1); local
|
vtable-instantiation.cc | 4 template<class T1> struct C1 { 5 virtual void c1() { function in struct:PR8640::C1 12 new C1<T2>(); // expected-note {{in instantiation of member function}}
|
/external/clang/test/SemaTemplate/ |
attributes.cpp | 17 check_alignment<1>::t c1; member in namespace:attribute_aligned
|
class-template-id.cpp | 37 N::C<int> c1;
|
/external/grub/stage2/ |
iso9660.h | 199 #define RRMAGIC(c1, c2) ((c1)|(c2) << 8) 201 #define CHECK2(ptr, c1, c2) \ 202 (*(unsigned short *)(ptr) == (((c1) | (c2) << 8) & 0xFFFF))
|
/external/opencv/cv/src/ |
_cvgeom.h | 63 double* a1, double* b1, double* c1,
|
/external/skia/tools/ |
skdiff.h | 258 static inline SkPMColor compute_diff_pmcolor(SkPMColor c0, SkPMColor c1) { 259 int dr = SkGetPackedR32(c0) - SkGetPackedR32(c1); 260 int dg = SkGetPackedG32(c0) - SkGetPackedG32(c1); 261 int db = SkGetPackedB32(c0) - SkGetPackedB32(c1);
|
/external/stressapptest/src/ |
sattypes.h | 102 static inline bool cpuset_isequal(const cpu_set_t *c1, const cpu_set_t *c2) { 104 if ((CPU_ISSET(i, c1) != 0) != (CPU_ISSET(i, c2) != 0)) 109 static inline bool cpuset_issubset(const cpu_set_t *c1, const cpu_set_t *c2) { 111 if (CPU_ISSET(i, c1) && !CPU_ISSET(i, c2))
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
LoopBlinnMathUtils.h | 58 // Determines whether the triangles defined by the points (a1, b1, c1) 64 const FloatPoint& c1,
|
/hardware/qcom/display/libqdutils/ |
qdMetaData.h | 51 uint16_t c1[MAX_IGC_LUT_ENTRIES]; member in struct:IGCData_t
|