Searched defs:fpos (Results 1 - 24 of 24) sorted by relevance

/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddtfmapts.cpp288 FieldPosition fpos; local
297 dateFmt->format(dateObj, str, fpos, status);
311 sdf.format(dateObj, str, fpos, status);
313 sdf.format((UDate)0, str, fpos);
327 fmt->format(numObj, str, fpos, status);
342 fmt.format(numObj, str, fpos, status);
346 fmt.format(1.41421, str, fpos);
347 fmt.format((int32_t)9876543, str, fpos);
362 fmt.format(numObj, str, fpos, status);
366 fmt.format(1.41421, str, fpos);
[all...]
H A Ddtfmttst.cpp3014 FieldPosition fpos; local
3019 fpos.setBeginIndex(0);
3020 fpos.setEndIndex(0);
3025 formatters[i]->format(*calendars[i], buf, fpos);
3033 fpos.setBeginIndex(0);
3034 fpos.setEndIndex(0);
3039 formatters[i]->format(*calendars[j], buf, fpos);
/external/icu4c/test/intltest/
H A Ddtfmapts.cpp288 FieldPosition fpos; local
297 dateFmt->format(dateObj, str, fpos, status);
312 sdf.format(dateObj, str, fpos, status);
314 sdf.format((UDate)0, str, fpos);
331 fmt->format(numObj, str, fpos, status);
346 fmt.format(numObj, str, fpos, status);
350 fmt.format(1.41421, str, fpos);
351 fmt.format((int32_t)9876543, str, fpos);
366 fmt.format(numObj, str, fpos, status);
370 fmt.format(1.41421, str, fpos);
[all...]
H A Ddtfmttst.cpp3306 FieldPosition fpos; local
3311 fpos.setBeginIndex(0);
3312 fpos.setEndIndex(0);
3317 formatters[i]->format(*calendars[i], buf, fpos);
3325 fpos.setBeginIndex(0);
3326 fpos.setEndIndex(0);
3331 formatters[i]->format(*calendars[j], buf, fpos);
3957 FieldPosition fpos(0);
3958 dmft->format(*rootChineseCalendar, result, fpos);
4114 FieldPosition fpos(
[all...]
/external/srec/srec/clib/
H A Dsrec_arb.c290 long fpos; local
299 fpos = pftell(fp);
300 buffer = (char*)CALLOC_CLR(fpos, sizeof(char), "srec.arbdata");
303 buffer_size = fpos;
/external/stlport/stlport/stl/
H A Dchar_traits.h84 // Class fpos, which represents a position within a file. (The C++
87 template <class _StateT> class fpos { class
89 fpos(streamoff __pos) : _M_pos(__pos), _M_st(_STLP_NULL_CHAR_INIT(_StateT)) {} function in class:fpos
90 fpos() : _M_pos(0), _M_st(_STLP_NULL_CHAR_INIT(_StateT)) {} function in class:fpos
94 bool operator==(const fpos& __y) const
96 bool operator!=(const fpos& __y) const
99 fpos& operator+=(streamoff __off) {
103 fpos& operator-=(streamoff __off) {
108 fpos operator+(streamoff __off) {
109 fpos __tm
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dlocdspnm.cpp432 FieldPosition fpos; local
434 format->format(data, 2, result, fpos, status);
H A Dzstrfmt.cpp803 FieldPosition fpos; local
809 fallbackFmt->format(params, 2, location, fpos, status);
815 regionFmt->format(params, 1, location, fpos, status);
842 FieldPosition fpos; local
846 regionFmt->format(params, 1, location, fpos, status);
975 FieldPosition fpos; local
981 fallbackFmt->format(params, 2, mzPartialLoc[mzPartialLocIdx][1], fpos, status);
988 fallbackFmt->format(params, 2, mzPartialLoc[mzPartialLocIdx][2], fpos, status);
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafhints.c70 FT_Int fpos,
108 if ( edge[-1].fpos < fpos )
113 if ( edge[-1].fpos == fpos && dir == axis->major_dir )
123 edge->fpos = (FT_Short)fpos;
942 delta = edge->fpos - u;
951 delta = u - edge->fpos;
960 FT_Pos fpos; local
[all...]
H A Dafhints.h293 FT_Short fpos; /* original, unscaled position (font units) */ member in struct:AF_EdgeRec_
409 FT_Int fpos,
/external/freetype/src/autofit/
H A Dafhints.c81 FT_Int fpos,
119 if ( edge[-1].fpos < fpos )
124 if ( edge[-1].fpos == fpos && dir == axis->major_dir )
134 edge->fpos = (FT_Short)fpos;
964 delta = edge->fpos - u;
973 delta = u - edge->fpos;
982 FT_Pos fpos; local
[all...]
H A Dafhints.h293 FT_Short fpos; /* original, unscaled position (in font units) */ member in struct:AF_EdgeRec_
409 FT_Int fpos,
/external/grub/stage2/
H A Dfsys_xfs.c57 int fpos; member in struct:xfs_info
245 xfs.fpos = sizeof(xfs_btree_block_t);
273 xfs.fpos = sizeof(xfs_btree_block_t);
276 devread (xfs.daddr, xfs.fpos, sizeof(xfs_bmbt_rec_t), filebuf);
278 xfs.fpos += sizeof(xfs_bmbt_rec_32_t);
/external/svox/pico/lib/
H A Dpicopal.c360 fpos_t fpos; local
363 fgetpos((FILE *)stream,&fpos);
366 fsetpos((FILE *)stream,&fpos);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_snprintf.c1016 int fpos = 0; local
1195 fpos = convert(fracpart, fconvert, sizeof(fconvert), 10, 0);
1197 leadfraczeros = precision - fpos;
1200 if (fpos > 0) /* Omit trailing fractional part zeros. */
1201 while (omitcount < fpos && fconvert[omitcount] == '0')
1270 while (fpos > omitcount) { /* The remaining fractional part. */
1271 fpos--;
1272 OUTCHAR(str, *len, size, fconvert[fpos]);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dpaint.c110 VGfloat fpos = 0, incr = 1.f / size; local
113 while (fpos < ramp_stops[0]) {
115 fpos += incr;
123 while (fpos < ramp_stops[rnext] && pos < size) {
124 VGint dist = 256 * ((fpos - ramp_stops[rcur]) * delta);
130 fpos += incr;
/external/icu4c/i18n/
H A Dlocdspnm.cpp612 FieldPosition fpos; local
614 keyTypeFormat->format(data, 2, temp3, fpos, status);
630 FieldPosition fpos; local
632 format->format(data, 2, result, fpos, status);
H A Dtzgnames.cpp555 FieldPosition fpos; local
571 fRegionFormat->format(param, 1, name, fpos, status);
586 fRegionFormat->format(param, 1, name, fpos, status);
835 FieldPosition fpos; local
840 fFallbackFormat->format(param, 2, name, fpos, status);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c1016 int fpos = 0; local
1195 fpos = convert(fracpart, fconvert, sizeof(fconvert), 10, 0);
1197 leadfraczeros = precision - fpos;
1200 if (fpos > 0) /* Omit trailing fractional part zeros. */
1201 while (omitcount < fpos && fconvert[omitcount] == '0')
1270 while (fpos > omitcount) { /* The remaining fractional part. */
1271 fpos--;
1272 OUTCHAR(str, *len, size, fconvert[fpos]);
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpaint.c110 VGfloat fpos = 0, incr = 1.f / size; local
113 while (fpos < ramp_stops[0]) {
115 fpos += incr;
123 while (fpos < ramp_stops[rnext] && pos < size) {
124 VGint dist = 256 * ((fpos - ramp_stops[rcur]) * delta);
130 fpos += incr;
/external/openfst/src/include/fst/
H A Dcompact-fst.h243 size_t pos = 0, fpos = 0; local
245 fpos = pos;
256 if ((compactor.Size() != -1) && ((pos - fpos) != compactor.Size())) {
/external/qemu/
H A Dkqemu.c380 uint32_t fpos; member in struct:fpstate
/external/srec/srec/Semproc/src/
H A DSemanticGraphImpl.c285 long fpos; local
328 fpos = pftell(scripts_file);
335 pfseek(scripts_file, fpos, SEEK_SET);
394 fpos = pftell(p_text_file);
412 pfseek(p_text_file, fpos, SEEK_SET);
/external/srec/srec/crec/
H A Dsrec_context.c378 long fpos; local
381 fpos = pftell(fp);
388 pfseek(fp, fpos, SEEK_SET);
921 long fpos; local
927 fpos = pftell(fp);
941 pfseek(fp, fpos, SEEK_SET);
1776 long fpos; local
1779 fpos = pftell(fp);
1783 pfseek(fp, fpos, SEEK_SET);

Completed in 1227 milliseconds