/aosp12/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
H A D | fgetln.c | 75 if (fp->_r <= 0 && __srefill(fp)) in fgetln() 79 if ((p = memchr(fp->_p, '\n', fp->_r)) != NULL) { in fgetln() 89 fp->_r -= len; in fgetln() 105 for (len = fp->_r, off = 0;; len += fp->_r) { in fgetln() 122 if ((p = memchr(fp->_p, '\n', fp->_r)) == NULL) in fgetln() 132 fp->_r -= diff; in fgetln()
|
H A D | getdelim.c | 68 if (fp->_r <= 0 && __srefill(fp)) { in getdelim() 76 p = memchr(fp->_p, sep, fp->_r); in getdelim() 78 len = fp->_r; in getdelim() 115 fp->_r -= (int)len; in getdelim()
|
H A D | ungetc.c | 112 if (fp->_r >= _UB(fp)._size && __submore(fp)) in ungetc() 115 inc_ret: fp->_r++; in ungetc() 136 fp->_ur = fp->_r; in ungetc() 142 fp->_r = 1; in ungetc()
|
H A D | rget.c | 47 fp->_r--; in __srget()
|
H A D | fpurge.c | 57 fp->_r = 0; in fpurge()
|
H A D | vsscanf.c | 54 f._bf._size = f._r = strlen(str); in vsscanf()
|
H A D | wsetup.c | 61 fp->_r = 0; in __swsetup()
|
H A D | vswscanf.c | 81 f._bf._size = f._r = mlen; in vswscanf()
|
H A D | setvbuf.c | 70 fp->_r = fp->_lbfsize = 0; in setvbuf()
|
/aosp12/bionic/libc/stdio/ |
H A D | refill.c | 54 fp->_r = 0; /* largely a convenience for callers */ in __srefill() 87 if ((fp->_r = fp->_ur) != 0) { in __srefill() 113 fp->_r = (*fp->_read)(fp->_cookie, (char *)fp->_p, fp->_bf._size); in __srefill() 114 if (fp->_r <= 0) { in __srefill() 115 if (fp->_r == 0) in __srefill() 118 fp->_r = 0; in __srefill()
|
H A D | vfscanf.cpp | 115 while ((fp->_r > 0 || __srefill(fp) == 0) && isspace(*fp->_p)) nread++, fp->_r--, fp->_p++; in __svfscanf() 132 fp->_r--, fp->_p++; in __svfscanf() 315 if (--fp->_r > 0) { in __svfscanf() 352 fp->_r--; in __svfscanf() 366 if (fp->_r <= 0 && __srefill(fp)) { in __svfscanf() 382 if ((n = fp->_r) < width) { in __svfscanf() 392 fp->_r -= width; in __svfscanf() 441 fp->_r--; in __svfscanf() 489 n++, fp->_r--, fp->_p++; in __svfscanf() 507 fp->_r--; in __svfscanf() [all …]
|
H A D | stdio.cpp | 190 fp->_r = 0; in __sfp() 369 fp->_r = 0; in freopen() 435 fp->_r = fp->_w = 0; in __FILE_close() 581 result -= fp->_r; in __ftello64_unlocked() 625 fp->_r = 0; in __fseeko64() 782 if (fp->_r <= 0) { in fgets_unlocked() 789 size_t len = fp->_r; in fgets_unlocked() 799 fp->_r -= len; in fgets_unlocked() 805 fp->_r -= len; in fgets_unlocked() 1104 if (fp->_r < 0) fp->_r = 0; in fread_unlocked() [all …]
|
H A D | local.h | 63 int _r; /* read space left for getc() */ member 240 #define __sgetc(p) (--(p)->_r < 0 ? __srget(p) : (int)(*(p)->_p++))
|
H A D | parsefloat.c | 175 if (--fp->_r > 0) in parsefloat()
|
/aosp12/frameworks/native/opengl/libs/ |
H A D | hooks.h | 59 #define GL_ENTRY(_r, _api, ...) _r (*(_api))(__VA_ARGS__); argument 60 #define EGL_ENTRY(_r, _api, ...) _r (*(_api))(__VA_ARGS__); argument
|
/aosp12/frameworks/native/opengl/libs/EGL/ |
H A D | egl_tls.h | 59 #define setError(_e, _r) egl_tls_t::setErrorEtc(__FUNCTION__, __LINE__, _e, _r) argument 61 #define setErrorQuiet(_e, _r) egl_tls_t::setErrorEtc(__FUNCTION__, __LINE__, _e, _r, true) argument
|
H A D | egl.cpp | 197 #define GL_ENTRY(_r, _api, ...) #_api, argument 198 #define EGL_ENTRY(_r, _api, ...) #_api, argument
|
H A D | egl_platform_entries.cpp | 971 SurfaceRef _r(dp, read); in eglMakeCurrentImpl() local 1017 if (!_r.get()) return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE); in eglMakeCurrentImpl() 1029 _r.acquire(); in eglMakeCurrentImpl()
|
/aosp12/frameworks/native/opengl/tests/hwc/ |
H A D | hwcTestLib.h | 73 ColorRGB(): _r(0.0), _g(0.0), _b(0.0) {}; in ColorRGB() 74 ColorRGB(float f): _r(f), _g(f), _b(f) {}; // Gray, NOLINT(google-explicit-constructor) in ColorRGB() 75 ColorRGB(float r, float g, float b): _r(r), _g(g), _b(b) {}; in ColorRGB() 76 float r(void) const { return _r; } in r() 81 float _r;
|
/aosp12/bionic/tests/ |
H A D | setjmp_test.cpp | 183 #define GET_FREG(n) ({ double _r; asm volatile("fmov %0, d"#n : "=r"(_r) : :); _r; }) 198 #define GET_FREG(n) ({ double _r; asm volatile("fcpyd %P0, d"#n : "=w"(_r) : :); _r;})
|
/aosp12/frameworks/native/libs/ui/include_private/ui/ |
H A D | RegionHelper.h | 53 inline region(RECT const* _r, size_t _c) : rects(_r), count(_c), dx(), dy() {} in region() 54 inline region(RECT const* _r, size_t _c, TYPE _dx, TYPE _dy) in region() 55 : rects(_r), count(_c), dx(_dx), dy(_dy) {} in region()
|
/aosp12/bionic/libc/bionic/ |
H A D | wcstod.cpp | 63 f._bf._size = f._r = max_len; in wcstod()
|
/aosp12/frameworks/base/services/core/java/com/android/server/am/ |
H A D | PendingIntentRecord.java | 101 int _r, Intent[] _i, String[] _it, int _f, SafeActivityOptions _o, int _userId) { in Key() argument 107 requestCode = _r; in Key() 118 hash = (ODD_PRIME_NUMBER*hash) + _r; in Key()
|
/aosp12/system/core/bootstat/ |
H A D | bootstat.cpp | 571 size_t numError(size_t pos, const std::string& _r) const { in numError() 573 const char* r = _r.c_str(); in numError() 574 size_t n = _r.length(); in numError()
|
/aosp12/frameworks/base/services/tests/servicestests/res/raw/ |
H A D | backup_telephony_with_password | 26 …55ң�z�s�-0�s �Џ�ԃX��s��E���XO~8�qʝ���K4����7՟�ch�Y��{���Lf9�9Z���(�_r�`>�`]��i[#��dH�ԥ:i�F…
|