HomeSort by relevance Sort by last modified time
    Searched refs:pos (Results 2176 - 2200 of 4804) sorted by null

<<81828384858687888990>>

  /external/mesa3d/src/mesa/swrast/
s_triangle.c 152 GLint pos = (t << twidth_log2) + s; \
153 pos = pos + pos + pos; /* multiply by 3 */ \
154 rgba[i][RCOMP] = texture[pos+2]; \
155 rgba[i][GCOMP] = texture[pos+1]; \
156 rgba[i][BCOMP] = texture[pos+0]; \
213 GLint pos = (t << twidth_log2) + s; \
214 pos = pos + pos + pos; /* multiply by 3 */
    [all...]
  /external/openfst/src/include/fst/
symbol-table.h 142 int64 GetNthKey(ssize_t pos) const {
143 if ((pos < 0) || (pos >= symbols_.size())) return -1;
144 else return Find(symbols_[pos]);
404 virtual int64 GetNthKey(ssize_t pos) const {
405 return impl_->GetNthKey(pos);
  /external/protobuf/src/google/protobuf/stubs/
common_unittest.cc 56 int pos = 0; local
57 while (pos < version.size() &&
58 (ascii_isdigit(version[pos]) || version[pos] == '.')) {
59 ++pos;
61 version.erase(pos);
  /external/tremolo/Tremolo/
vorbisfile.c 361 ogg_int64_t pos=vf->offset; local
364 _seek_helper(vf,pos);
365 if(pos<vf->offsets[link] || pos>=vf->offsets[link+1])
408 ogg_int64_t accumulated=0,pos; local
426 pos=ogg_page_granulepos(&og);
440 if(pos!=-1){
442 accumulated= pos-accumulated;
999 int ov_raw_seek(OggVorbis_File *vf,ogg_int64_t pos){
1008 if(pos<0 || pos>vf->end)return OV_EINVAL
    [all...]
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 185 template<size_t DIRECT, class Pos>
186 BinaryTree& join(Pos position, const Input& value) {
203 template<size_t DIRECT, class Pos>
204 BinaryTree& merge(Pos position, BinaryTree& pTree) {
311 bool isGroup(const InputTree::iterator& pos);
312 bool isGroup(const InputTree::const_iterator& pos);
313 bool isGroup(const InputTree::dfs_iterator& pos);
314 bool isGroup(const InputTree::const_dfs_iterator& pos);
315 bool isGroup(const InputTree::bfs_iterator& pos);
316 bool isGroup(const InputTree::const_bfs_iterator& pos);
    [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/vdec/src/
h264_utils.cpp 79 : begin (_begin), end(_end), pos (- 1), bit (0),
94 //return static_cast<uint32> (*pos);
95 return static_cast<uint32> (begin[pos]);
101 ++pos;
102 //if (pos >= stop)
103 if (begin + pos == end)
112 //cursor |= static_cast<uint32> (*pos);
113 cursor |= static_cast<uint32> (begin[pos]);
257 uint32 pos = 0; local
266 coef2 = buffer[pos++]
    [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/
h264_utils.cpp 75 : begin (_begin), end(_end), pos (- 1), bit (0),
90 //return static_cast<uint32> (*pos);
91 return static_cast<uint32> (begin[pos]);
97 ++pos;
98 //if (pos >= stop)
99 if (begin + pos == end) {
107 //cursor |= static_cast<uint32> (*pos);
108 cursor |= static_cast<uint32> (begin[pos]);
247 uint32 pos = 0; local
256 coef2 = buffer[pos++]
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
Rfc822Output.java 97 final int pos = body.mQuotedTextStartPos; local
98 if (useSmartReply && pos > 0) {
100 if (pos < messageBody[0].length()) {
101 messageBody[0] = messageBody[0].substring(0, pos);
104 if (pos < messageBody[1].length()) {
105 messageBody[1] = messageBody[1].substring(0, pos);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
find.h 132 for (difference_type pos = start; pos < stop; ++pos)
136 if (result < pos)
142 if (pos < result)
143 result = pos;
  /sdk/find_java/
utils.h 288 char *pos = strrchr(mStr, '\\'); local
289 if (pos != NULL) {
290 result.set(mStr, pos - mStr);
300 char *pos = strrchr(mStr, '\\'); local
301 if (pos != NULL) {
302 return pos + 1;
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 91 #define BSR2_RET(pos, res) { unsigned long i; _BitScanReverse(&i, (pos)); res = (i + i) + ((pos >> (i - 1)) & 1); }
93 UInt32 GetPosSlot1(UInt32 pos)
96 BSR2_RET(pos, res);
99 #define GetPosSlot2(pos, res) { BSR2_RET(pos, res); }
100 #define GetPosSlot(pos, res) { if (pos < 2) res = pos; else BSR2_RET(pos, res);
1174 UInt32 pos; local
1767 UInt32 pos, len, posState; local
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 92 #define BSR2_RET(pos, res) { unsigned long i; _BitScanReverse(&i, (pos)); res = (i + i) + ((pos >> (i - 1)) & 1); }
94 UInt32 GetPosSlot1(UInt32 pos)
97 BSR2_RET(pos, res);
100 #define GetPosSlot2(pos, res) { BSR2_RET(pos, res); }
101 #define GetPosSlot(pos, res) { if (pos < 2) res = pos; else BSR2_RET(pos, res);
1175 UInt32 pos; local
1768 UInt32 pos, len, posState; local
    [all...]
  /external/lzma/C/
LzmaEnc.c 91 #define BSR2_RET(pos, res) { unsigned long i; _BitScanReverse(&i, (pos)); res = (i + i) + ((pos >> (i - 1)) & 1); }
93 UInt32 GetPosSlot1(UInt32 pos)
96 BSR2_RET(pos, res);
99 #define GetPosSlot2(pos, res) { BSR2_RET(pos, res); }
100 #define GetPosSlot(pos, res) { if (pos < 2) res = pos; else BSR2_RET(pos, res); }
1174 UInt32 pos; local
1767 UInt32 pos, len, posState; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_wext.c 436 char *pos, *end, *custom, *buf; local
438 pos = data;
441 while (pos + IW_EV_LCP_LEN <= end) {
444 os_memcpy(&iwe_buf, pos, IW_EV_LCP_LEN);
450 custom = pos + IW_EV_POINT_LEN;
460 os_memcpy(dpos, pos + IW_EV_LCP_LEN,
463 os_memcpy(&iwe_buf, pos, sizeof(struct iw_event));
547 pos += iwe->len;
770 char buf[90], *pos; local
792 pos = os_strchr(drv->phyname, '\n')
1364 u8 *pos, *end, *ssid_ie = NULL, *rate_ie = NULL; local
1438 char *pos, *end, *custom; local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol.cpp 103 (s)->string = (s)->pos = sourceString;
162 return s == NULL || s->pos == s->endp;
176 backup->pos = data->pos;
216 data->pos = backup->pos;
226 data->pos = data->writableBuffer.getTerminatedBuffer() +
227 (data->pos - backup->bufferaddress);
232 (int32_t)(data->pos - backup->bufferaddress);
233 data->pos = data->writableBuffer.getTerminatedBuffer() + (data->writableBuffer.length() - temp)
7350 uint32_t *pos; member in struct:ucol_CEBuf
    [all...]
  /build/tools/atree/
files.cpp 152 string::size_type pos = 0; local
153 while((pos = result.find(it->first, pos)) != string::npos) {
154 result = result.replace(pos, it->first.length(), it->second);
155 pos += it->second.length();
385 int pos = filename.rfind('/'); local
386 if (pos <= 0) {
389 return filename.substr(0, pos);
  /cts/tools/signature-tools/src/signature/converter/dex/
GenericSignatureParser.java 110 private int pos; field in class:GenericSignatureParser
587 if (pos < buffer.length) {
588 symbol = buffer[pos];
589 pos++;
627 char ch = buffer[pos];
630 identBuf.append(buffer[pos]);
631 pos++;
637 } while (pos != buffer.length);
  /development/samples/AppNavigation/src/com/example/android/appnavigation/app/
AppNavHomeActivity.java 45 protected void onListItemClick(ListView lv, View v, int pos, long id) {
46 SampleInfo info = (SampleInfo) getListAdapter().getItem(pos);
  /development/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
AppNavHomeActivity.java 45 protected void onListItemClick(ListView lv, View v, int pos, long id) {
46 SampleInfo info = (SampleInfo) getListAdapter().getItem(pos);
  /development/testrunner/test_defs/
native_test.py 95 pos = output.rfind("exit code")
96 output = output[0:pos]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRStringStream.as 198 public function set charPositionInLine(pos:int):void {
199 this._charPositionInLine = pos;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
TraceDebugEventListener.cs 59 public override void Location(int line, int pos) {
60 Console.Out.WriteLine("location " + line + ":" + pos);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
TraceDebugEventListener.cs 66 public override void Location( int line, int pos )
68 Console.Out.WriteLine( "location " + line + ":" + pos );
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ANTLRStringStream.java 104 "@ pos="+charPositionInLine);
221 public void setCharPositionInLine(int pos) {
222 this.charPositionInLine = pos;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventRepeater.java 56 public void location(int line, int pos) { listener.location(line, pos); }

Completed in 2206 milliseconds

<<81828384858687888990>>