Home
last modified time | relevance | path

Searched refs:ioff (Results 1 - 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Dpostprocessor.c834 size_t ioff; in post_process_multipart() local
839 ioff = 0; in post_process_multipart()
868 ioff++; in post_process_multipart()
876 ioff++; in post_process_multipart()
888 ioff += 2; in post_process_multipart()
893 ioff++; in post_process_multipart()
899 ioff++; in post_process_multipart()
909 ioff++; in post_process_multipart()
942 &ioff, in post_process_multipart()
949 &ioff, in post_process_multipart()
[all...]
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationIteratorTest.java747 int ioff, noff = offsets.length; in TestSearchCollatorElements()
750 ioff = 0; in TestSearchCollatorElements()
758 if ( ioff < noff ) { in TestSearchCollatorElements()
759 if ( offset != offsets[ioff] ) { in TestSearchCollatorElements()
760 errln("Error: in locale " + localeString + ", expected CEIterator next()->getOffset " + offsets[ioff] + ", got " + offset); in TestSearchCollatorElements()
761 //ioff = noff; in TestSearchCollatorElements()
764 ioff++; in TestSearchCollatorElements()
769 if ( ioff < noff ) { in TestSearchCollatorElements()
775 ioff = noff; in TestSearchCollatorElements()
782 if ( ioff > in TestSearchCollatorElements()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationIteratorTest.java750 int ioff, noff = offsets.length; in TestSearchCollatorElements()
753 ioff = 0; in TestSearchCollatorElements()
761 if ( ioff < noff ) { in TestSearchCollatorElements()
762 if ( offset != offsets[ioff] ) { in TestSearchCollatorElements()
763 errln("Error: in locale " + localeString + ", expected CEIterator next()->getOffset " + offsets[ioff] + ", got " + offset); in TestSearchCollatorElements()
764 //ioff = noff; in TestSearchCollatorElements()
767 ioff++; in TestSearchCollatorElements()
772 if ( ioff < noff ) { in TestSearchCollatorElements()
778 ioff = noff; in TestSearchCollatorElements()
785 if ( ioff > in TestSearchCollatorElements()
[all...]
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/search/
H A DSearchTest.java2173 int ioff, noff = offsets.length; in TestUsingSearchCollator()
2177 ioff = 0; in TestUsingSearchCollator()
2183 if ( ioff < noff ) { in TestUsingSearchCollator()
2184 if ( offset != offsets[ioff] ) { in TestUsingSearchCollator()
2185 errln("Error: in locale " + localeString + ", expected SearchIterator.next() " + offsets[ioff] + ", got " + offset); in TestUsingSearchCollator()
2186 //ioff = noff; in TestUsingSearchCollator()
2189 ioff++; in TestUsingSearchCollator()
2194 if ( ioff < noff ) { in TestUsingSearchCollator()
2199 ioff = noff; in TestUsingSearchCollator()
2205 if ( ioff > in TestUsingSearchCollator()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/search/
H A DSearchTest.java2176 int ioff, noff = offsets.length; in TestUsingSearchCollator()
2180 ioff = 0; in TestUsingSearchCollator()
2186 if ( ioff < noff ) { in TestUsingSearchCollator()
2187 if ( offset != offsets[ioff] ) { in TestUsingSearchCollator()
2188 errln("Error: in locale " + localeString + ", expected SearchIterator.next() " + offsets[ioff] + ", got " + offset); in TestUsingSearchCollator()
2189 //ioff = noff; in TestUsingSearchCollator()
2192 ioff++; in TestUsingSearchCollator()
2197 if ( ioff < noff ) { in TestUsingSearchCollator()
2202 ioff = noff; in TestUsingSearchCollator()
2208 if ( ioff > in TestUsingSearchCollator()
[all...]
/third_party/mesa3d/src/freedreno/afuc/
H A Dasm.c281 instr.br.ioff = resolve_label(ai->label) - i; in emit_instructions()
315 instr.br.ioff = resolve_label(ai->label) - i; in emit_instructions()
H A Ddisasm.c601 unsigned off = pc + instr->br.ioff; in disasm_instr()
647 printf(" (#%d, %04x)", instr->br.ioff, off); in disasm_instr()
741 label_idx(i + instr->br.ioff, true); in setup_labels()
H A Dafuc.h185 int32_t ioff : 16; /* relative offset */ member
H A Demu.c249 uint32_t off = emu->gpr_regs.pc + instr->br.ioff; in emu_instr()
/third_party/ffmpeg/libavcodec/
H A Dvp9dsp_template.c2347 int imx = mx, ioff = 0; in do_scaled_8tap_c() local
2350 tmp_ptr[x] = FILTER_8TAP(src, ioff, filters[imx], 1); in do_scaled_8tap_c()
2352 ioff += imx >> 4; in do_scaled_8tap_c()
2421 int imx = mx, ioff = 0; in do_scaled_bilin_c() local
2424 tmp_ptr[x] = FILTER_BILIN(src, ioff, imx, 1); in do_scaled_bilin_c()
2426 ioff += imx >> 4; in do_scaled_bilin_c()
/third_party/astc-encoder/Source/
H A Dstb_image.h5084 stbi__uint32 ioff=0, idata_limit=0, i, pal_len=0; in stbi__parse_png_file() local
5182 if ((int)(ioff + c.length) < (int)ioff) return 0; in stbi__parse_png_file()
5183 if (ioff + c.length > idata_limit) { in stbi__parse_png_file()
5187 while (ioff + c.length > idata_limit) in stbi__parse_png_file()
5193 if (!stbi__getn(s, z->idata+ioff,c.length)) return stbi__err("outofdata","Corrupt PNG"); in stbi__parse_png_file()
5194 ioff += c.length; in stbi__parse_png_file()
5206 z->expanded = (stbi_uc *) stbi_zlib_decode_malloc_guesssize_headerflag((char *) z->idata, ioff, raw_len, (int *) &raw_len, !is_iphone); in stbi__parse_png_file()

Completed in 29 milliseconds