Home
last modified time | relevance | path

Searched refs:STR (Results 1 – 25 of 627) sorted by relevance

12345678910>>...26

/external/python/cpython3/Tools/stringbench/
Dstringbench.py76 def in_test_quick_match_single_character(STR): argument
77 s1 = STR("A" * 1000)
78 s2 = STR("A")
83 def in_test_no_match_single_character(STR): argument
84 s1 = STR("A" * 1000)
85 s2 = STR("B")
91 def in_test_quick_match_two_characters(STR): argument
92 s1 = STR("AB" * 1000)
93 s2 = STR("AB")
98 def in_test_no_match_two_character(STR): argument
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/time/time.syn/
Dformatter_tests.h23 #define STR(S) MAKE_STRING(CharT, S) macro
89 std::basic_string<CharT> fmt{STR("{:%") + type + STR("}")}; in check_invalid_type()
112 …check_invalid_type(valid_types, "The supplied date time doesn't contain a weekday", STR("a"), arg); in check_invalid_types()
113 …check_invalid_type(valid_types, "The supplied date time doesn't contain a weekday", STR("A"), arg); in check_invalid_types()
114 check_invalid_type(valid_types, "The supplied date time doesn't contain a month", STR("b"), arg); in check_invalid_types()
115 check_invalid_type(valid_types, "The supplied date time doesn't contain a month", STR("B"), arg); in check_invalid_types()
116 …check_invalid_type(valid_types, "The supplied date time doesn't contain a date and time", STR("c")… in check_invalid_types()
117 check_invalid_type(valid_types, "The supplied date time doesn't contain a year", STR("C"), arg); in check_invalid_types()
118 check_invalid_type(valid_types, "The supplied date time doesn't contain a day", STR("d"), arg); in check_invalid_types()
119 check_invalid_type(valid_types, "The supplied date time doesn't contain a date", STR("D"), arg); in check_invalid_types()
[all …]
/external/libabigail/tests/data/test-diff-dwarf/
Dtest42-PR21296-clanggcc-report0.txt10 …[C] 'function std::tuple<STR&&> my_forward_as_tuple<STR>(STR&&)' has some indirect sub-type change…
12 type name changed from 'std::tuple<STR&&>' to 'std::tuple<STR &&>'
15 struct std::_Tuple_impl<0ul, STR&&>
17 struct std::_Tuple_impl<0, STR &&>
19 …[C] 'method void std::_Head_base<0ul, STR&&, false>::_Head_base<STR>(STR&&)' has some indirect sub…
20STR&&, false>::_Head_base<STR>(STR&&) {_ZNSt10_Head_baseILm0EO3STRLb0EEC2IS0_St9true_typeEEOT_}' n…
21 implicit parameter 0 of type 'std::_Head_base<0ul, STR&&, false>*' changed:
22 in pointed to type 'struct std::_Head_base<0ul, STR&&, false>':
23 … type name changed from 'std::_Head_base<0ul, STR&&, false>' to 'std::_Head_base<0, STR &&, false>'
26 …name of 'std::_Head_base<0ul, STR&&, false>::_M_head_impl' changed to 'std::_Head_base<0, STR &&, …
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/strings/basic.string/string.cons/
Dsubstr_rvalue.pass.cpp27 #define STR(string) MAKE_CSTRING(typename S::value_type, string) macro
152 test_string_pos<S>(STR(""), 0, STR("")); in test_string()
153 test_string_pos<S>(STR(""), 1, should_throw_exception); in test_string()
154 test_string_pos<S>(STR("Banane"), 1, STR("anane")); in test_string()
155 test_string_pos<S>(STR("Banane"), 6, STR("")); in test_string()
156 test_string_pos<S>(STR("Banane"), 7, should_throw_exception); in test_string()
157 test_string_pos<S>(STR("long long string so no SSO"), 0, STR("long long string so no SSO")); in test_string()
158 test_string_pos<S>(STR("long long string so no SSO"), 10, STR("string so no SSO")); in test_string()
159 test_string_pos<S>(STR("long long string so no SSO"), 26, STR("")); in test_string()
160 test_string_pos<S>(STR("long long string so no SSO"), 27, should_throw_exception); in test_string()
[all …]
/external/cronet/buildtools/third_party/libc++/trunk/test/std/utilities/format/format.formatter/format.formatter.spec/
Dformatter.string.pass.cpp33 #define STR(S) MAKE_STRING(CharT, S) macro
105 test_termination_condition<T, ArgumentT>(STR(" azAZ09,./<>?"), STR("}"), in test_string_type()
106 STR(" azAZ09,./<>?")); in test_string_type()
109 test_termination_condition<T, ArgumentT>(s, STR("}"), s); in test_string_type()
111 test_termination_condition<T, ArgumentT>(STR("world"), STR("}"), in test_string_type()
112 STR("world")); in test_string_type()
113 test_termination_condition<T, ArgumentT>(STR("world"), STR("_>}"), in test_string_type()
114 STR("world")); in test_string_type()
116 test_termination_condition<T, ArgumentT>(STR(" world"), STR(">8}"), in test_string_type()
117 STR("world")); in test_string_type()
[all …]
Dformatter.signed_integral.pass.cpp39 #define STR(S) MAKE_STRING(CharT, S) macro
79 test_termination_condition(STR("-128"), STR("}"), A(-128)); in test_signed_integral_type()
80 test_termination_condition(STR("0"), STR("}"), A(0)); in test_signed_integral_type()
81 test_termination_condition(STR("127"), STR("}"), A(127)); in test_signed_integral_type()
83 test_termination_condition(STR("-32768"), STR("}"), A(-32768)); in test_signed_integral_type()
84 test_termination_condition(STR("32767"), STR("}"), A(32767)); in test_signed_integral_type()
87 test_termination_condition(STR("-2147483648"), STR("}"), A(-2147483648)); in test_signed_integral_type()
88 test_termination_condition(STR("2147483647"), STR("}"), A(2147483647)); in test_signed_integral_type()
91 …test_termination_condition(STR("-9223372036854775808"), STR("}"), A(std::numeric_limits<std::int64… in test_signed_integral_type()
92 …test_termination_condition(STR("9223372036854775807"), STR("}"), A(std::numeric_limits<std::int64_… in test_signed_integral_type()
[all …]
Dformatter.c_string.pass.cpp31 #define STR(S) MAKE_STRING(CharT, S) macro
94 test_termination_condition<ArgumentT>(STR(" azAZ09,./<>?"), STR("}"), in test_char_pointer()
98 test_termination_condition<ArgumentT>(STR("abc"), STR("}"), s.c_str()); in test_char_pointer()
100 test_termination_condition<ArgumentT>(STR("world"), STR("}"), CSTR("world")); in test_char_pointer()
101 test_termination_condition<ArgumentT>(STR("world"), STR("_>}"), in test_char_pointer()
104 test_termination_condition<ArgumentT>(STR(" world"), STR(">8}"), in test_char_pointer()
106 test_termination_condition<ArgumentT>(STR("___world"), STR("_>8}"), in test_char_pointer()
108 test_termination_condition<ArgumentT>(STR("_world__"), STR("_^8}"), in test_char_pointer()
110 test_termination_condition<ArgumentT>(STR("world___"), STR("_<8}"), in test_char_pointer()
113 test_termination_condition<ArgumentT>(STR("world"), STR(".5}"), in test_char_pointer()
[all …]
Dformatter.char_array.pass.cpp31 #define STR(S) MAKE_STRING(CharT, S) macro
117 test_helper_wrapper<" azAZ09,./<>?">(STR(" azAZ09,./<>?"), STR("}")); in test_array()
120 test_helper_wrapper<"abc\0abc">(s, STR("}")); in test_array()
122 test_helper_wrapper<"world">(STR("world"), STR("}")); in test_array()
123 test_helper_wrapper<"world">(STR("world"), STR("_>}")); in test_array()
125 test_helper_wrapper<"world">(STR(" world"), STR(">8}")); in test_array()
126 test_helper_wrapper<"world">(STR("___world"), STR("_>8}")); in test_array()
127 test_helper_wrapper<"world">(STR("_world__"), STR("_^8}")); in test_array()
128 test_helper_wrapper<"world">(STR("world___"), STR("_<8}")); in test_array()
130 test_helper_wrapper<"world">(STR("world"), STR(".5}")); in test_array()
[all …]
Dformatter.floating_point.pass.cpp44 #define STR(S) MAKE_STRING(CharT, S) macro
90 test_termination_condition(STR(".20000a}"), value, std::basic_string<CharT>{buffer.begin(), end}); in test_hex_lower_case_precision()
94 …test_termination_condition(STR("#<25000.20000a}"), value, std::basic_string<CharT>{buffer.begin(),… in test_hex_lower_case_precision()
96 …test_termination_condition(STR("#^25000.20000a}"), value, std::basic_string<CharT>{buffer.begin(),… in test_hex_lower_case_precision()
98 …test_termination_condition(STR("#>25000.20000a}"), value, std::basic_string<CharT>{buffer.begin(),… in test_hex_lower_case_precision()
104 …test_termination_condition(STR("025000.20000a}"), value, std::basic_string<CharT>{buffer.begin(), … in test_hex_lower_case_precision()
107 …test_termination_condition(STR(".20000La}"), value, std::basic_string<CharT>{buffer.begin(), end}); in test_hex_lower_case_precision()
111 …test_termination_condition(STR("#<25000.20000La}"), value, std::basic_string<CharT>{buffer.begin()… in test_hex_lower_case_precision()
113 …test_termination_condition(STR("#^25000.20000La}"), value, std::basic_string<CharT>{buffer.begin()… in test_hex_lower_case_precision()
115 …test_termination_condition(STR("#>25000.20000La}"), value, std::basic_string<CharT>{buffer.begin()… in test_hex_lower_case_precision()
[all …]
Dformatter.unsigned_integral.pass.cpp39 #define STR(S) MAKE_STRING(CharT, S) macro
79 test_termination_condition(STR("0"), STR("}"), A(0)); in test_unsigned_integral_type()
80 test_termination_condition(STR("255"), STR("}"), A(255)); in test_unsigned_integral_type()
82 test_termination_condition(STR("65535"), STR("}"), A(65535)); in test_unsigned_integral_type()
84 test_termination_condition(STR("4294967295"), STR("}"), A(4294967295)); in test_unsigned_integral_type()
86 test_termination_condition(STR("8446744073709551615"), STR("}"), in test_unsigned_integral_type()
91STR("340282366920938463463374607431768211455"), STR("}"), A(std::numeric_limits<__uint128_t>::max(… in test_unsigned_integral_type()
94 test_termination_condition(STR("FF"), STR("X}"), A(255)); in test_unsigned_integral_type()
Dformatter.char.pass.cpp32 #define STR(S) MAKE_STRING(CharT, S) macro
93 test_termination_condition(STR("a"), STR("}"), ArgumentT('a')); in test_char_type()
94 test_termination_condition(STR("z"), STR("}"), ArgumentT('z')); in test_char_type()
95 test_termination_condition(STR("A"), STR("}"), ArgumentT('A')); in test_char_type()
96 test_termination_condition(STR("Z"), STR("}"), ArgumentT('Z')); in test_char_type()
97 test_termination_condition(STR("0"), STR("}"), ArgumentT('0')); in test_char_type()
98 test_termination_condition(STR("9"), STR("}"), ArgumentT('9')); in test_char_type()
/external/cronet/buildtools/third_party/libc++/trunk/test/std/strings/basic.string/string.ops/string_substr/
Dsubstr_rvalue.pass.cpp24 #define STR(string) MAKE_CSTRING(typename S::value_type, string) macro
56 test<S>(STR(""), 0, 0, STR("")); in test_string()
57 test<S>(STR(""), 0, 1, STR("")); in test_string()
58 test<S>(STR(""), 1, 0, should_throw_exception); in test_string()
59 test<S>(STR(""), 1, 1, should_throw_exception); in test_string()
60 test<S>(STR("short string"), 0, 1, STR("s")); in test_string()
61 test<S>(STR("short string"), 5, 5, STR(" stri")); in test_string()
62 test<S>(STR("short string"), 12, 5, STR("")); in test_string()
63 test<S>(STR("short string"), 13, 5, should_throw_exception); in test_string()
64 test<S>(STR("long long string so no SSO"), 0, 0, STR("")); in test_string()
[all …]
/external/python/cpython2/Lib/plat-unixware7/
DSTROPTS.py291 STR = (ord('S')<<8) variable
292 I_NREAD = (STR|01)
293 I_PUSH = (STR|02)
294 I_POP = (STR|03)
295 I_LOOK = (STR|04)
296 I_FLUSH = (STR|05)
297 I_SRDOPT = (STR|06)
298 I_GRDOPT = (STR|07)
299 I_STR = (STR|010)
300 I_SETSIG = (STR|011)
[all …]
/external/webp/examples/
Dunicode.h58 #define TO_W_CHAR(STR) (L##STR) argument
62 #define WFPRINTF(STREAM, STR, ...) \ argument
67 fwprintf(STREAM, TO_W_CHAR(STR), __VA_ARGS__); \
71 #define WPRINTF(STR, ...) WFPRINTF(stdout, STR, __VA_ARGS__) argument
74 #define WSTRCMP(FILENAME, STR) wcscmp((const W_CHAR*)FILENAME, TO_W_CHAR(STR)) argument
75 #define WSTRRCHR(FILENAME, STR) wcsrchr((const W_CHAR*)FILENAME, TO_W_CHAR(STR)) argument
76 #define WSNPRINTF(A, B, STR, ...) _snwprintf(A, B, TO_W_CHAR(STR), __VA_ARGS__) argument
95 #define TO_W_CHAR(STR) (STR) argument
99 #define WPRINTF(STR, ...) printf(STR, __VA_ARGS__) argument
100 #define WFPRINTF(STREAM, STR, ...) fprintf(STREAM, STR, __VA_ARGS__) argument
[all …]
/external/libxaac/decoder/armv7/
Dixheaacd_cos_sin_mod.s106 STR R12, [R10, #4]
107 STR R14, [R10], #8
122 STR R12, [R10, #0xF8]
123 STR R14, [R10, #0xFC]
137 STR R12, [R11, #-4]
138 STR R3, [R11], #-8
153 STR R3, [R11, #0x108]
154 STR R14, [R11, #0x104]
168 STR R12, [R10, #4]
169 STR R14, [R10], #8
[all …]
Dixheaacd_post_radix_compute2.s45 STR r0, [sp, #16]
50 STR r3, [sp, #4]
52 STR r5, [sp]
73 STR r14, [r0], #4
74 STR r11, [r0], #32-4
76 STR r7, [r0], #4
77 STR r8, [r0], #(32+(32<<1))-4
79 STR r5, [r0], #4
80 STR r6, [r0], #32-4
82 STR r9, [r0], #4
[all …]
Dixheaacd_post_radix_compute4.s76 STR r12, [r0], #4
77 STR r10, [r0], #14<<1
79 STR r11, [r0], #4
80 STR r6 , [r0], #14<<1
82 STR r14, [r0], #4
83 STR r9 , [r0], #14<<1
85 STR r5, [r0], #4
86 STR r8, [r0], #0
116 STR r12, [r0], #4
117 STR r10, [r0], #14<<1
[all …]
Dixheaacd_fft32x32_ld2_armv7.s35 STR r2, [r0] @x[0 ] = n00
36 STR r3, [r0, #32] @x[8 ] = n10
37 STR r4, [r0, #64] @x[16] = n20
38 STR r5, [r0, #96] @x[24] = n30
44 STR r2, [r0, #4] @x[1 ] = n01
45 STR r3, [r0, #36] @x[8+1 ] = n11
46 STR r4, [r0, #68] @x[16+1] = n21
47 STR r5, [r0, #100] @x[24+1] = n31
72 STR r2, [r0, #8] @x[2 ] = n00
73 STR r3, [r0, #40] @x[10] = n10
[all …]
/external/libchrome/base/strings/
Dstring_piece.cc58 template<typename STR>
59 void CopyToStringT(const BasicStringPiece<STR>& self, STR* target) { in CopyToStringT()
74 template<typename STR>
75 void AppendToStringT(const BasicStringPiece<STR>& self, STR* target) { in AppendToStringT()
88 template<typename STR>
89 size_t copyT(const BasicStringPiece<STR>& self, in copyT()
90 typename STR::value_type* buf, in copyT()
94 memcpy(buf, self.data() + pos, ret * sizeof(typename STR::value_type)); in copyT()
106 template<typename STR>
107 size_t findT(const BasicStringPiece<STR>& self, in findT()
[all …]
/external/libxaac/decoder/armv8/
Dixheaacd_fft32x32_ld2_armv8.s70 STR w2, [x0] //x[0 ] = n00
71 STR w3, [x0, #32] //x[8 ] = n10
72 STR w4, [x0, #64] //x[16] = n20
73 STR w5, [x0, #96] //x[24] = n30
79 STR w2, [x0, #4] //x[1 ] = n01
80 STR w3, [x0, #36] //x[8+1 ] = n11
81 STR w4, [x0, #68] //x[16+1] = n21
82 STR w5, [x0, #100] //x[24+1] = n31
115 STR w2, [x0, #8] //x[2 ] = n00
116 STR w3, [x0, #40] //x[10] = n10
[all …]
Dixheaacd_postradixcompute4.s76 STR w12, [x0], #4 // y0[h2] = n00, x7 -> y0[h2 + 1]
78 STR w10, [x0], #14<<1 // y0[h2 + 1] = n01, x7 -> y1[h2]
80 STR w11, [x0], #4 // y1[h2] = n10, x7 -> y1[h2 + 1]
81 STR w6 , [x0], #14<<1 // y1[h2 + 1] = n11, x7 -> y2[h2]
83 STR w14, [x0], #4 // y2[h2] = n20, x7 -> y2[h2 + 1]
84 STR w9 , [x0], #14<<1 // y2[h2 + 1] = n21, x7 -> y3[h2]
86 STR w5, [x0], #4 // y3[h2] = n30, x7 -> y3[h2 + 1]
87 STR w8, [x0], #0 // y3[h2 + 1] = n31, x7 -> y0[h2+2]
123 STR w12, [x0], #4
124 STR w10, [x0], #14<<1
[all …]
/external/vulkan-validation-layers/tests/
Dtest_common.h87 #define STR(r) \ in vk_result_string() macro
90 STR(VK_SUCCESS); in vk_result_string()
91 STR(VK_NOT_READY); in vk_result_string()
92 STR(VK_TIMEOUT); in vk_result_string()
93 STR(VK_EVENT_SET); in vk_result_string()
94 STR(VK_EVENT_RESET); in vk_result_string()
95 STR(VK_ERROR_INITIALIZATION_FAILED); in vk_result_string()
96 STR(VK_ERROR_OUT_OF_HOST_MEMORY); in vk_result_string()
97 STR(VK_ERROR_OUT_OF_DEVICE_MEMORY); in vk_result_string()
98 STR(VK_ERROR_DEVICE_LOST); in vk_result_string()
[all …]
/external/tensorflow/tensorflow/lite/kernels/internal/optimized/
Ddepthwiseconv_uint8_3x3_filter.h46 #define STR(s) STR_UNEXPANDED(s) macro
380 "ldr w9, [%[params_ptr], #" STR(OFFSET_INPUT_OFFSET) "]\n"
381 "ldr x3, [%[params_ptr], #" STR(OFFSET_OUTPUT_DEPTH) "]\n"
384 "ldr w9, [%[params_ptr], #" STR(OFFSET_OUTPUT_MULTIPLIER) "]\n"
385 "ldr w2, [%[params_ptr], #" STR(OFFSET_OUTPUT_OFFSET) "]\n"
387 "ldr w9, [%[params_ptr], #" STR(OFFSET_OUTPUT_RIGHT_SHIFT) "]\n"
389 "ldr w4, [%[params_ptr], #" STR(OFFSET_OUTPUT_ACTIVATION_MIN) "]\n"
391 "ldr w0, [%[params_ptr], #" STR(OFFSET_OUTPUT_ACTIVATION_MAX) "]\n"
394 "ldr w9, [%[params_ptr], #" STR(OFFSET_FILTER_OFFSET) "]\n"
396 "ldr x1, [%[params_ptr], #" STR(OFFSET_OUTPUT_ROW_SIZE) "]\n"
[all …]
/external/mesa3d/src/mesa/main/
Dspirv_extensions.c65 #define STR(x) case x: return #x; in _mesa_spirv_extensions_to_string() macro
67 STR(SPV_KHR_16bit_storage); in _mesa_spirv_extensions_to_string()
68 STR(SPV_KHR_device_group); in _mesa_spirv_extensions_to_string()
69 STR(SPV_KHR_multiview); in _mesa_spirv_extensions_to_string()
70 STR(SPV_KHR_shader_ballot); in _mesa_spirv_extensions_to_string()
71 STR(SPV_KHR_shader_draw_parameters); in _mesa_spirv_extensions_to_string()
72 STR(SPV_KHR_storage_buffer_storage_class); in _mesa_spirv_extensions_to_string()
73 STR(SPV_KHR_subgroup_vote); in _mesa_spirv_extensions_to_string()
74 STR(SPV_KHR_variable_pointers); in _mesa_spirv_extensions_to_string()
75 STR(SPV_AMD_gcn_shader); in _mesa_spirv_extensions_to_string()
[all …]
/external/XNNPACK/src/f16-gemm/
D6x16-aarch64-neonfp16arith-ld32.S.in257 STR q30, [x7], 16
259 STR q28, [x13], 16
261 STR q26, [x14], 16
263 STR q24, [x17], 16
265 STR q22, [x16], 16
267 STR q20, [x6], 16
270 STR q20, [x6], 16
272 STR q22, [x16], 16
274 STR q24, [x17], 16
276 STR q26, [x14], 16
[all …]

12345678910>>...26