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

<<111112113114115116117118119120>>

  /external/oprofile/utils/
ophelp.c 367 struct list_head * pos; local
437 list_for_each(pos, events) {
438 struct op_event * event = list_entry(pos, struct op_event, event_next);
701 list_for_each(pos, events) {
702 struct op_event * event = list_entry(pos, struct op_event, event_next);
  /external/wpa_supplicant_8/hostapd/
main.c 529 char *pos; local
534 pos = os_strrchr(interfaces->global_iface_path, '/');
535 if (pos == NULL) {
543 *pos = '\0';
544 interfaces->global_iface_name = pos + 1;
  /external/yaffs2/yaffs2/
yaffs_fs.c 104 loff_t * pos);
634 loff_t pos = (((loff_t) pg->index) << PAGE_CACHE_SHIFT) + offset; local
638 unsigned spos = pos;
642 (KERN_DEBUG "yaffs_commit_write addr %x pos %x nBytes %d\n", saddr,
645 nWritten = yaffs_file_write(f, addr, nBytes, &pos);
801 loff_t * pos)
819 ipos = *pos;
840 *pos = ipos;
    [all...]
  /hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/
FmRxRdsConfig.java 367 int pos = 1; local
371 pos = 0;
375 pos = 1;
379 pos = 2;
383 spnChannelSpacing.setSelection(pos);
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 630 int pos = Arrays.binarySearch(data, (byte) 0); local
631 if (pos < 0) {
634 byte[] subjNameData = new byte[pos];
636 byte[] issNameData = new byte[data.length - pos - 1];
637 System.arraycopy(data, pos + 1, issNameData, 0, issNameData.length);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchActivity.java 374 SuggestionPosition pos = adapter.getSuggestion(id); local
375 if (pos == null) {
378 SuggestionCursor suggestions = pos.getCursor();
379 int position = pos.getPosition();
389 return pos;
430 if (DBG) Log.d(TAG, "query refine clicked, pos " + id);
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
PinyinIME.java 723 for (int pos = 0; pos < str.length() - 7; pos++) {
724 if (pos > 0) {
728 resultStr += "0x" + Integer.toHexString(str.charAt(pos));
1674 int pos; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sunau.py 62 setpos(pos) -- seek to the specified position
272 def setpos(self, pos):
273 if pos < 0 or pos > self.getnframes():
275 self._file.seek(pos * self._framesize + self._hdr_size)
276 self._soundpos = pos
pickletools.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sunau.py 62 setpos(pos) -- seek to the specified position
272 def setpos(self, pos):
273 if pos < 0 or pos > self.getnframes():
275 self._file.seek(pos * self._framesize + self._hdr_size)
276 self._soundpos = pos
pickletools.py     [all...]
  /system/extras/tests/iptables/qtaguid/
socketTag.cpp 135 char *pos; local
165 pos = strstr(ctrl_data, buff);
167 if (pos && !addr) {
169 res = sscanf(pos - strlen("sock=1234abcd"),
183 return pos != NULL;
  /external/chromium_org/chrome/test/pyautolib/
remote_inspector_client.py 204 pos = self._read_buffer.find('\xff')
205 while pos >= 0:
206 pos += len('\xff')
207 data = self._read_buffer[:pos-len('\xff')]
211 self._read_buffer = self._read_buffer[pos:]
221 pos = self._read_buffer.find('\xff')
225 pos = self._read_buffer.find('\r\n\r\n')
226 if pos >= 0:
227 pos += len('\r\n\r\n')
228 data = self._read_buffer[:pos]
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
backward_references.c 39 // chain_[pos] stores the previous position with the same hash value
140 const uint32_t* const argb, int pos) {
142 p->chain_[pos] = p->hash_to_first_index_[hash_code];
143 p->hash_to_first_index_[hash_code] = pos;
177 int pos; local
179 for (pos = p->hash_to_first_index_[GetPixPairHash64(argb_start)];
180 pos >= min_pos;
181 pos = p->chain_[pos]) {
191 if (argb[pos + best_length - 1] != argb_start[best_length - 1])
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_program.c 528 unsigned pos; local
530 for (pos = 0; pos < sizeof(prog->hdr) / sizeof(prog->hdr[0]); ++pos)
532 pos * sizeof(prog->hdr[0]), prog->hdr[pos]);
535 for (pos = 0; pos < prog->code_size / 4; ++pos) {
536 if ((pos % 8) == 0
    [all...]
  /external/chromium_org/third_party/opus/src/src/
analysis.c 145 int pos; local
150 pos = tonal->read_pos;
155 if (len > 480 && pos != tonal->write_pos)
157 pos++;
158 if (pos==DETECT_SIZE)
159 pos=0;
161 if (pos == tonal->write_pos)
162 pos--;
163 if (pos<0)
164 pos = DETECT_SIZE-1
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
elf.c 760 long pos; local
770 pos = ftell(f);
771 if (pos == -1) {
776 pos = (pos + 3) & ~3;
777 if (fseek(f, pos, SEEK_SET) < 0) {
781 shead->rel_offset = (unsigned long)pos;
908 elf_secthead_set_file_offset(elf_secthead *shead, long pos)
913 shead->offset = (unsigned long)pos;
914 return pos;
    [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/
nvc0_program.c 528 unsigned pos; local
530 for (pos = 0; pos < sizeof(prog->hdr) / sizeof(prog->hdr[0]); ++pos)
532 pos * sizeof(prog->hdr[0]), prog->hdr[pos]);
535 for (pos = 0; pos < prog->code_size / 4; ++pos) {
536 if ((pos % 8) == 0
    [all...]
  /external/v8/src/
assembler.cc 135 int Label::pos() const { function in class:v8::internal::Label
    [all...]
  /external/webp/src/enc/
backward_references.c 39 // chain_[pos] stores the previous position with the same hash value
140 const uint32_t* const argb, int pos) {
142 p->chain_[pos] = p->hash_to_first_index_[hash_code];
143 p->hash_to_first_index_[hash_code] = pos;
177 int pos; local
179 for (pos = p->hash_to_first_index_[GetPixPairHash64(argb_start)];
180 pos >= min_pos;
181 pos = p->chain_[pos]) {
191 if (argb[pos + best_length - 1] != argb_start[best_length - 1])
    [all...]
  /frameworks/base/core/java/android/content/
IntentFilter.java 299 int pos = findStringInSet(set, string, lengths, lenPos); local
300 if (pos < 0) return set;
303 int copyLen = N-(pos+1);
305 System.arraycopy(set, pos+1, set, pos, copyLen);
313 if (pos > 0) System.arraycopy(set, 0, newSet, 0, pos);
314 if ((pos+1) < N) System.arraycopy(set, pos+1, newSet, pos, N-(pos+1))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LinearLayoutRule.java 297 int pos = 0; local
322 selfPos = pos;
323 indexes.add(new MatchPos(v, pos++));
328 pos++;
334 indexes.add(new MatchPos(v, pos++));
342 pos++;
350 indexes.add(new MatchPos(v, pos));
385 int pos = it.getPosition();
389 if (pos != selfPos) {
496 int pos = index.getPosition()
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 150 public override void Location(int line, int pos) {
152 currentPos.Push(pos);
175 descriptor.pos = currentPos.Peek();
611 buf.Append(LocationDescription(s.fileName, s.ruleName, s.line, s.pos)); // decision number
660 protected virtual string LocationDescription(string file, string rule, int line, int pos) {
661 return file + ":" + line + ":" + pos + "(" + rule + ")";
710 public int pos; field in class:Antlr.Runtime.Debug.Profiler.DecisionDescriptor
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 159 public override void Location(int line, int pos)
162 currentPos.Push(pos);
188 descriptor.pos = currentPos.Peek();
665 buf.Append(LocationDescription(s.fileName, s.ruleName, s.line, s.pos)); // decision number
720 protected virtual string LocationDescription(string file, string rule, int line, int pos)
722 return file + ":" + line + ":" + pos + "(" + rule + ")";
773 public int pos; field in class:Antlr.Runtime.Debug.Profiler.DecisionDescriptor
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
Profiler.java 90 public int pos; field in class:Profiler.DecisionDescriptor
208 public void location(int line, int pos) {
210 currentPos.push(pos);
231 descriptor.pos = (Integer)currentPos.peek();
673 buf.append(locationDescription(s.fileName,s.ruleName,s.line,s.pos)); // decision number
731 protected String locationDescription(String file, String rule, int line, int pos) {
732 return file+":"+line+":"+pos+"(" + rule + ")";

Completed in 1188 milliseconds

<<111112113114115116117118119120>>