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

  /external/skia/include/core/
SkBuffer.h 31 SkRBuffer() : fData(0), fPos(0), fStop(0) {}
38 fPos = (const char*)data;
47 fPos = (const char*)data;
54 size_t pos() const { return fPos - fData; }
63 bool eof() const { return fPos >= fStop; }
85 const char* fPos;
99 SkWBuffer() : fData(0), fPos(0), fStop(0) {}
106 fPos = (char*)data;
113 fPos = (char*)data;
118 size_t pos() const { return fPos - fData;
    [all...]
SkDeque.h 60 char* fPos;
  /external/skia/src/core/
SkBuffer.cpp 24 SkASSERT((fData != 0 && fStop == 0) || fPos + size <= fStop);
26 memcpy(buffer, fPos, size);
27 fPos += size;
32 const void* result = fPos;
41 fPos += n;
47 void* result = fPos;
54 SkASSERT(fData == 0 || fStop == 0 || fPos + size <= fStop);
56 memcpy(fPos, buffer, size);
57 fPos += size;
67 char* p = fPos;
    [all...]
SkDeque.cpp 233 fPos = fHead ? fHead->fBegin : NULL;
237 char* pos = fPos;
248 fPos = next;
  /external/skia/bench/
TextBench.cpp 22 SkPoint* fPos;
39 fPos = new SkPoint[fCount];
42 fPos[i].set(x, 0);
47 fPos = NULL;
52 delete[] fPos;
61 if (fPos) {
83 if (fPos) {
86 canvas->drawPosText(fText.c_str(), fText.size(), fPos, paint);
  /external/chromium/third_party/icu/source/io/
ustdio.c 324 int32_t charsLeft = (int32_t)(f->str.fLimit - f->str.fPos);
329 u_strncpy(f->str.fPos, mySource, written);
330 f->str.fPos += written;
409 dataSize = (int32_t)(str->fLimit - str->fPos);
417 uprv_memmove(f->fUCBuffer, str->fPos, dataSize * sizeof(UChar));
466 str->fPos = str->fBuffer;
490 if (str->fPos >= str->fLimit) {
498 dataSize = (int32_t)(str->fLimit - str->fPos);
509 alias = str->fPos;
553 str->fPos = alias
    [all...]
ufile.c 79 result->str.fPos = result->fUCBuffer;
153 result->str.fPos = stringBuf;
175 endOfBuffer = (UBool)(f->str.fPos >= f->str.fLimit);
189 else if (file->str.fPos < file->str.fLimit) {
190 *(file->str.fPos++) = 0;
203 file->str.fPos = file->fUCBuffer;
206 file->str.fPos = file->str.fBuffer;
274 if ((file->str.fPos == file->str.fBuffer) && (file->str.fLimit == file->str.fBuffer)) {
uscanf_p.c 436 len = (int32_t)(input->str.fLimit - input->str.fPos);
453 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
469 input->str.fPos += parsePos;
499 len = (int32_t)(input->str.fLimit - input->str.fPos);
516 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
532 input->str.fPos += parsePos;
571 len = (int32_t)(input->str.fLimit - input->str.fPos);
590 scientificResult = unum_parseDouble(scientificFormat, input->str.fPos, len,
593 genericResult = unum_parseDouble(genericFormat, input->str.fPos, len,
609 input->str.fPos += parsePos
    [all...]
ufile.h 48 UChar *fPos; /* current pos in fUCBuffer */
sscanf.c 112 inStr.str.fPos = (UChar *)buffer;
  /external/icu4c/io/
ustdio.c 324 int32_t charsLeft = (int32_t)(f->str.fLimit - f->str.fPos);
329 u_strncpy(f->str.fPos, mySource, written);
330 f->str.fPos += written;
409 dataSize = (int32_t)(str->fLimit - str->fPos);
417 uprv_memmove(f->fUCBuffer, str->fPos, dataSize * sizeof(UChar));
466 str->fPos = str->fBuffer;
490 if (str->fPos >= str->fLimit) {
498 dataSize = (int32_t)(str->fLimit - str->fPos);
509 alias = str->fPos;
553 str->fPos = alias
    [all...]
ufile.c 81 result->str.fPos = result->fUCBuffer;
171 result->str.fPos = stringBuf;
193 endOfBuffer = (UBool)(f->str.fPos >= f->str.fLimit);
207 else if (file->str.fPos < file->str.fLimit) {
208 *(file->str.fPos++) = 0;
221 file->str.fPos = file->fUCBuffer;
224 file->str.fPos = file->str.fBuffer;
294 if ((file->str.fPos == file->str.fBuffer) && (file->str.fLimit == file->str.fBuffer)) {
uscanf_p.c 436 len = (int32_t)(input->str.fLimit - input->str.fPos);
453 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
469 input->str.fPos += parsePos;
499 len = (int32_t)(input->str.fLimit - input->str.fPos);
516 num = unum_parseDouble(format, input->str.fPos, len, &parsePos, &status);
532 input->str.fPos += parsePos;
571 len = (int32_t)(input->str.fLimit - input->str.fPos);
590 scientificResult = unum_parseDouble(scientificFormat, input->str.fPos, len,
593 genericResult = unum_parseDouble(genericFormat, input->str.fPos, len,
609 input->str.fPos += parsePos
    [all...]
ufile.h 48 UChar *fPos; /* current pos in fUCBuffer */
sscanf.c 112 inStr.str.fPos = (UChar *)buffer;
  /external/chromium/third_party/icu/source/tools/toolutil/
xmlparser.cpp 334 fPos = 0; // TODO use just a local pos variable and pass it into functions
353 if (mXMLDecl.lookingAt(fPos, status)) {
354 fPos = mXMLDecl.end(status);
361 if (mXMLDoctype.lookingAt(fPos, status)) {
362 fPos = mXMLDoctype.end(status);
369 if (mXMLElemEmpty.lookingAt(fPos, status)) {
372 fPos = mXMLElemEmpty.end(status);
374 if (mXMLElemStart.lookingAt(fPos, status) == FALSE) {
390 if (mXMLElemStart.lookingAt(fPos, status)) {
415 if (mXMLComment.lookingAt(fPos, status))
    [all...]
xmlparser.h 237 int32_t fPos; // String index of the current scan position in
  /external/icu4c/tools/toolutil/
xmlparser.cpp 334 fPos = 0; // TODO use just a local pos variable and pass it into functions
353 if (mXMLDecl.lookingAt(fPos, status)) {
354 fPos = mXMLDecl.end(status);
361 if (mXMLDoctype.lookingAt(fPos, status)) {
362 fPos = mXMLDoctype.end(status);
369 if (mXMLElemEmpty.lookingAt(fPos, status)) {
372 fPos = mXMLElemEmpty.end(status);
374 if (mXMLElemStart.lookingAt(fPos, status) == FALSE) {
390 if (mXMLElemStart.lookingAt(fPos, status)) {
415 if (mXMLComment.lookingAt(fPos, status))
    [all...]
xmlparser.h 237 int32_t fPos; // String index of the current scan position in
  /external/skia/gm/
gradients.cpp 9 const SkScalar* fPos;
31 return SkGradientShader::CreateLinear(pts, data.fColors, data.fPos,
41 data.fPos, data.fCount, tm, mapper);
50 data.fPos, data.fCount, mapper);
  /external/stlport/test/eh/
test_insert.h 331 : original( orig ), fPos( random_number( orig.size() ))
336 fPos = size_t(pos);
350 EH_STD::advance( pos, size_t(fPos) );
356 VerifyInsertion( original, c, &fInsVal, 1+&fInsVal, fPos );
361 size_t fPos;
368 : original( orig ), fPos( random_number( orig.size() )), fInsCnt(insCnt)
373 fPos=size_t(pos);
387 EH_STD::advance( pos, fPos );
393 VerifyInsertN( original, c, fInsCnt, fInsVal, fPos );
398 size_t fPos;
    [all...]
  /external/skia/src/effects/
SkGradientShader.cpp 104 SkFixed fPos; // 0...1
219 recs->fPos = 0;
247 recs->fPos = curr;
262 recs->fPos = p;
295 recs[0].fPos = 0;
297 recs[i].fPos = buffer.readS32();
327 buffer.write32(recs[i].fPos);
516 int nextIndex = SkFixedToFFFF(rec[i].fPos) >> kCache16Shift;
556 int nextIndex = SkFixedToFFFF(rec[i].fPos) >> (16 - kCache32Bits);
    [all...]
  /external/srec/tools/grxmlcompile/
sub_grph.cpp 42 int fPos= label.find_first_of ("___");
44 // std::cout << label << " " << count << " " << fPos << " " << lPos << std::endl;
45 if (fPos >= 0 && lPos == count)
  /external/jdiff/
xerces.jar 

Completed in 5225 milliseconds