/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
transactions.py | 42 self.cur2 = self.con2.cursor() 48 self.cur2.close() 60 self.cur2.execute("select i from test") 61 res = self.cur2.fetchall() 67 self.cur2.execute("select i from test") 68 res = self.cur2.fetchall() 76 self.cur2.execute("select i from test") 77 res = self.cur2.fetchone()[0] 85 self.cur2.execute("select i from test") 86 res = self.cur2.fetchall( [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
transactions.py | 42 self.cur2 = self.con2.cursor() 48 self.cur2.close() 60 self.cur2.execute("select i from test") 61 res = self.cur2.fetchall() 67 self.cur2.execute("select i from test") 68 res = self.cur2.fetchall() 76 self.cur2.execute("select i from test") 77 res = self.cur2.fetchone()[0] 85 self.cur2.execute("select i from test") 86 res = self.cur2.fetchall( [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/ |
tgsi_text.c | 1072 const char *cur, *cur2; local 1124 cur2 = cur; 1125 eat_opt_white(&cur2); 1126 while (*cur2 == ',') { 1127 cur2++; 1128 eat_opt_white(&cur2); 1129 if (str_match_nocase_whole(&cur2, "RAW")) { 1132 } else if (str_match_nocase_whole(&cur2, "WR")) { 1138 cur = cur2; 1139 eat_opt_white(&cur2); [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_text.c | 1072 const char *cur, *cur2; local 1124 cur2 = cur; 1125 eat_opt_white(&cur2); 1126 while (*cur2 == ',') { 1127 cur2++; 1128 eat_opt_white(&cur2); 1129 if (str_match_nocase_whole(&cur2, "RAW")) { 1132 } else if (str_match_nocase_whole(&cur2, "WR")) { 1138 cur = cur2; 1139 eat_opt_white(&cur2); [all...] |
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
fastcodemb.cpp | 536 Int cur1, cur2, prev1, prev2; local 544 cur2 = curInt[0]; 550 tmp = prev2 ^ cur2; 551 cur2 = prev2 - cur2; 552 tmp = tmp ^ cur2; /* (^)^(-) last bit is one if carry */ 554 if (cur2 < 0) tmp = tmp | 0x80000000; /* corcurt sign of first byte */ 556 cur2 = cur2 + (tmp >> 7); /* negative bytes is added with 0xFF, -1 */ 557 cur2 = cur2 ^(tmp >> 7); /* take absolute by inverting bits (EOR) * [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
AppendTrack.java | 136 Box cur2 = bxs2.next(); local 140 cur2.getBox(Channels.newChannel(baos2)); 144 if (ESDescriptorBox.TYPE.equals(cur1.getType()) && ESDescriptorBox.TYPE.equals(cur2.getType())) { 146 ESDescriptorBox esdsBox2 = (ESDescriptorBox) cur2;
|
/external/jpeg/ |
jquant2.c | 955 register LOCFSERROR cur0, cur1, cur2; \/* current error or pixel value *\/ local [all...] |
/external/qemu/distrib/jpeg-6b/ |
jquant2.c | 955 register LOCFSERROR cur0, cur1, cur2; \/* current error or pixel value *\/ local [all...] |
/external/lzma/CPP/7zip/Archive/7z/ |
7zIn.cpp | 1162 UInt64 cur, cur2;
local 1166 RINOK(_stream->Seek(0, STREAM_SEEK_END, &cur2));
1168 if (cur2 - cur < kCheckSize)
1169 checkSize = (int)(cur2 - cur);
1170 RINOK(_stream->Seek(-checkSize, STREAM_SEEK_END, &cur2));
1181 nextHeaderOffset = cur2 - cur + i;
[all...] |