Searched refs:ix (Results 201 - 225 of 285) sorted by relevance

1234567891011>>

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.common_3.6.0.v20100503.jar ... io.IOException String tmp String tmp String tmp int ix int ix int ix String key String key java. ...
/external/openssl/crypto/sha/
H A Dsha_locl.h86 # define Xupdate(a,ix,ia,ib,ic,id) (ix=(a)=(ia^ib^ic^id))
99 # define Xupdate(a,ix,ia,ib,ic,id) do { (a)=(ia^ib^ic^id); \
100 ix=(a)=ROTATE((a),1); \
103 # define Xupdate(a,ix,ia,ib,ic,id) ( (a)=(ia^ib^ic^id), \
104 ix=(a)=ROTATE((a),1) \
/external/chromium_org/third_party/icu/source/i18n/
H A Drematch.cpp4211 int64_t ix = fp->fInputIdx;
4212 UTEXT_SETNATIVEINDEX(fInputText, ix);
4214 if (ix >= fActiveLimit) {
4228 ix = UTEXT_GETNATIVEINDEX(fInputText);
4233 if (ix == fp->fInputIdx) {
4249 fp->fInputIdx = ix;
4267 int64_t ix;
4270 ix = fActiveLimit;
4275 ix = fp->fInputIdx;
4276 UTEXT_SETNATIVEINDEX(fInputText, ix);
[all...]
/external/valgrind/main/mpi/
H A Dlibmpiwrap.c1260 int i, ix = -1; local
1271 ix = i;
1276 if (ix < 0) {
1281 ix = i;
1288 if (ix < 0) {
1291 ix = sReqs_used;
1295 assert(ix >= 0 && ix < sReqs_used);
1298 sReqs[ix].inUse = True;
1299 sReqs[ix]
[all...]
/external/opencv/cv/src/
H A Dcvlkpyramid.cpp539 const float* ix = Ix + local
541 const float* iy = Iy + (ix - Ix);
546 bx += t0 * ix[x];
559 const float* ix = Ix + local
561 const float* iy = Iy + (ix - Ix);
566 bx += (double) (t * ix[x]);
568 Gxx += ix[x] * ix[x];
569 Gxy += ix[x] * iy[x];
H A DmycvHaarDetectObjects.cpp1228 int ix = cvRound(_ix*ystep); // it really should be ystep local
1240 // offset = iy*(sum->step/sizeof(p0[0])) + ix;
1247 result = mycvRunHaarClassifierCascade( cascade, cvPoint(ix,iy), 0 );
1251 mask_row[ix] = 1;
1254 CvRect rect = cvRect(ix,iy,win_size.width,win_size.height);
1261 else if( mask_row[ix] )
1263 int result = mycvRunHaarClassifierCascade( cascade, cvPoint(ix,iy),
1269 CvRect rect = cvRect(ix,iy,win_size.width,win_size.height);
1274 mask_row[ix] = 0;
H A Dcvundistort.cpp71 int ix = cvFloor(_x), iy = cvFloor(_y); local
74 (unsigned)ix < (unsigned)(size.width - 1) )
76 const uchar* ptr = src + iy*srcstep + ix*cn;
77 _x -= ix; _y -= iy;
/external/chromium_org/third_party/sqlite/src/contrib/
H A Dsqlitecon.tcl440 scan [$w index insert] %d.%d ix iy
442 if {$px==$ix} {
552 scan [$w index insert] %d.%d ix iy
555 if {$s1x==$ix && $s2x==$ix} {return 1}
/external/chromium_org/third_party/skia/src/core/
H A DSkScan_AntiPath.cpp518 int ix = x >> SHIFT; local
519 SkASSERT(ix >= fMask.fBounds.fLeft && ix < fMask.fBounds.fRight);
/external/skia/src/core/
H A DSkScan_AntiPath.cpp518 int ix = x >> SHIFT; local
519 SkASSERT(ix >= fMask.fBounds.fLeft && ix < fMask.fBounds.fRight);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimports.h172 const GLuint ix = *((GLuint *) &y);
173 const GLuint exp = (ix >> 23) & 0xFF;
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
H A DGifDecoder.java354 int n1 = (previousFrame.iy + i) * header.width + previousFrame.ix;
405 int dx = k + currentFrame.ix; // start of line in dest
/external/mesa3d/src/mesa/main/
H A Dimports.h170 const GLuint ix = *((GLuint *) &y);
171 const GLuint exp = (ix >> 23) & 0xFF;
/external/valgrind/main/VEX/
H A Dtest_main.c406 assert(isIRAtom(st->Ist.PutI.ix));
1184 IRRegArray* descr, IRAtom* ix, Int bias, IRAtom* atom )
1197 tl_assert(isOriginalAtom(mce,ix));
1198 complainIfUndefined(mce,ix);
1209 stmt( mce->bb, IRStmt_PutI( mkIRPutI( new_descr, ix, bias, vatom ) ));
1237 IRExpr* shadow_GETI ( MCEnv* mce, IRRegArray* descr, IRAtom* ix, Int bias ) argument
1243 tl_assert(isOriginalAtom(mce,ix));
1244 complainIfUndefined(mce,ix);
1254 return IRExpr_GetI( new_descr, ix, bias );
2149 e->Iex.GetI.ix,
1183 do_shadow_PUTI( MCEnv* mce, IRRegArray* descr, IRAtom* ix, Int bias, IRAtom* atom ) argument
[all...]
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_profile_syncable_service.cc109 for (ScopedVector<AutofillProfile>::const_iterator ix =
110 profiles_.begin(); ix != profiles_.end(); ++ix) {
111 AutofillProfile* p = *ix;
/external/chromium_org/native_client_sdk/src/examples/demo/earth/
H A Dearth.cc119 int ix = static_cast<int>(x); local
120 float fx = static_cast<float>(ix);
122 float af = table[ix];
123 float af2 = table[ix + 1];
/external/chromium_org/native_client_sdk/src/examples/demo/earth_simd/
H A Dearth.cc176 int ix = static_cast<int>(x); local
177 float fx = static_cast<float>(ix);
179 float af = table[ix];
180 float af2 = table[ix + 1];
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/earth/
H A Dearth.cc112 int ix = static_cast<int>(x); local
113 float fx = static_cast<float>(ix);
115 float af = table[ix];
116 float af2 = table[ix + 1];
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
H A Dvp8_impl.cc912 for (uint32_t ix = 0;
913 ix < sizeof(type_vec) / sizeof(vpx_ref_frame_type_t); ++ix) {
914 ref_frame_->frame_type = type_vec[ix];
/external/valgrind/main/VEX/pub/
H A Dlibvex_ir.h1811 (the 'ix' field) and a constant offset (the 'bias' field).
1814 is computed as (ix + bias) % num-of-elems-in-the-array.
1831 ppIRExpr output: GETI<descr>[<ix>,<bias]
1836 IRExpr* ix; /* Variable part of index into array */ member in struct:_IRExpr::__anon31404::__anon31407
2011 extern IRExpr* IRExpr_GetI ( IRRegArray* descr, IRExpr* ix, Int bias );
2387 IRExpr* ix; /* Variable part of index into array */ member in struct:__anon31422
2394 extern IRPutI* mkIRPutI ( IRRegArray* descr, IRExpr* ix,
2592 ppIRStmt output: PUTI<descr>[<ix>,<bias>] = <data>,
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dwrench_menu.cc1186 CommandIDToEntry::const_iterator ix = command_id_to_entry_.find(command_id); local
1187 const Entry& entry = ix->second;
1388 CommandIDToEntry::const_iterator ix = command_id_to_entry_.find(command_id); local
1389 DCHECK(ix != command_id_to_entry_.end());
1390 return ix->second.second;
/external/deqp/modules/gles2/functional/
H A Des2fVertexTextureTests.cpp346 for (int ix = ix0; ix < ix1; ix++)
348 DE_ASSERT(deInBounds32(ix + region.x, 0, dst.getWidth()));
351 dst.setPixel(ix + region.x, iy + region.y, toRGBA(color));
/external/chromium_org/third_party/libxml/src/
H A Dparser.c10638 int ix; local
10645 for (ix = 0; ix < len;) { /* string is 0-terminated */
10646 c = utf[ix];
10649 ix++;
10651 ix++;
10653 return(-ix);
10655 if (ix + 2 > len) return(ix);
10656 if ((utf[ix
[all...]
/external/libxml2/
H A Dparser.c11044 int ix; local
11051 for (ix = 0; ix < len;) { /* string is 0-terminated */
11052 c = utf[ix];
11055 ix++;
11057 ix++;
11059 return(-ix);
11061 if (ix + 2 > len) return(ix);
11062 if ((utf[ix
[all...]
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreaddwarf.c2788 Int ix, ix2, reg; local
2812 ix = ML_(CfiExpr_Binop)( dst,
2817 PUSH(ix);
2858 ix = ML_(CfiExpr_Binop)( dst,
2863 PUSH(ix);
2872 ix = ML_(CfiExpr_DwReg)( dst, reg );
2873 PUSH(ix);
2881 POP( ix );
2883 PUSH( ML_(CfiExpr_Binop)( dst, Cbinop_Add, ix2, ix ) );
2943 POP( ix );
[all...]

Completed in 1002 milliseconds

1234567891011>>