Home
last modified time | relevance | path

Searched refs:str (Results 3426 - 3450 of 14489) sorted by relevance

1...<<131132133134135136137138139140>>...580

/kernel/liteos_m/arch/arm/cortex-m7/gcc/
H A Dlos_dispatch.S64 str r5, [r4]
136 str r1, [r0]
175 str r0, [r6]
178 str r0, [r5]
/third_party/elfutils/libelf/
H A Delf_strptr.c56 static bool validate_str (const char *str, size_t from, size_t to) in validate_str() argument
60 return ((to > 0 && str[to - 1] == '\0') in validate_str()
61 || (to - from > 0 && memrchr (&str[from], '\0', to - from - 1) != NULL)); in validate_str()
68 } while (str[to]); in validate_str()
/third_party/ffmpeg/libavformat/
H A Dsrtpproto.c43 { "srtp_out_suite", "", offsetof(SRTPProtoContext, out_suite), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
44 { "srtp_out_params", "", offsetof(SRTPProtoContext, out_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
45 { "srtp_in_suite", "", offsetof(SRTPProtoContext, in_suite), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
46 { "srtp_in_params", "", offsetof(SRTPProtoContext, in_params), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
/third_party/curl/lib/
H A Dhttp_ntlm.c160 service = data->set.str[STRING_PROXY_SERVICE_NAME] ? in Curl_output_ntlm()
161 data->set.str[STRING_PROXY_SERVICE_NAME] : "HTTP"; in Curl_output_ntlm()
174 service = data->set.str[STRING_SERVICE_NAME] ? in Curl_output_ntlm()
175 data->set.str[STRING_SERVICE_NAME] : "HTTP"; in Curl_output_ntlm()
H A Dhttp_negotiate.c59 service = data->set.str[STRING_PROXY_SERVICE_NAME] ? in Curl_input_negotiate()
60 data->set.str[STRING_PROXY_SERVICE_NAME] : "HTTP"; in Curl_input_negotiate()
71 service = data->set.str[STRING_SERVICE_NAME] ? in Curl_input_negotiate()
72 data->set.str[STRING_SERVICE_NAME] : "HTTP"; in Curl_input_negotiate()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/
H A DAffixUtilsTest.java166 for (String str : invalidExamples) { in testInvalid()
168 AffixUtils.hasCurrencySymbols(str); in testInvalid()
174 AffixUtils.estimateLength(str); in testInvalid()
180 unescapeWithDefaults(str); in testInvalid()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
H A DAffixUtilsTest.java166 for (String str : invalidExamples) { in testInvalid()
168 AffixUtils.hasCurrencySymbols(str); in testInvalid()
174 AffixUtils.estimateLength(str); in testInvalid()
180 unescapeWithDefaults(str); in testInvalid()
/third_party/mesa3d/.gitlab-ci/bare-metal/
H A Dserial_buffer.py91 print(self.prefix + str(err))
169 parser.add_argument('--dev', type=str, help='Serial device')
170 parser.add_argument('--file', type=str,
172 parser.add_argument('--prefix', type=str,
/third_party/jerryscript/tests/jerry/es2015/
H A Darray-pattern.js15 function checkSyntax (str) {
17 eval (str);
32 function mustThrow (str) {
34 eval (str);
/third_party/ltp/lib/
H A Dtst_buffers.c141 *((void**)bufs[i].ptr) = tst_strdup(bufs[i].str); in tst_buffers_alloc()
145 char *tst_strdup(const char *str) in tst_strdup() argument
147 char *ret = tst_alloc(strlen(str) + 1); in tst_strdup()
149 return strcpy(ret, str); in tst_strdup()
/third_party/ltp/include/
H A Dtst_test.h131 * If str is NULL these are No-op.
135 int tst_parse_int(const char *str, int *val, int min, int max);
136 int tst_parse_long(const char *str, long *val, long min, long max);
137 int tst_parse_float(const char *str, float *val, float min, float max);
138 int tst_parse_filesize(const char *str, long long *val, long long min, long long max);
/third_party/node/test/message/
H A Dtestcfg.py48 def IgnoreLine(self, str):
50 if not str.strip(): return True
51 else: return str.startswith('==') or str.startswith('**')
/third_party/node/deps/v8/third_party/zlib/
H A Dfill_window_sse.c130 uInt str = s->strstart; in fill_window_sse() local
131 s->ins_h = s->window[str]; in fill_window_sse()
132 if (str >= 1) in fill_window_sse()
133 UPDATE_HASH(s, s->ins_h, str + 1 - (MIN_MATCH-1)); in fill_window_sse()
/third_party/node/deps/npm/node_modules/iconv-lite/lib/
H A Dindex.js17 iconv.encode = function encode(str, encoding, options) {
18 str = "" + (str || ""); // Ensure string.
22 var res = encoder.write(str);
/third_party/node/deps/npm/node_modules/iconv-lite/encodings/
H A Dutf16.js22 Utf16BEEncoder.prototype.write = function(str) {
23 var buf = Buffer.from(str, 'ucs2');
94 Utf16Encoder.prototype.write = function(str) {
95 return this.encoder.write(str);
/third_party/libfuse/test/
H A Dstracedecode.c131 char str[32]; in main() local
133 res = fscanf(in, "%30s", str); in main()
140 if (strncmp(str, "read(", 5) == 0) { in main()
143 } else if (strncmp(str, "writev(", 7) == 0) { in main()
/third_party/node/deps/v8/src/inspector/
H A Dstring-util.h75 StringView toStringView(const char* str[N]) { in toStringView() argument
76 return StringView(reinterpret_cast<const uint8_t*>(str), N); in toStringView()
80 // Creates a string buffer instance which owns |str|, a 16 bit string.
81 std::unique_ptr<StringBuffer> StringBufferFrom(String16 str);
83 // Creates a string buffer instance which owns |str|, an 8 bit string.
86 std::unique_ptr<StringBuffer> StringBufferFrom(std::vector<uint8_t> str);
/third_party/node/deps/openssl/openssl/crypto/bio/
H A Dbss_sock.c32 static int sock_puts(BIO *h, const char *str);
215 static int sock_puts(BIO *bp, const char *str) in sock_puts() argument
219 n = strlen(str); in sock_puts()
220 ret = sock_write(bp, str, n); in sock_puts()
H A Dbss_fd.c53 static int fd_puts(BIO *h, const char *str);
199 static int fd_puts(BIO *bp, const char *str) in fd_puts() argument
203 n = strlen(str); in fd_puts()
204 ret = fd_write(bp, str, n); in fd_puts()
H A Dbf_nbio.c22 static int nbiof_puts(BIO *h, const char *str);
23 static int nbiof_gets(BIO *h, char *str, int size);
186 static int nbiof_puts(BIO *bp, const char *str) in nbiof_puts() argument
190 return BIO_puts(bp->next_bio, str); in nbiof_puts()
/third_party/rust/crates/clap/clap_complete/src/shells/
H A Dbash.rs12 fn file_name(&self, name: &str) -> String { in file_name()
79 parent_fn_name: &str, in all_subcommands()
160 fn option_details_for_path(cmd: &Command, path: &str) -> String { in option_details_for_path()
214 fn all_options_for_path(cmd: &Command, path: &str) -> String { in all_options_for_path()
/third_party/python/Tools/clinic/
H A Dcpp.py38 str(id(self)),
39 " line=", str(self.line_number),
44 return str(self.line_number).rjust(4) + ": " + self.condition()
58 print(" ", ' '.join(str(x) for x in a))
/third_party/python/Tools/peg_generator/pegen/
H A Dtokenizer.py10 def shorttok(tok: tokenize.TokenInfo) -> str:
23 self, tokengen: Iterator[tokenize.TokenInfo], *, path: str = "", verbose: bool = False
29 self._lines: Dict[int, str] = {}
75 def get_lines(self, line_numbers: List[int]) -> List[str]:
/third_party/python/Tools/unicode/
H A Dgenmap_schinese.py139 filler.write('{', str(first), ',', str(last), ',', str(base), '},')
141 filler.write('{', '0,', '0,', str(
/third_party/openssl/crypto/bio/
H A Dbf_nbio.c22 static int nbiof_puts(BIO *h, const char *str);
23 static int nbiof_gets(BIO *h, char *str, int size);
186 static int nbiof_puts(BIO *bp, const char *str) in nbiof_puts() argument
190 return BIO_puts(bp->next_bio, str); in nbiof_puts()

Completed in 12 milliseconds

1...<<131132133134135136137138139140>>...580