/third_party/ffmpeg/libavfilter/ |
D | phase_template.c | 81 const pixel *rend, *end = nptr + (h - 2) * ns; in fn() local 93 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in fn() 98 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in fn() 106 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in fn() 111 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in fn() 119 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in fn() 124 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in fn() 132 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in fn() 138 for (rend = nptr + w; nptr < rend; nptr++, optr++) { in fn()
|
/third_party/json/docs/mkdocs/docs/api/basic_json/ |
D | rend.md | 1 # <small>nlohmann::basic_json::</small>rend 4 reverse_iterator rend() noexcept; 5 const_reverse_iterator rend() const noexcept; 11 ![Illustration from cppreference.com](../../images/range-rbegin-rend.svg) 32 --8<-- "examples/rend.cpp" 38 --8<-- "examples/rend.output"
|
/third_party/skia/third_party/externals/angle2/src/common/gl/cgl/ |
D | FunctionsCGL.cpp | 65 (CGLRendererInfoObj rend, GLint rend_num, CGLRendererProperty prop, GLint *value), 66 (rend, rend_num, prop, value)) 70 (CGLRendererInfoObj rend), 71 (rend)) 75 (GLuint display_mask, CGLRendererInfoObj *rend, GLint *nrend), 76 (display_mask, rend, nrend))
|
D | FunctionsCGL.h | 44 (CGLRendererInfoObj rend, GLint rend_num, CGLRendererProperty prop, GLint *value), 45 (rend, rend_num, prop, value)) 51 (CGLRendererInfoObj rend), 52 (rend)) 57 (GLuint display_mask, CGLRendererInfoObj *rend, GLint *nrend), 58 (display_mask, rend, nrend))
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/ |
D | hlr_auc_gw.c | 593 char *rpos, *rend; in sim_req_auth() local 608 rend = resp + resp_len; in sim_req_auth() 610 ret = snprintf(rpos, rend - rpos, "SIM-RESP-AUTH %s", imsi); in sim_req_auth() 611 if (ret < 0 || ret >= rend - rpos) in sim_req_auth() 623 rpos += wpa_snprintf_hex(rpos, rend - rpos, kc, 8); in sim_req_auth() 625 rpos += wpa_snprintf_hex(rpos, rend - rpos, sres, 4); in sim_req_auth() 627 rpos += wpa_snprintf_hex(rpos, rend - rpos, _rand, 16); in sim_req_auth() 638 if (rpos < rend) in sim_req_auth() 640 rpos += wpa_snprintf_hex(rpos, rend - rpos, g->kc, 8); in sim_req_auth() 641 if (rpos < rend) in sim_req_auth() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/ |
D | hlr_auc_gw.c | 593 char *rpos, *rend; in sim_req_auth() local 608 rend = resp + resp_len; in sim_req_auth() 610 ret = snprintf(rpos, rend - rpos, "SIM-RESP-AUTH %s", imsi); in sim_req_auth() 611 if (ret < 0 || ret >= rend - rpos) in sim_req_auth() 623 rpos += wpa_snprintf_hex(rpos, rend - rpos, kc, 8); in sim_req_auth() 625 rpos += wpa_snprintf_hex(rpos, rend - rpos, sres, 4); in sim_req_auth() 627 rpos += wpa_snprintf_hex(rpos, rend - rpos, _rand, 16); in sim_req_auth() 638 if (rpos < rend) in sim_req_auth() 640 rpos += wpa_snprintf_hex(rpos, rend - rpos, g->kc, 8); in sim_req_auth() 641 if (rpos < rend) in sim_req_auth() [all …]
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
D | es3fVertexTextureTests.cpp | 704 const Render& rend = renders[renderNdx]; in iterate() local 705 …const float lod = calculateLod(rend.texCoordScale, rend.region.size().asFloat(), rend.texture… in iterate() 707 …const Grid grid (GRID_SIZE_2D, rend.region.size(), getTextureSize(*m_textures[rend.textureNdx]… in iterate() 708 … TexTypeCoordParams<TEXTURETYPE_2D>(rend.texCoordScale, rend.texCoordOffset), useSafeTexCoords); in iterate() 710 …glViewport(viewportXOffset + rend.region.x, viewportYOffset + rend.region.y, rend.region.w, rend.r… in iterate() 711 renderCell (rend.textureNdx, lod, grid); in iterate() 712 computeReferenceCell (rend.textureNdx, lod, grid, refImage, rend.region); in iterate() 1039 const Render& rend = renders[renderNdx]; in iterate() local 1040 …const float lod = calculateLod(rend.texCoordScale, rend.region.size().asFloat(), rend.texture… in iterate() 1042 …const Grid grid (GRID_SIZE_CUBE, rend.region.size(), getTextureSize(*m_textures[rend.textureNd… in iterate() [all …]
|
/third_party/musl/src/stdio/ |
D | ext2.c | 6 return f->rend ? f->rend - f->rpos : 0; in __freadahead() 11 if (f->rpos == f->rend) return 0; in __freadptr() 12 *sizep = f->rend - f->rpos; in __freadptr()
|
D | fseek.c | 13 if (whence == SEEK_CUR && f->rend) off -= f->rend - f->rpos; in __fseeko_unlocked() 28 f->rpos = f->rend = 0; in __fseeko_unlocked()
|
D | fflush.c | 37 if (f->rpos != f->rend) f->seek(f, f->rpos-f->rend, SEEK_CUR); in fflush() 41 f->rpos = f->rend = 0; in fflush()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fVertexTextureTests.cpp | 604 const Render& rend = renders[renderNdx]; in iterate() local 605 …const float lod = calculateLod(rend.texCoordScale, rend.region.size().asFloat(), rend.texture… in iterate() 607 …const Grid grid (GRID_SIZE_2D, rend.region.size(), getTextureSize(*m_textures[rend.textureNdx]… in iterate() 608 … TexTypeCoordParams<TEXTURETYPE_2D>(rend.texCoordScale, rend.texCoordOffset), useSafeTexCoords); in iterate() 610 …glViewport(viewportXOffset + rend.region.x, viewportYOffset + rend.region.y, rend.region.w, rend.r… in iterate() 611 renderCell (rend.textureNdx, lod, grid); in iterate() 612 computeReferenceCell (rend.textureNdx, lod, grid, refImage, rend.region); in iterate() 941 const Render& rend = renders[renderNdx]; in iterate() local 942 …const float lod = calculateLod(rend.texCoordScale, rend.region.size().asFloat(), rend.texture… in iterate() 944 …const Grid grid (GRID_SIZE_CUBE, rend.region.size(), getTextureSize(*m_textures[rend.textureNd… in iterate() [all …]
|
/third_party/musl/porting/liteos_a/kernel/src/internal/ |
D | shgetc.c | 13 if (lim && f->rend - f->rpos > lim) in __shlim() 16 f->shend = f->rend; in __shlim() 30 if (f->shlim && f->rend - f->rpos > f->shlim - cnt) in __shgetc() 33 f->shend = f->rend; in __shgetc()
|
/third_party/musl/src/internal/ |
D | shgetc.c | 13 if (lim && f->rend - f->rpos > lim) in __shlim() 16 f->shend = f->rend; in __shlim() 30 if (f->shlim && f->rend - f->rpos > f->shlim - cnt) in __shgetc() 33 f->shend = f->rend; in __shgetc()
|
/third_party/musl/porting/uniproton/kernel/src/internal/ |
D | shgetc.c | 13 if (lim && f->rend - f->rpos > lim) in __shlim() 16 f->shend = f->rend; in __shlim() 30 if (f->shlim && f->rend - f->rpos > f->shlim - cnt) in __shgetc() 33 f->shend = f->rend; in __shgetc()
|
/third_party/musl/porting/liteos_m/kernel/src/internal/ |
D | shgetc.c | 13 if (lim && f->rend - f->rpos > lim) in __shlim() 16 f->shend = f->rend; in __shlim() 30 if (f->shlim && f->rend - f->rpos > f->shlim - cnt) in __shgetc() 33 f->shend = f->rend; in __shgetc()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Option/ |
D | ArgList.h | 194 reverse_iterator rbegin() { return {Args.rbegin(), Args.rend()}; } in rbegin() 195 reverse_iterator rend() { return {Args.rend(), Args.rend()}; } in rend() function 200 const_reverse_iterator rbegin() const { return {Args.rbegin(), Args.rend()}; } in rbegin() 201 const_reverse_iterator rend() const { return {Args.rend(), Args.rend()}; } in rend() function 218 auto B = Args.rend() - Range.second; in filtered_reverse() 219 auto E = Args.rend() - Range.first; in filtered_reverse()
|
/third_party/musl/porting/linux/user/src/stdio/ |
D | fread.c | 16 f->rpos = f->rend; in __fill_buffer() 21 f->rend = f->rpos + k; in __fill_buffer() 45 if (f->rpos != f->rend) { in fread() 47 k = MIN(f->rend - f->rpos, l); in fread()
|
/third_party/json/tests/src/ |
D | unit-iterators1.cpp | 136 CHECK(it != j.rend()); 141 CHECK(it == j.rend()); 145 CHECK(it != j.rend()); 150 CHECK(it == j.rend()); 154 CHECK(it != j.rend()); 325 auto rit = j.rend(); 442 CHECK(it != j.rend()); 447 CHECK(it == j.rend()); 451 CHECK(it != j.rend()); 456 CHECK(it == j.rend()); [all …]
|
D | unit-capacity.cpp | 223 CHECK(std::distance(j.rbegin(), j.rend()) == j.size()); 243 CHECK(std::distance(j.rbegin(), j.rend()) == j.size()); 265 CHECK(std::distance(j.rbegin(), j.rend()) == j.size()); 285 CHECK(std::distance(j.rbegin(), j.rend()) == j.size()); 308 CHECK(std::distance(j.rbegin(), j.rend()) == j.size()); 328 CHECK(std::distance(j.rbegin(), j.rend()) == j.size()); 349 CHECK(std::distance(j.rbegin(), j.rend()) == j.size()); 369 CHECK(std::distance(j.rbegin(), j.rend()) == j.size()); 389 CHECK(std::distance(j.rbegin(), j.rend()) == j.size()); 409 CHECK(std::distance(j.rbegin(), j.rend()) == j.size());
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | Trace.h | 92 reverse_iterator rend () { return BasicBlocks.rend(); } in rend() function 93 const_reverse_iterator rend () const { return BasicBlocks.rend(); } in rend() function
|
/third_party/gn/src/base/ |
D | value_iterators.cc | 155 dict_iterator_proxy::reverse_iterator dict_iterator_proxy::rend() { in rend() function in base::detail::dict_iterator_proxy 159 dict_iterator_proxy::const_reverse_iterator dict_iterator_proxy::rend() const { in rend() function in base::detail::dict_iterator_proxy 177 return const_reverse_iterator(rend()); in crend() 202 const_dict_iterator_proxy::rend() const { in rend() function in base::detail::const_dict_iterator_proxy 223 return const_reverse_iterator(rend()); in crend()
|
/third_party/musl/porting/uniproton/kernel/src/stdio/ |
D | fseek.c | 6 if (whence == SEEK_CUR && f->rend) off -= f->rend - f->rpos; in __fseeko_unlocked() 21 f->rpos = f->rend = 0; in __fseeko_unlocked()
|
/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
D | fseek.c | 6 if (whence == SEEK_CUR && f->rend) off -= f->rend - f->rpos; in __fseeko_unlocked() 21 f->rpos = f->rend = 0; in __fseeko_unlocked()
|
/third_party/musl/porting/liteos_a/kernel/src/stdio/ |
D | fseek.c | 13 if (whence == SEEK_CUR && f->rend) off -= f->rend - f->rpos; in __fseeko_unlocked() 28 f->rpos = f->rend = 0; in __fseeko_unlocked()
|
D | fflush.c | 37 if (f->rpos != f->rend) f->seek(f, f->rpos-f->rend, SEEK_CUR); in fflush() 41 f->rpos = f->rend = 0; in fflush()
|