/third_party/icu/icu4c/source/test/intltest/ |
D | colldata.cpp | 536 int32_t roffset = offset + clength; in minLengthInChars() local 539 if (roffset < maxOffset) { in minLengthInChars() 540 rlength = minLengthInChars(ceList, roffset, history); in minLengthInChars() 566 int32_t roffset = offset + 2; in minLengthInChars() local 572 if (roffset < maxOffset) { in minLengthInChars() 573 rlength = minLengthInChars(ceList, roffset, history); in minLengthInChars() 583 int32_t roffset = offset; in minLengthInChars() local 587 for (int32_t j = 0; roffset < maxOffset && j < 4; j += 1, roffset += 1) { in minLengthInChars() 588 uint32_t jce = ceList->get(roffset); in minLengthInChars() 603 if (roffset == offset) { in minLengthInChars() [all …]
|
/third_party/ffmpeg/libavfilter/ |
D | vf_colortemperature.c | 197 const uint8_t roffset = s->rgba_map[R]; in temperature_slice8p() local 209 float r = ptr[x * step + roffset]; in temperature_slice8p() 217 ptr[x * step + roffset] = av_clip_uint8(nr); in temperature_slice8p() 237 const uint8_t roffset = s->rgba_map[R]; in temperature_slice16p() local 249 float r = ptr[x * step + roffset]; in temperature_slice16p() 257 ptr[x * step + roffset] = av_clip_uintp2_c(nr, depth); in temperature_slice16p()
|
D | vf_vibrance.c | 181 const uint8_t roffset = s->rgba_map[R]; in vibrance_slice8p() local 201 float r = ptr[x * step + roffset] * scale; in vibrance_slice8p() 216 ptr[x * step + roffset] = av_clip_uint8(r * 255.f); in vibrance_slice8p() 236 const uint8_t roffset = s->rgba_map[R]; in vibrance_slice16p() local 258 float r = ptr[x * step + roffset] * scale; in vibrance_slice16p() 273 ptr[x * step + roffset] = av_clip_uintp2_c(r * max, depth); in vibrance_slice16p()
|
D | vf_colorcontrast.c | 208 const uint8_t roffset = s->rgba_map[R]; in colorcontrast_slice8p() local 226 float r = ptr[x * step + roffset]; in colorcontrast_slice8p() 239 ptr[x * step + roffset] = av_clip_uint8(nr); in colorcontrast_slice8p() 260 const uint8_t roffset = s->rgba_map[R]; in colorcontrast_slice16p() local 278 float r = ptr[x * step + roffset]; in colorcontrast_slice16p() 291 ptr[x * step + roffset] = av_clip_uintp2_c(nr, depth); in colorcontrast_slice16p()
|
D | vf_colorbalance.c | 275 const uint8_t roffset = s->rgba_map[R]; in color_balance8() local 290 float r = src[j + roffset] / max; in color_balance8() 302 dst[j + roffset] = av_clip_uint8(lrintf(r * max)); in color_balance8() 326 const uint8_t roffset = s->rgba_map[R]; in color_balance16() local 342 float r = src[j + roffset] / max; in color_balance16() 354 dst[j + roffset] = av_clip_uintp2_c(lrintf(r * max), depth); in color_balance16()
|
D | vf_colorchannelmixer.c | 406 const uint8_t roffset = s->rgba_map[R]; in filter_slice_rgba_packed() local 419 const uint8_t rin = src[j + roffset]; in filter_slice_rgba_packed() 455 dst[j + roffset] = av_clip_uint8(rout); in filter_slice_rgba_packed() 488 const uint8_t roffset = s->rgba_map[R]; in filter_slice_rgba16_packed() local 501 const uint16_t rin = src[j + roffset]; in filter_slice_rgba16_packed() 537 dst[j + roffset] = av_clip_uint16(rout); in filter_slice_rgba16_packed()
|
D | vf_selectivecolor.c | 330 …const uint8_t roffset = s->rgba_map[R]; … 340 … const int r = src[x + roffset]; \ 385 … dst[x + roffset] = av_clip_uint##nbits(r + adjust_r); \
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/ |
D | tjunittest.c | 101 int roffset = tjRedOffset[pf]; in initBuf() local 140 buf[index * ps + roffset] = 255; in initBuf() 145 buf[index * ps + roffset] = 255; in initBuf() 180 int roffset = tjRedOffset[pf]; in checkBuf() local 189 if (pf == TJPF_GRAY) roffset = goffset = boffset = 0; in checkBuf() 222 r = buf[index * ps + roffset]; in checkBuf() 260 printf("%.3d/%.3d/%.3d ", buf[(row * w + col) * ps + roffset], in checkBuf() 639 int roffset = tjRedOffset[pf]; in initBitmap() local 661 buf[row * pitch + i * ps + roffset] = r; in initBitmap() 673 int roffset = tjRedOffset[pf]; in cmpBitmap() local [all …]
|
/third_party/libjpeg-turbo/ |
D | tjunittest.c | 106 int roffset = tjRedOffset[pf]; in initBuf() local 145 buf[index * ps + roffset] = 255; in initBuf() 150 buf[index * ps + roffset] = 255; in initBuf() 185 int roffset = tjRedOffset[pf]; in checkBuf() local 194 if (pf == TJPF_GRAY) roffset = goffset = boffset = 0; in checkBuf() 227 r = buf[index * ps + roffset]; in checkBuf() 265 printf("%.3d/%.3d/%.3d ", buf[(row * w + col) * ps + roffset], in checkBuf() 682 int roffset = tjRedOffset[pf]; in initBitmap() local 704 buf[row * pitch + i * ps + roffset] = r; in initBitmap() 716 int roffset = tjRedOffset[pf]; in cmpBitmap() local [all …]
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
D | tjunittest.c | 105 int roffset = tjRedOffset[pf]; in initBuf() local 144 buf[index * ps + roffset] = 255; in initBuf() 149 buf[index * ps + roffset] = 255; in initBuf() 186 int roffset = tjRedOffset[pf]; in checkBuf() local 195 if (pf == TJPF_GRAY) roffset = goffset = boffset = 0; in checkBuf() 228 r = buf[index * ps + roffset]; in checkBuf() 267 buf[(row * w + col) * ps + roffset], in checkBuf() 695 int roffset = tjRedOffset[pf]; in initBitmap() local 717 buf[row * pitch + i * ps + roffset] = r; in initBitmap() 729 int roffset = tjRedOffset[pf]; in cmpBitmap() local [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtp/ |
D | gstrtcpbuffer.c | 1844 guint roffset; in gst_rtcp_packet_bye_get_reason_len() local 1851 roffset = get_reason_offset (packet); in gst_rtcp_packet_bye_get_reason_len() 1852 if (roffset == 0) in gst_rtcp_packet_bye_get_reason_len() 1857 return data[roffset]; in gst_rtcp_packet_bye_get_reason_len() 1873 guint roffset; in gst_rtcp_packet_bye_get_reason() local 1881 roffset = get_reason_offset (packet); in gst_rtcp_packet_bye_get_reason() 1882 if (roffset == 0) in gst_rtcp_packet_bye_get_reason() 1888 len = data[roffset]; in gst_rtcp_packet_bye_get_reason() 1893 roffset += 1; in gst_rtcp_packet_bye_get_reason() 1896 if (roffset + len > packet->rtcp->map.size) in gst_rtcp_packet_bye_get_reason() [all …]
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/java/ |
D | TJUnitTest.java | 147 int roffset = TJ.getRedOffset(pf); in initBuf() local 199 buf[index + roffset] = (byte)255; in initBuf() 204 buf[index + roffset] = (byte)255; in initBuf() 298 int roffset = TJ.getRedOffset(pf); in checkBuf() local 310 roffset = goffset = boffset = 0; in checkBuf() 350 byte r = buf[index + roffset]; in checkBuf() 407 int r = buf[pitch * row + col * ps + roffset]; in checkBuf()
|
/third_party/libjpeg-turbo/java/ |
D | TJUnitTest.java | 147 int roffset = TJ.getRedOffset(pf); in initBuf() local 199 buf[index + roffset] = (byte)255; in initBuf() 204 buf[index + roffset] = (byte)255; in initBuf() 298 int roffset = TJ.getRedOffset(pf); in checkBuf() local 310 roffset = goffset = boffset = 0; in checkBuf() 350 byte r = buf[index + roffset]; in checkBuf() 407 int r = buf[pitch * row + col * ps + roffset]; in checkBuf()
|
/third_party/ntfs-3g/ntfsprogs/ |
D | ntfsrecover.c | 839 u32 roffset; in get_extra_offset() local 841 roffset = get_redo_offset(logr) in get_extra_offset() 845 return ((((uoffset > roffset ? uoffset : roffset) - 1) | 7) + 1); in get_extra_offset()
|