HomeSort by relevance Sort by last modified time
    Searched refs:curpos (Results 1 - 15 of 15) sorted by null

  /external/vboot_reference/tests/futility/
binary_editor.c 19 uint32_t offset, curpos, curarg; local
29 for ( curpos = 0; (c = fgetc(stdin)) != EOF; curpos++) {
31 if (curpos == offset && curarg < argc) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 97 unsigned curpos; member in class:llvm::NVPTXAsmPrinter::AggBuffer
105 curpos = 0;
111 assert((curpos + Num) <= size);
112 assert((curpos + Bytes) <= size);
114 buffer[curpos] = Ptr[i];
115 curpos++;
118 buffer[curpos] = 0;
119 curpos++;
121 return curpos;
125 assert((curpos + Num) <= size)
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.h 98 unsigned curpos; member in class:llvm::NVPTXAsmPrinter::AggBuffer
106 curpos = 0;
111 assert((curpos + Num) <= size);
112 assert((curpos + Bytes) <= size);
114 buffer[curpos] = Ptr[i];
115 curpos++;
118 buffer[curpos] = 0;
119 curpos++;
121 return curpos;
124 assert((curpos + Num) <= size)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_init.c 46 unsigned int curpos = 0, i, tmp_req = 0; local
88 curpos = 0;
91 ppq->pp_queue[curpos] = pp_filters[i].main;
93 ppq->filters[curpos] = i;
96 ppq->shaders[curpos] =
98 if (!ppq->shaders[curpos]) {
105 if (!pp_filters[i].init(ppq, curpos, enabled[i])) {
110 curpos++;
114 ppq->n_filters = curpos;
115 ppq->n_tmp = (curpos > 2 ? 2 : 1)
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_textobject.cpp 201 float curpos = 0; local
217 curpos -= (m_CharPos[i - 1] * fontsize) / 1000;
220 m_CharPos[i - 1] = curpos;
230 float char_left = curpos + char_rect.left * fontsize / 1000;
231 float char_right = curpos + char_rect.right * fontsize / 1000;
248 float char_top = curpos + char_rect.top * fontsize / 1000;
249 float char_bottom = curpos + char_rect.bottom * fontsize / 1000;
254 curpos += charwidth;
256 curpos += m_TextState.GetWordSpace();
258 curpos += m_TextState.GetCharSpace()
    [all...]
  /external/curl/src/
tool_formparse.h 56 curl_off_t curpos; /* Stdin current read position. */ member in struct:tool_mime
tool_formparse.c 153 m->curpos = 0;
189 if(sip->curpos >= sip->size)
191 bytesleft = sip->size - sip->curpos;
198 memcpy(buffer, sip->data + curlx_sotouz(sip->curpos), nitems);
212 sip->curpos += curlx_uztoso(nitems);
223 offset += sip->curpos;
235 sip->curpos = offset;
  /external/scapy/scapy/layers/
inet6.py 777 def alignment_delta(self, curpos): # By default, no alignment requirement
792 def alignment_delta(self, curpos): # No alignment requirement
801 def alignment_delta(self, curpos): # No alignment requirement
819 def alignment_delta(self, curpos): # alignment requirement : 2n+0
821 delta = x*((curpos - y + x - 1)//x) + y - curpos
829 def alignment_delta(self, curpos): # alignment requirement : 4n+2
831 delta = x*((curpos - y + x - 1)//x) + y - curpos
839 def alignment_delta(self, curpos): # alignment requirement : 8n+
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
wave.py 483 curpos = self._file.tell()
488 self._file.seek(curpos, 0)
aifc.py 877 curpos = self._file.tell()
886 self._file.seek(curpos, 0)
894 self._file.seek(curpos, 0)
    [all...]
  /external/python/cpython2/Lib/
wave.py 496 curpos = self._file.tell()
501 self._file.seek(curpos, 0)
aifc.py 916 curpos = self._file.tell()
925 self._file.seek(curpos, 0)
933 self._file.seek(curpos, 0)
    [all...]
  /external/python/cpython3/Lib/
wave.py 495 curpos = self._file.tell()
500 self._file.seek(curpos, 0)
aifc.py 870 curpos = self._file.tell()
879 self._file.seek(curpos, 0)
887 self._file.seek(curpos, 0)
    [all...]
  /external/u-boot/scripts/
checkpatch.pl 618 my $curpos = 0;
621 $curpos = pos($string);
624 last if ($lastpos > 0 && ($curpos - length($omatch) != $lastpos));
625 $lastpos = $curpos;
    [all...]

Completed in 529 milliseconds