Home
last modified time | relevance | path

Searched refs:st2 (Results 1 - 25 of 60) sorted by relevance

123

/third_party/musl/libc-test/src/functional/
H A Dmbc.c27 mbstate_t st, st2; in main() local
73 memset(&st2, 0, sizeof st2); in main()
74 T(mbrtowc(&wc, "\xc2", 1, &st2), -2, "failed to accept initial byte"); in main()
75 T(mbrtowc(&wc, "\x80", 1, &st2), 1, "failed to resume"); in main()
78 memset(&st2, 0, sizeof st2); in main()
79 T(mbrtowc(&wc, "\xc2", 1, &st2), -2, "failed to accept initial byte"); in main()
80 T(mbsrtowcs(wcs, (cs="\xa0""abc",&cs), 32, &st2), 4, "failed to resume"); in main()
/third_party/python/Lib/distutils/tests/
H A Dtest_file_util.py96 st2 = os.stat(self.source)
98 self.assertTrue(os.path.samestat(st, st2), (st, st2))
99 self.assertTrue(os.path.samestat(st2, st3), (st2, st3))
113 st2 = os.stat(self.source)
115 self.assertTrue(os.path.samestat(st, st2), (st, st2))
116 self.assertFalse(os.path.samestat(st2, st3), (st2, st
[all...]
/third_party/ffmpeg/libavcodec/aarch64/
H A Dmdct_neon.S64 st2 {v4.s,v5.s}[0], [x6]
65 st2 {v4.s,v5.s}[1], [x8]
68 st2 {v4.s,v5.s}[0], [x6]
69 st2 {v4.s,v5.s}[1], [x8]
114 st2 {v4.2s,v5.2s}, [x0], x7
115 st2 {v6.2s,v7.2s}, [x8], #16
120 st2 {v4.2s,v5.2s}, [x0]
121 st2 {v6.2s,v7.2s}, [x8]
248 st2 {v6.s,v7.s}[0], [x6]
249 st2 {v
[all...]
H A Dsbrdsp_neon.S82 st2 {v0.4S, v1.4S}, [x1], #32
85 st2 {v2.4S, v3.4S}, [x1], #32
90 st2 {v0.4S, v1.4S}, [x1], #32
91 st2 {v2.4S, v3.4S}, [x1], #32
109 st2 {v1.4S, v2.4S}, [x2], #32
118 st2 {v1.2S, v2.2S}, [x2], #16
119 st2 {v1.S, v2.S}[2], [x2]
133 st2 {v0.4S, v1.4S}, [x0], #32
H A Dh264dsp_neon.S533 st2 {v16.b,v17.b}[0], [x0], x1
534 st2 {v16.b,v17.b}[1], [x0], x1
535 st2 {v16.b,v17.b}[2], [x0], x1
536 st2 {v16.b,v17.b}[3], [x0], x1
561 st2 {v16.b,v17.b}[0], [x0], x1
562 st2 {v16.b,v17.b}[1], [x0], x1
563 st2 {v16.b,v17.b}[2], [x0], x1
564 st2 {v16.b,v17.b}[3], [x0], x1
565 st2 {v16.b,v17.b}[4], [x0], x1
566 st2 {v1
[all...]
H A Dvc1dsp_neon.S845 st2 {v2.b, v3.b}[0], [x0], x1
846 st2 {v2.b, v3.b}[1], [x0], x1
847 st2 {v2.b, v3.b}[2], [x0], x1
848 st2 {v2.b, v3.b}[3], [x0]
1025 st2 {v0.b, v1.b}[0], [x0], x1
1026 st2 {v0.b, v1.b}[1], [x0], x1
1027 st2 {v0.b, v1.b}[2], [x0], x1
1028 st2 {v0.b, v1.b}[3], [x0]
1030 st2 {v0.b, v1.b}[4], [x4], x1
1031 st2 {v
[all...]
/third_party/musl/src/unistd/
H A Dttyname_r.c8 struct stat st1, st2; in ttyname_r() local
22 if (stat(name, &st1) || fstat(fd, &st2)) in ttyname_r()
24 if (st1.st_dev != st2.st_dev || st1.st_ino != st2.st_ino) in ttyname_r()
/third_party/toybox/toys/posix/
H A Dpwd.c30 struct stat st1, st2; in pwd_main() local
44 if (stat(pwd, &st1) || stat(PWD, &st2) || st1.st_ino != st2.st_ino || in pwd_main()
45 st1.st_dev != st2.st_dev) s = 0; in pwd_main()
/third_party/toybox/toys/other/
H A Dmountpoint.c34 struct stat st1, st2; in mountpoint_main() local
54 xstat(arg, &st2); in mountpoint_main()
61 toys.exitval = !(st1.st_dev != st2.st_dev || st1.st_ino == st2.st_ino); in mountpoint_main()
H A Dswitch_root.c47 struct stat st1, st2; in switch_root_main() local
62 if (chdir(newroot) || stat(".", &st1) || stat("/", &st2) || in switch_root_main()
63 st1.st_dev == st2.st_dev) in switch_root_main()
68 TT.rootdev=st2.st_dev; in switch_root_main()
/third_party/openssl/test/testutil/
H A Dtests.c276 int test_str_eq(const char *file, int line, const char *st1, const char *st2, in test_str_eq() argument
282 test_fail_string_message(NULL, file, line, "string", st1, st2, "==", in test_str_eq()
290 int test_str_ne(const char *file, int line, const char *st1, const char *st2, in test_str_ne() argument
296 test_fail_string_message(NULL, file, line, "string", st1, st2, "!=", in test_str_ne()
304 int test_strn_eq(const char *file, int line, const char *st1, const char *st2, in test_strn_eq() argument
310 test_fail_string_message(NULL, file, line, "string", st1, st2, "==", in test_strn_eq()
318 int test_strn_ne(const char *file, int line, const char *st1, const char *st2, in test_strn_ne() argument
324 test_fail_string_message(NULL, file, line, "string", st1, st2, "!=", in test_strn_ne()
332 int test_mem_eq(const char *file, int line, const char *st1, const char *st2, in test_mem_eq() argument
338 test_fail_memory_message(NULL, file, line, "memory", st1, st2, " in test_mem_eq()
345 test_mem_ne(const char *file, int line, const char *st1, const char *st2, const void *s1, size_t n1, const void *s2, size_t n2) test_mem_ne() argument
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/stat/
H A Dfutimesat.c61 struct stat st2; in futimesat_0100() local
62 if (fstatat(dir_fd, "test.txt", &st2, 0) != 0) { in futimesat_0100()
66 if (st2.st_mtime != tv[1].tv_sec) { in futimesat_0100()
/third_party/ffmpeg/libswscale/aarch64/
H A Drgb2rgb_neon.S37 st2 {v0.16b, v1.16b}, [x2], #32
48 st2 {v0.8b, v1.8b}, [x2], #16
/third_party/python/Lib/test/
H A Dtest_symtable.py175 st2 = st1.get_children()[0]
176 self.assertTrue(st2.lookup('x').is_local())
177 self.assertTrue(st2.lookup('x').is_annotated())
178 self.assertFalse(st2.lookup('x').is_global())
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
H A DCharsetMBCS.java604 int st1, st2, st3, i; in reconstituteData()
607 st2 = stage1[st1]; in reconstituteData()
608 if (st2 != stage1Length/2) { in reconstituteData()
619 stage2[st2++] = st3++; in reconstituteData()
620 stage2[st2++] = st3++; in reconstituteData()
621 stage2[st2++] = st3++; in reconstituteData()
622 stage2[st2++] = st3; in reconstituteData()
625 st2+=4; in reconstituteData()
4771 char st1,maxStage1, st2; in MBCSGetFilteredUnicodeSetForUnicode()
4798 st2 in MBCSGetFilteredUnicodeSetForUnicode()
[all...]
/third_party/icu/icu4c/source/common/
H A Ducnv_ext.cpp1040 int32_t st1, stage1Length, st2, st3, minLength; in ucnv_extGetUnicodeSet() local
1076 st2=stage12[st1]; in ucnv_extGetUnicodeSet()
1077 if(st2>stage1Length) { in ucnv_extGetUnicodeSet()
1078 ps2=stage12+st2; in ucnv_extGetUnicodeSet()
1079 for(st2=0; st2<64; ++st2) { in ucnv_extGetUnicodeSet()
1080 if((st3=(int32_t)ps2[st2]<<UCNV_EXT_STAGE_2_LEFT_SHIFT)!=0) { in ucnv_extGetUnicodeSet()
H A Ducnvmbcs.cpp862 uint16_t st1, maxStage1, st2; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() local
897 st2=table[st1]; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
898 if(st2>maxStage1) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
899 stage2=table+st2; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
900 for(st2=0; st2<64; ++st2) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
901 if((st3=stage2[st2])!=0) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
943 st2=table[st1]; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
944 if(st2>(maxStage in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
1517 int32_t st1, st2, st3, i; reconstituteData() local
[all...]
/third_party/node/deps/icu-small/source/common/
H A Ducnv_ext.cpp1040 int32_t st1, stage1Length, st2, st3, minLength; in ucnv_extGetUnicodeSet() local
1076 st2=stage12[st1]; in ucnv_extGetUnicodeSet()
1077 if(st2>stage1Length) { in ucnv_extGetUnicodeSet()
1078 ps2=stage12+st2; in ucnv_extGetUnicodeSet()
1079 for(st2=0; st2<64; ++st2) { in ucnv_extGetUnicodeSet()
1080 if((st3=(int32_t)ps2[st2]<<UCNV_EXT_STAGE_2_LEFT_SHIFT)!=0) { in ucnv_extGetUnicodeSet()
H A Ducnvmbcs.cpp862 uint16_t st1, maxStage1, st2; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() local
897 st2=table[st1]; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
898 if(st2>maxStage1) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
899 stage2=table+st2; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
900 for(st2=0; st2<64; ++st2) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
901 if((st3=stage2[st2])!=0) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
943 st2=table[st1]; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
944 if(st2>(maxStage in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
1517 int32_t st1, st2, st3, i; reconstituteData() local
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Ducnv_ext.cpp1040 int32_t st1, stage1Length, st2, st3, minLength; in ucnv_extGetUnicodeSet() local
1076 st2=stage12[st1]; in ucnv_extGetUnicodeSet()
1077 if(st2>stage1Length) { in ucnv_extGetUnicodeSet()
1078 ps2=stage12+st2; in ucnv_extGetUnicodeSet()
1079 for(st2=0; st2<64; ++st2) { in ucnv_extGetUnicodeSet()
1080 if((st3=(int32_t)ps2[st2]<<UCNV_EXT_STAGE_2_LEFT_SHIFT)!=0) { in ucnv_extGetUnicodeSet()
H A Ducnvmbcs.cpp862 uint16_t st1, maxStage1, st2; in ucnv_MBCSGetFilteredUnicodeSetForUnicode() local
897 st2=table[st1]; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
898 if(st2>maxStage1) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
899 stage2=table+st2; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
900 for(st2=0; st2<64; ++st2) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
901 if((st3=stage2[st2])!=0) { in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
943 st2=table[st1]; in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
944 if(st2>(maxStage in ucnv_MBCSGetFilteredUnicodeSetForUnicode()
1517 int32_t st1, st2, st3, i; reconstituteData() local
[all...]
/third_party/ffmpeg/libavformat/
H A Davidec.c1835 static void seek_subtitle(AVStream *st, AVStream *st2, int64_t timestamp) in seek_subtitle() argument
1837 AVIStream *ast2 = st2->priv_data; in seek_subtitle()
1838 int64_t ts2 = av_rescale_q(timestamp, st->time_base, st2->time_base); in seek_subtitle()
1908 AVStream *st2 = s->streams[i]; in avi_read_seek() local
1909 FFStream *const sti2 = ffstream(st2); in avi_read_seek()
1910 AVIStream *ast2 = st2->priv_data; in avi_read_seek()
1916 seek_subtitle(st, st2, timestamp); in avi_read_seek()
1923 // av_assert1(st2->codecpar->block_align); in avi_read_seek()
1924 index = av_index_search_timestamp(st2, in avi_read_seek()
1927 st2 in avi_read_seek()
1938 AVStream *st2 = s->streams[i]; avi_read_seek() local
[all...]
H A Drl2.c291 AVStream *st2 = s->streams[i]; in rl2_read_seek() local
292 index = av_index_search_timestamp(st2, in rl2_read_seek()
293 av_rescale_q(timestamp, st->time_base, st2->time_base), in rl2_read_seek()
H A Drmdec.c515 AVStream *st2; in rm_read_multi() local
517 st2 = avformat_new_stream(s, NULL); in rm_read_multi()
518 if (!st2) { in rm_read_multi()
522 st2->id = st->id + (i<<16); in rm_read_multi()
523 st2->codecpar->bit_rate = st->codecpar->bit_rate; in rm_read_multi()
524 st2->start_time = st->start_time; in rm_read_multi()
525 st2->duration = st->duration; in rm_read_multi()
526 st2->codecpar->codec_type = AVMEDIA_TYPE_DATA; in rm_read_multi()
527 st2->priv_data = ff_rm_alloc_rmstream(); in rm_read_multi()
528 if (!st2 in rm_read_multi()
[all...]
/third_party/backends/backend/pixma/
H A Dpixma_mp800.c1348 unsigned i, sr, sg, sb, st, st2; in shift_colorsCS9000() local
1374 st2 = (i % 2 == 0) ? strshft2 : 0; in shift_colorsCS9000()
1375 *sptr++ = *(dptr++ + sr + jump + st2); in shift_colorsCS9000()
1377 *sptr++ = *(dptr++ + sr + jump + st2); in shift_colorsCS9000()
1378 *sptr++ = *(dptr++ + sg + jump + st2); in shift_colorsCS9000()
1380 *sptr++ = *(dptr++ + sg + jump + st2); in shift_colorsCS9000()
1381 *sptr++ = *(dptr++ + sb + jump + st2); in shift_colorsCS9000()
1383 *sptr++ = *(dptr++ + sb + jump + st2); in shift_colorsCS9000()
1395 unsigned i, sr, sg, sb, st2; in shift_colorsCS9000_4800() local
1407 st2 in shift_colorsCS9000_4800()
[all...]

Completed in 50 milliseconds

123