Home
last modified time | relevance | path

Searched refs:s1 (Results 1 - 25 of 1216) sorted by relevance

12345678910>>...49

/third_party/ffmpeg/libavformat/
H A Drtpenc.c95 static int rtp_write_header(AVFormatContext *s1) in rtp_write_header() argument
97 RTPMuxContext *s = s1->priv_data; in rtp_write_header()
101 if (s1->nb_streams != 1) { in rtp_write_header()
102 av_log(s1, AV_LOG_ERROR, "Only one stream supported in the RTP muxer\n"); in rtp_write_header()
105 st = s1->streams[0]; in rtp_write_header()
107 av_log(s1, AV_LOG_ERROR, "Unsupported codec %s\n", avcodec_get_name(st->codecpar->codec_id)); in rtp_write_header()
115 st->id = ff_rtp_get_payload_type(s1, st->codecpar, -1); in rtp_write_header()
130 if (s1->start_time_realtime != 0 && s1->start_time_realtime != AV_NOPTS_VALUE) in rtp_write_header()
132 s->first_rtcp_ntp_time = (s1 in rtp_write_header()
287 rtcp_send_sr(AVFormatContext *s1, int64_t ntp_time, int bye) rtcp_send_sr() argument
334 ff_rtp_send_data(AVFormatContext *s1, const uint8_t *buf1, int len, int m) ff_rtp_send_data() argument
357 rtp_send_samples(AVFormatContext *s1, const uint8_t *buf1, int size, int sample_size_bits) rtp_send_samples() argument
386 rtp_send_mpegaudio(AVFormatContext *s1, const uint8_t *buf1, int size) rtp_send_mpegaudio() argument
438 rtp_send_raw(AVFormatContext *s1, const uint8_t *buf1, int size) rtp_send_raw() argument
460 rtp_send_mpegts_raw(AVFormatContext *s1, const uint8_t *buf1, int size) rtp_send_mpegts_raw() argument
484 rtp_send_ilbc(AVFormatContext *s1, const uint8_t *buf, int size) rtp_send_ilbc() argument
519 rtp_write_packet(AVFormatContext *s1, AVPacket *pkt) rtp_write_packet() argument
649 rtp_write_trailer(AVFormatContext *s1) rtp_write_trailer() argument
[all...]
H A Drtpenc_h264_hevc.c36 static void flush_buffered(AVFormatContext *s1, int last) in flush_buffered() argument
38 RTPMuxContext *s = s1->priv_data; in flush_buffered()
43 enum AVCodecID codec = s1->streams[0]->codecpar->codec_id; in flush_buffered()
45 ff_rtp_send_data(s1, s->buf + 3, s->buf_ptr - s->buf - 3, last); in flush_buffered()
47 ff_rtp_send_data(s1, s->buf + 4, s->buf_ptr - s->buf - 4, last); in flush_buffered()
49 ff_rtp_send_data(s1, s->buf, s->buf_ptr - s->buf, last); in flush_buffered()
55 static void nal_send(AVFormatContext *s1, const uint8_t *buf, int size, int last) in nal_send() argument
57 RTPMuxContext *s = s1->priv_data; in nal_send()
58 enum AVCodecID codec = s1->streams[0]->codecpar->codec_id; in nal_send()
60 av_log(s1, AV_LOG_DEBU in nal_send()
180 ff_rtp_send_h264_hevc(AVFormatContext *s1, const uint8_t *buf1, int size) ff_rtp_send_h264_hevc() argument
[all...]
H A Drtpenc_jpeg.c28 void ff_rtp_send_jpeg(AVFormatContext *s1, const uint8_t *buf, int size) in ff_rtp_send_jpeg() argument
30 RTPMuxContext *s = s1->priv_data; in ff_rtp_send_jpeg()
45 w = AV_CEIL_RSHIFT(s1->streams[0]->codecpar->width, 3); in ff_rtp_send_jpeg()
46 h = AV_CEIL_RSHIFT(s1->streams[0]->codecpar->height, 3); in ff_rtp_send_jpeg()
49 if (s1->streams[0]->codecpar->format == AV_PIX_FMT_YUVJ422P || in ff_rtp_send_jpeg()
50 (s1->streams[0]->codecpar->color_range == AVCOL_RANGE_JPEG && in ff_rtp_send_jpeg()
51 s1->streams[0]->codecpar->format == AV_PIX_FMT_YUV422P)) { in ff_rtp_send_jpeg()
53 } else if (s1->streams[0]->codecpar->format == AV_PIX_FMT_YUVJ420P || in ff_rtp_send_jpeg()
54 (s1->streams[0]->codecpar->color_range == AVCOL_RANGE_JPEG && in ff_rtp_send_jpeg()
55 s1 in ff_rtp_send_jpeg()
[all...]
/third_party/node/deps/v8/third_party/zlib/
H A Dadler32_simd.c7 * Per http://en.wikipedia.org/wiki/Adler-32 the adler32 A value (aka s1) is
30 * compute the adler32 s1 s2 of M >> 32 input bytes [1].
32 * As M grows, the s1 s2 sums grow. If left unchecked, they would eventually
33 * overflow the precision of their integer representation (bad). However, s1
35 * at most NMAX bytes are processed before a reduce, s1 s2 _cannot_ overflow
42 * of the adler s1 s2 of uint32_t type (see adler32.c).
64 uint32_t s1 = adler & 0xffff; in adler32_simd_() local
95 __m128i v_ps = _mm_set_epi32(0, 0, 0, s1 * n); in adler32_simd_()
112 * Horizontally add the bytes for s1, multiply-adds the in adler32_simd_()
130 * Sum epi32 ints v_s1(s2) and accumulate in s1(s in adler32_simd_()
211 uint32_t s1 = adler & 0xffff; adler32_simd_() local
[all...]
/third_party/node/deps/zlib/
H A Dadler32_simd.c7 * Per http://en.wikipedia.org/wiki/Adler-32 the adler32 A value (aka s1) is
30 * compute the adler32 s1 s2 of M >> 32 input bytes [1].
32 * As M grows, the s1 s2 sums grow. If left unchecked, they would eventually
33 * overflow the precision of their integer representation (bad). However, s1
35 * at most NMAX bytes are processed before a reduce, s1 s2 _cannot_ overflow
42 * of the adler s1 s2 of uint32_t type (see adler32.c).
64 uint32_t s1 = adler & 0xffff; in adler32_simd_() local
95 __m128i v_ps = _mm_set_epi32(0, 0, 0, s1 * n); in adler32_simd_()
112 * Horizontally add the bytes for s1, multiply-adds the in adler32_simd_()
130 * Sum epi32 ints v_s1(s2) and accumulate in s1(s in adler32_simd_()
211 uint32_t s1 = adler & 0xffff; adler32_simd_() local
[all...]
/third_party/skia/third_party/externals/zlib/
H A Dadler32_simd.c7 * Per http://en.wikipedia.org/wiki/Adler-32 the adler32 A value (aka s1) is
30 * compute the adler32 s1 s2 of M >> 32 input bytes [1].
32 * As M grows, the s1 s2 sums grow. If left unchecked, they would eventually
33 * overflow the precision of their integer representation (bad). However, s1
35 * at most NMAX bytes are processed before a reduce, s1 s2 _cannot_ overflow
42 * of the adler s1 s2 of uint32_t type (see adler32.c).
64 uint32_t s1 = adler & 0xffff; in adler32_simd_() local
95 __m128i v_ps = _mm_set_epi32(0, 0, 0, s1 * n); in adler32_simd_()
112 * Horizontally add the bytes for s1, multiply-adds the in adler32_simd_()
130 * Sum epi32 ints v_s1(s2) and accumulate in s1(s in adler32_simd_()
211 uint32_t s1 = adler & 0xffff; adler32_simd_() local
[all...]
/third_party/python/Tools/stringbench/
H A Dstringbench.py77 s1 = STR("A" * 1000)
80 s2 in s1
84 s1 = STR("A" * 1000)
87 s2 in s1
92 s1 = STR("AB" * 1000)
95 s2 in s1
99 s1 = STR("AB" * 1000)
102 s2 in s1
106 s1 = STR("AB" * 300+"C")
109 s2 in s1
[all...]
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Ddesignated-init.c1 struct s1 { struct
12 struct s1 s1; member
17 struct s1 s1; member
21 static struct s1 s1_positional = { 5, 10 };
22 static struct s1 s1_designated = { .x = 5, .y = 10 };
30 .s1 = { 5, 10 },
38 .s1 = { .x = 5, .y = 10 },
46 .s1
[all...]
/third_party/mbedtls/library/
H A Dpem.c275 const unsigned char *s1, *s2, *end; in mbedtls_pem_read_buffer() local
288 s1 = (unsigned char *) strstr((const char *) data, header); in mbedtls_pem_read_buffer()
290 if (s1 == NULL) { in mbedtls_pem_read_buffer()
296 if (s2 == NULL || s2 <= s1) { in mbedtls_pem_read_buffer()
300 s1 += strlen(header); in mbedtls_pem_read_buffer()
301 if (*s1 == ' ') { in mbedtls_pem_read_buffer()
302 s1++; in mbedtls_pem_read_buffer()
304 if (*s1 == '\r') { in mbedtls_pem_read_buffer()
305 s1++; in mbedtls_pem_read_buffer()
307 if (*s1 in mbedtls_pem_read_buffer()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DnoImplicitSymbolToString.js26 let s1!: S;
27 `${s1}`;
28 s1 + '';
29 +s1;
38 let s1!: S;
39 `${s1}`;
40 s1 + '';
41 +s1;
64 var s1;
65 "".concat(s1);
[all...]
/third_party/icu/icu4c/source/common/
H A Dunormcmp.cpp49 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
63 * get one code unit c1 from s1 (-1 if end of source)
143 unorm_cmpEquivFold(const UChar *s1, int32_t length1, in unorm_cmpEquivFold() argument
149 /* current-level start/limit - s1/s2 as current */ in unorm_cmpEquivFold()
190 start1=s1; in unorm_cmpEquivFold()
194 limit1=s1+length1; in unorm_cmpEquivFold()
217 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) { in unorm_cmpEquivFold()
223 ++s1; in unorm_cmpEquivFold()
232 s1 in unorm_cmpEquivFold()
561 unorm_compare(const UChar *s1, int32_t length1, const UChar *s2, int32_t length2, uint32_t options, UErrorCode *pErrorCode) unorm_compare() argument
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dunormcmp.cpp49 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
63 * get one code unit c1 from s1 (-1 if end of source)
143 unorm_cmpEquivFold(const char16_t *s1, int32_t length1, in unorm_cmpEquivFold() argument
149 /* current-level start/limit - s1/s2 as current */ in unorm_cmpEquivFold()
190 start1=s1; in unorm_cmpEquivFold()
194 limit1=s1+length1; in unorm_cmpEquivFold()
217 if(s1==limit1 || ((c1=*s1)==0 && (limit1==nullptr || (options&_STRNCMP_STYLE)))) { in unorm_cmpEquivFold()
223 ++s1; in unorm_cmpEquivFold()
232 s1 in unorm_cmpEquivFold()
561 unorm_compare(const char16_t *s1, int32_t length1, const char16_t *s2, int32_t length2, uint32_t options, UErrorCode *pErrorCode) unorm_compare() argument
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dunormcmp.cpp49 * strcmp[CodePointOrder](NFD(foldCase(s1)), NFD(foldCase(s2)))
63 * get one code unit c1 from s1 (-1 if end of source)
143 unorm_cmpEquivFold(const UChar *s1, int32_t length1, in unorm_cmpEquivFold() argument
149 /* current-level start/limit - s1/s2 as current */ in unorm_cmpEquivFold()
190 start1=s1; in unorm_cmpEquivFold()
194 limit1=s1+length1; in unorm_cmpEquivFold()
217 if(s1==limit1 || ((c1=*s1)==0 && (limit1==NULL || (options&_STRNCMP_STYLE)))) { in unorm_cmpEquivFold()
223 ++s1; in unorm_cmpEquivFold()
232 s1 in unorm_cmpEquivFold()
561 unorm_compare(const UChar *s1, int32_t length1, const UChar *s2, int32_t length2, uint32_t options, UErrorCode *pErrorCode) unorm_compare() argument
[all...]
/third_party/openssl/test/testutil/
H A Dtests.c213 const char *s1, const char *s2, \
218 test_fail_message(NULL, file, line, #type, s1, s2, #op, \
277 const char *s1, const char *s2) in test_str_eq()
279 if (s1 == NULL && s2 == NULL) in test_str_eq()
281 if (s1 == NULL || s2 == NULL || strcmp(s1, s2) != 0) { in test_str_eq()
283 s1, s1 == NULL ? 0 : strlen(s1), in test_str_eq()
291 const char *s1, cons in test_str_ne()
276 test_str_eq(const char *file, int line, const char *st1, const char *st2, const char *s1, const char *s2) test_str_eq() argument
290 test_str_ne(const char *file, int line, const char *st1, const char *st2, const char *s1, const char *s2) test_str_ne() argument
304 test_strn_eq(const char *file, int line, const char *st1, const char *st2, const char *s1, size_t n1, const char *s2, size_t n2) test_strn_eq() argument
318 test_strn_ne(const char *file, int line, const char *st1, const char *st2, const char *s1, size_t n1, const char *s2, size_t n2) test_strn_ne() argument
332 test_mem_eq(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_eq() argument
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/node/deps/openssl/openssl/crypto/camellia/
H A Dcamellia.c276 * adjusting n accordingly, e.g. RotLeft128(s1,s2,s3,s0,n-32).
288 register u32 s0, s1, s2, s3; in Camellia_Ekeygen() local
291 k[1] = s1 = GETU32(rawKey + 4); in Camellia_Ekeygen()
297 k[9] = s1 = GETU32(rawKey + 20); in Camellia_Ekeygen()
300 k[11] = s3 = ~s1; in Camellia_Ekeygen()
305 s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; in Camellia_Ekeygen()
309 Camellia_Feistel(s0, s1, s2, s3, SIGMA + 0); in Camellia_Ekeygen()
310 Camellia_Feistel(s2, s3, s0, s1, SIGMA + 2); in Camellia_Ekeygen()
312 s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; in Camellia_Ekeygen()
313 Camellia_Feistel(s0, s1, s in Camellia_Ekeygen()
407 register u32 s0, s1, s2, s3; Camellia_EncryptBlock_Rounds() local
460 u32 s0, s1, s2, s3; Camellia_DecryptBlock_Rounds() local
[all...]
/third_party/openssl/crypto/camellia/
H A Dcamellia.c276 * adjusting n accordingly, e.g. RotLeft128(s1,s2,s3,s0,n-32).
288 register u32 s0, s1, s2, s3; in Camellia_Ekeygen() local
291 k[1] = s1 = GETU32(rawKey + 4); in Camellia_Ekeygen()
297 k[9] = s1 = GETU32(rawKey + 20); in Camellia_Ekeygen()
300 k[11] = s3 = ~s1; in Camellia_Ekeygen()
305 s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; in Camellia_Ekeygen()
309 Camellia_Feistel(s0, s1, s2, s3, SIGMA + 0); in Camellia_Ekeygen()
310 Camellia_Feistel(s2, s3, s0, s1, SIGMA + 2); in Camellia_Ekeygen()
312 s0 ^= k[0], s1 ^= k[1], s2 ^= k[2], s3 ^= k[3]; in Camellia_Ekeygen()
313 Camellia_Feistel(s0, s1, s in Camellia_Ekeygen()
407 register u32 s0, s1, s2, s3; Camellia_EncryptBlock_Rounds() local
460 u32 s0, s1, s2, s3; Camellia_DecryptBlock_Rounds() local
[all...]
/third_party/skia/tests/
H A DStrokeTest.cpp91 SkStrokeRec s1(SkStrokeRec::kFill_InitStyle); in test_strokerec_equality()
93 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
97 REPORTER_ASSERT(reporter, !s1.hasEqualEffect(s2)); in test_strokerec_equality()
99 s1.setHairlineStyle(); in test_strokerec_equality()
100 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
103 s1.setResScale(2.1f); in test_strokerec_equality()
105 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
106 s1.setFillStyle(); in test_strokerec_equality()
108 REPORTER_ASSERT(reporter, s1.hasEqualEffect(s2)); in test_strokerec_equality()
109 s1 in test_strokerec_equality()
[all...]
/third_party/ffmpeg/libavdevice/
H A Dv4l2enc.c31 static av_cold int write_header(AVFormatContext *s1) in write_header() argument
37 V4L2Context *s = s1->priv_data; in write_header()
41 if (s1->flags & AVFMT_FLAG_NONBLOCK) in write_header()
44 s->fd = open(s1->url, flags); in write_header()
47 av_log(s1, AV_LOG_ERROR, "Unable to open V4L2 device '%s'\n", s1->url); in write_header()
51 if (s1->nb_streams != 1 || in write_header()
52 s1->streams[0]->codecpar->codec_type != AVMEDIA_TYPE_VIDEO) { in write_header()
53 av_log(s1, AV_LOG_ERROR, in write_header()
58 par = s1 in write_header()
92 write_packet(AVFormatContext *s1, AVPacket *pkt) write_packet() argument
100 write_trailer(AVFormatContext *s1) write_trailer() argument
[all...]
H A Dalsa_enc.c51 static av_cold int audio_write_header(AVFormatContext *s1) in audio_write_header() argument
53 AlsaData *s = s1->priv_data; in audio_write_header()
59 if (s1->nb_streams != 1 || s1->streams[0]->codecpar->codec_type != AVMEDIA_TYPE_AUDIO) { in audio_write_header()
60 av_log(s1, AV_LOG_ERROR, "Only a single audio stream is supported.\n"); in audio_write_header()
63 st = s1->streams[0]; in audio_write_header()
67 res = ff_alsa_open(s1, SND_PCM_STREAM_PLAYBACK, &sample_rate, in audio_write_header()
70 av_log(s1, AV_LOG_ERROR, in audio_write_header()
84 static int audio_write_packet(AVFormatContext *s1, AVPacket *pkt) in audio_write_packet() argument
86 AlsaData *s = s1 in audio_write_packet()
120 audio_write_frame(AVFormatContext *s1, int stream_index, AVFrame **frame, unsigned flags) audio_write_frame() argument
139 audio_get_output_timestamp(AVFormatContext *s1, int stream, int64_t *dts, int64_t *wall) audio_get_output_timestamp() argument
[all...]
/third_party/mbedtls/programs/util/
H A Dpem2der.c64 const unsigned char *s1, *s2, *end = input + ilen; in convert_pem_to_der() local
67 s1 = (unsigned char *) strstr((const char *) input, "-----BEGIN"); in convert_pem_to_der()
68 if (s1 == NULL) { in convert_pem_to_der()
77 s1 += 10; in convert_pem_to_der()
78 while (s1 < end && *s1 != '-') { in convert_pem_to_der()
79 s1++; in convert_pem_to_der()
81 while (s1 < end && *s1 == '-') { in convert_pem_to_der()
82 s1 in convert_pem_to_der()
[all...]
/third_party/libphonenumber/cpp/src/phonenumbers/
H A Dstringutil.cc154 string StrCat(const StringHolder& s1, const StringHolder& s2) { in StrCat() argument
155 return absl::StrCat(s1, s2); in StrCat()
158 string StrCat(const StringHolder& s1, const StringHolder& s2, in StrCat() argument
160 return absl::StrCat(s1, s2, s3); in StrCat()
163 string StrCat(const StringHolder& s1, const StringHolder& s2, in StrCat() argument
165 return absl::StrCat(s1, s2, s3, s4); in StrCat()
168 string StrCat(const StringHolder& s1, const StringHolder& s2, in StrCat() argument
171 return absl::StrCat(s1, s2, s3, s4, s5); in StrCat()
174 string StrCat(const StringHolder& s1, const StringHolder& s2, in StrCat() argument
177 return absl::StrCat(s1, s in StrCat()
180 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7) StrCat() argument
187 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8) StrCat() argument
197 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9) StrCat() argument
205 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11) StrCat() argument
214 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11, const StringHolder& s12) StrCat() argument
223 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11, const StringHolder& s12, const StringHolder& s13) StrCat() argument
234 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11, const StringHolder& s12, const StringHolder& s13, const StringHolder& s14) StrCat() argument
245 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11, const StringHolder& s12, const StringHolder& s13, const StringHolder& s14, const StringHolder& s15) StrCat() argument
257 StrCat(const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5, const StringHolder& s6, const StringHolder& s7, const StringHolder& s8, const StringHolder& s9, const StringHolder& s10, const StringHolder& s11, const StringHolder& s12, const StringHolder& s13, const StringHolder& s14, const StringHolder& s15, const StringHolder& s16) StrCat() argument
271 StrAppend(string* dest, const StringHolder& s1) StrAppend() argument
275 StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2) StrAppend() argument
279 StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2, const StringHolder& s3) StrAppend() argument
284 StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4) StrAppend() argument
289 StrAppend(string* dest, const StringHolder& s1, const StringHolder& s2, const StringHolder& s3, const StringHolder& s4, const StringHolder& s5) StrAppend() argument
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Ditspoof.cpp127 UnicodeString s1("cxs"); in testSpoofAPI()
129 int32_t checkResults = uspoof_areConfusableUnicodeString(sc, s1, s2, &status); in testSpoofAPI()
245 UnicodeString s1("A long string that will overflow stack buffers. A long string that will overflow stack buffers. " in testAreConfusable()
249 int32_t result = uspoof_areConfusableUnicodeString(sc, s1, s2, &status); in testAreConfusable()
434 ScriptSet s1; in testScriptSet() local
438 TEST_ASSERT(s1 == s2); in testScriptSet()
439 s1.set(USCRIPT_ARABIC,status); in testScriptSet()
441 TEST_ASSERT(!(s1 == s2)); in testScriptSet()
442 TEST_ASSERT(s1.test(USCRIPT_ARABIC, status)); in testScriptSet()
443 TEST_ASSERT(s1 in testScriptSet()
[all...]
/third_party/lzma/CPP/Common/
H A DMyString.h217 bool StringsAreEqualNoCase(const wchar_t *s1, const wchar_t *s2) throw();
219 bool IsString1PrefixedByString2(const char *s1, const char *s2) throw();
220 bool IsString1PrefixedByString2(const wchar_t *s1, const wchar_t *s2) throw();
221 bool IsString1PrefixedByString2(const wchar_t *s1, const char *s2) throw();
222 bool IsString1PrefixedByString2_NoCase_Ascii(const char *s1, const char *s2) throw();
224 bool IsString1PrefixedByString2_NoCase(const wchar_t *s1, const wchar_t *s2) throw();
226 #define MyStringCompare(s1, s2) wcscmp(s1, s2)
227 int MyStringCompareNoCase(const wchar_t *s1, const wchar_t *s2) throw();
228 // int MyStringCompareNoCase_N(const wchar_t *s1, cons
526 operator ==(const AString &s1, const AString &s2) operator ==() argument
527 operator ==(const AString &s1, const char *s2) operator ==() argument
528 operator ==(const char *s1, const AString &s2) operator ==() argument
530 operator !=(const AString &s1, const AString &s2) operator !=() argument
531 operator !=(const AString &s1, const char *s2) operator !=() argument
532 operator !=(const char *s1, const AString &s2) operator !=() argument
801 operator ==(const UString &s1, const UString &s2) operator ==() argument
802 operator ==(const UString &s1, const wchar_t *s2) operator ==() argument
803 operator ==(const wchar_t *s1, const UString &s2) operator ==() argument
805 operator !=(const UString &s1, const UString &s2) operator !=() argument
806 operator !=(const UString &s1, const wchar_t *s2) operator !=() argument
807 operator !=(const wchar_t *s1, const UString &s2) operator !=() argument
904 operator !=(const UString2 &s1, const UString2 &s2) operator !=() argument
905 operator !=(const UString2 &s1, const wchar_t *s2) operator !=() argument
906 operator !=(const wchar_t *s1, const UString2 &s2) operator !=() argument
992 operator +(const FString &s1, const FString &s2) operator +() argument
998 operator +(const FString &s1, const FChar *s2) operator +() argument
[all...]
/third_party/ffmpeg/libavutil/ppc/
H A Dfloat_dsp_vsx.c44 vec_f zero, t0, t1, s0, s1, wi, wj; in ff_vector_fmul_window_vsx() local
56 s1 = vec_vsx_ld(j, src1); in ff_vector_fmul_window_vsx()
60 s1 = vec_perm(s1, s1, reverse); in ff_vector_fmul_window_vsx()
64 t0 = vec_nmsub(s1, wi, t0); in ff_vector_fmul_window_vsx()
66 t1 = vec_madd(s1, wj, t1); in ff_vector_fmul_window_vsx()
79 vec_f d, s0, s1, s2; in ff_vector_fmul_add_vsx() local
83 s1 = vec_vsx_ld(0, src1 + i); in ff_vector_fmul_add_vsx()
85 d = vec_madd(s0, s1, s in ff_vector_fmul_add_vsx()
94 vec_f d, s0, s1, h0, l0, s2, s3; ff_vector_fmul_reverse_vsx() local
[all...]
/third_party/node/deps/openssl/openssl/crypto/aes/asm/
H A Daes-s390x.pl118 $s1="%r9";
274 llgf $s1,4($inp)
283 st $s1,4($out)
296 x $s1,4($key)
314 srlg $i1,$s1,`16-3` # i0
315 sllg $i2,$s1,`0+3`
316 srlg $i3,$s1,`8-3`
317 srl $s1,`24-3`
319 nr $s1,$mask
328 x $s0,3($i1,$tbl) # Te1[s1>>1
[all...]

Completed in 14 milliseconds

12345678910>>...49