/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/ |
SecP521R1FieldElement.java | 134 int[] x1 = this.x; local 135 if (Nat.isZero(17, x1) || Nat.isOne(17, x1)) 143 SecP521R1Field.squareN(x1, 519, t1); 146 return Nat.eq(17, x1, t2) ? new SecP521R1FieldElement(t1) : null;
|
/external/ceres-solver/internal/ceres/ |
evaluator_test.cc | 572 double x1 = parameters[0][0]; local 574 residuals[0] = x1 * x1; 580 jacobian[0] = 2.0 * x1;
|
trust_region_minimizer_test.cc | 91 const double x1 = state[0]; local 97 << "x1=" << x1 << ", " 102 const double f1 = x1 + 10.0 * x2; 105 const double f4 = sqrt(10.0) * pow(x1 - x4, 2.0); 138 sqrt(10.0) * 2.0 * (x1 - x4) * (1.0 - x4); 161 sqrt(10.0) * 2.0 * (x1 - x4) * (x1 - 1.0); 169 gradient[column_index++] = f1 + f4 * sqrt(10.0) * 2.0 * (x1 - x4); 183 -f2 * sqrt(5.0) + f4 * sqrt(10.0) * 2.0 * (x4 - x1); [all...] |
/external/clang/test/Analysis/ |
padding_c.c | 148 int x1; member in struct:CorrectOverlyAlignedChar
|
stack-addr-ps.cpp | 37 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here}} local 38 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} 49 int x1; local 50 int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} 51 return &x2; // expected-warning{{Address of stack memory associated with local variable 'x1' returned}} expected-warning {{address of stack memory associated with local variable 'x1' returned}} 55 int x1; local 56 int *const &x2 = &x1; // expected-note {{binding reference variable 'x2' here}} 57 return x2; // expected-warning {{address of stack memory associated with local variable 'x1' returned}} expected-warning {{Address of stack memory associated with local variable 'x1' returne (…) 61 const int &x1 = get_value(); \/\/ expected-note {{binding reference variable 'x1' here}} local [all...] |
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
multi-level-substitution.cpp | 55 struct X1 { 67 int check2[X1<short, int, long>::Inner<tuple<pair<short, unsigned short>, 74 int check3[X1<short, int>::Inner<tuple<pair<short, unsigned short>, 251 struct X1 { 257 X1<float> x1; local 258 x1.f(17, 3.14159);
|
/external/clang/test/CXX/temp/temp.param/ |
p15-cxx0x.cpp | 5 X<X<int>> *x1; variable 20 X<X<int>> *x1; local 23 template<typename T = void> struct X1 { }; 24 X1<X1<>> x1a; 63 template<place...X1, place...X2> 64 struct append_places<places<X1...>, places<X2...>> { 65 typedef places<X1...,X2...> type;
|
/external/clang/test/CodeGen/ |
override-layout.c | 23 // CHECK: Type: struct X1 24 struct X1 { 29 void use_X1() { struct X1 x1; x1.x[5] = sizeof(struct X1); }; local
|
/external/clang/test/CodeGenCXX/ |
value-init.cpp | 146 struct X1 : X0 { 147 int x1; member in struct:zeroinit::X1 156 X1().f();
|
/external/clang/test/Layout/ |
ms-vtordisp-local.cpp | 41 int x1[sizeof(NoVtorDisp1)]; variable
|
/external/clang/test/Sema/ |
expr-address-of.c | 44 register int *x1; local 45 int *_dummy1 = &(*(x1 + 1)); 55 register int x1[10]; local 56 int *_dummy1 = &(*(x1 + 1)); // fixme-error {{address of register variable requested}}
|
/external/clang/test/SemaCXX/ |
anonymous-union.cpp | 112 private: int x1; // expected-error{{anonymous union cannot contain a private data member}} member in union:BadMembers::__anon8844
|
warn-unused-filescoped.cpp | 87 static int x1; // expected-warning{{unused}} variable
|
/external/clang/test/SemaTemplate/ |
default-arguments.cpp | 6 X<int, 1> *x1; variable 48 template<typename T> struct X1 { }; 52 template<typename U = typename X1<T>::type> // expected-error{{no type named 'type' in 'X1<int>'}} \ 53 // expected-error{{no type named 'type' in 'X1<char>'}} 56 template<T Value = X1<T>::value> // expected-error{{no member named 'value' in 'X1<int>'}} \ 57 // expected-error{{no member named 'value' in 'X1<char>'}}
|
/external/deqp/framework/delibs/deimage/ |
deImage.c | 140 int x1 = deClamp32(x0+1, 0, srcWidth-1); local 148 deARGB p10 = deImage_getPixel(srcImage, x1, y0); 150 deARGB p11 = deImage_getPixel(srcImage, x1, y1);
|
/external/deqp/modules/gles3/functional/ |
es3fFboMultisampleTests.cpp | 158 float x1 = rnd.getFloat(-1.0f, 1.0f); local 163 sglr::drawQuad(*getCurrentContext(), flatShaderID, Vec3(x0, y0, z0), Vec3(x1, y1, z1));
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant-apache-log4j.jar | |
/external/freetype/src/cff/ |
cffdrivr.c | 667 FT_Int x1 = darken_params[0]; local 677 if ( x1 < 0 || x2 < 0 || x3 < 0 || x4 < 0 || 679 x1 > x2 || x2 > x3 || x3 > x4 || 683 driver->darken_params[0] = x1;
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
UtilityTest.java | 154 long x1 = x & 0xFFFFFFFFl; local 156 if (x1 < y1) { 159 else if (x1 > y1) {
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
UtilityTest.java | 150 long x1 = x & 0xFFFFFFFFl; local 152 if (x1 < y1) { 155 else if (x1 > y1) {
|
/external/jetty/lib/ |
slf4j-jdk14-1.6.1.jar | |
/external/kernel-headers/original/uapi/linux/dvb/ |
osd.h | 34 OSD_Open, // (x0,y0,x1,y1,BitPerPixel[2/4/8](color&0x0F),mix[0..15](color&0xF0)) 49 OSD_SetColor, // (color,R{x0},G{y0},B{x1},opacity{y1}) 70 OSD_SetRow, // (x0,y0,x1,data) 71 // fills pixels x0,y through x1,y with the content of data[] 73 OSD_SetBlock, // (x0,y0,x1,y1,increment{color},data) 74 // fills pixels x0,y0 through x1,y1 with the content of data[] 78 OSD_FillRow, // (x0,y0,x1,color) 79 // fills pixels x0,y through x1,y with the color <col> 81 OSD_FillBlock, // (x0,y0,x1,y1,color) 82 // fills pixels x0,y0 through x1,y1 with the color <col 104 int x1; member in struct:osd_cmd_s [all...] |
/external/libopus/celt/ |
vq.c | 48 celt_norm x1, x2; local 49 x1 = Xptr[0]; 51 Xptr[stride] = EXTRACT16(SHR32(MULT16_16(c,x2) + MULT16_16(s,x1), 15)); 52 *Xptr++ = EXTRACT16(SHR32(MULT16_16(c,x1) - MULT16_16(s,x2), 15)); 57 celt_norm x1, x2; local 58 x1 = Xptr[0]; 60 Xptr[stride] = EXTRACT16(SHR32(MULT16_16(c,x2) + MULT16_16(s,x1), 15)); 61 *Xptr-- = EXTRACT16(SHR32(MULT16_16(c,x1) - MULT16_16(s,x2), 15));
|
/external/libvncserver/libvncserver/ |
scale.c | 93 double x1,y1,w1,h1, x2, y2, w2, h2; local 106 x1 = ((double) *x) * scaleW; 112 /*cast from double to int is same as "*x = floor(x1);" */ 113 x2 = FLOOR(x1); 117 w2 = CEIL(w1 + ( x1 - x2 )); 143 int x1, y1, w1, h1; local 150 x1 = x0; 155 rfbScaledCorrection(screen, ptr, &x1, &y1, &w1, &h1, "rfbScaledScreenUpdateRect"); 156 x0 = ScaleX(ptr, screen, x1); 167 ( y1 * ptr->paddedWidthInBytes + x1 * bytesPerPixel)) [all...] |
selbox.c | 12 int x1,y1,x2,y2,textH,pageH; member in struct:__anon16942 31 rfbFillRect(s,m->x1,m->okY-m->textH,m->x2,m->okY,bcolour); 36 m->x1,m->okY-m->textH,m->x2,m->okY, 45 cancelStr,m->x1,m->okY-m->textH,m->x2,m->okY, 60 rfbFillRect(m->screen,m->x1,y1,m->x2,y2,invert?m->colour:m->backColour); 62 rfbDrawStringWithClip(m->screen,m->font,m->x1+m->xhot,y2-1+m->yhot, 64 m->x1,y1,m->x2,y2, 97 rfbDoCopyRect(m->screen,m->x1,m->y1,m->x2,m->y1+lineStart*m->textH, 103 m->x1,m->y1+lineEnd*m->textH,m->x2,m->y2, 189 if(x>=m->x1 && x<m->x2 && y>=m->y1 && y<m->y2 [all...] |