/kernel/linux/linux-6.6/drivers/leds/ |
H A D | leds-sc27xx-bltc.c | 51 u8 line; member 84 return leds->priv->base + SC27XX_LEDS_OFFSET * leds->line; in sc27xx_led_get_offset() 91 u8 ctrl_shift = SC27XX_CTRL_SHIFT * leds->line; in sc27xx_led_enable() 111 u8 ctrl_shift = SC27XX_CTRL_SHIFT * leds->line; in sc27xx_led_disable() 152 u8 ctrl_shift = SC27XX_CTRL_SHIFT * leds->line; in sc27xx_led_pattern_clear() 178 u8 ctrl_shift = SC27XX_CTRL_SHIFT * leds->line; in sc27xx_led_pattern_set() 256 led->line = i; in sc27xx_led_register()
|
/third_party/ffmpeg/libavformat/ |
H A D | rtpdec_rfc4175.c | 174 PayloadContext *data, const char *line) in rfc4175_parse_sdp_line() 181 if (av_strstart(line, "fmtp:", &p)) { in rfc4175_parse_sdp_line() 228 int length, line, offset, cont, field; in rfc4175_handle_packet() local 283 line = ((headers[2] & 0x7f) << 8) | headers[3]; in rfc4175_handle_packet() 296 line = 2 * line + field; in rfc4175_handle_packet() 299 copy_offset = (line * data->width + offset) * data->pgroup / data->xinc; in rfc4175_handle_packet() 173 rfc4175_parse_sdp_line(AVFormatContext *s, int st_index, PayloadContext *data, const char *line) rfc4175_parse_sdp_line() argument
|
/third_party/node/lib/internal/test_runner/reporter/ |
H A D | tap.js | 36 const location = `${data.file}:${data.line}:${data.column}`; 68 let line = `${indent(nesting)}${status} ${testNumber}`; 71 line += ` ${tapEscape(`- ${name}`)}`; 75 line += ` # SKIP${typeof skip === 'string' && skip.length ? ` ${tapEscape(skip)}` : ''}`; 77 line += ` # TODO${typeof todo === 'string' && todo.length ? ` ${tapEscape(todo)}` : ''}`; 80 line += '\n'; 82 return line;
|
/third_party/node/tools/icu/ |
H A D | icutrim.py | 188 items = [line.strip() for line in fi.read().decode("utf-8").splitlines()] 290 trees[tree]["locs"] = [line.strip() for line in treeitems] 321 line = erritems[i].strip() 322 m = pat.match(line) 329 print("ERROR: could not match errline: %s" % line)
|
/third_party/nghttp2/src/ |
H A D | deflatehd.cc | 241 char line[1 << 14]; in perform_from_http1text() local 252 char *rv = fgets(line, sizeof(line), stdin); in perform_from_http1text() 257 } else if (line[0] == '\n') { in perform_from_http1text() 264 val = strchr(line + 1, ':'); in perform_from_http1text() 278 nv.namelen = strlen(line); in perform_from_http1text() 280 nv.name = (uint8_t *)strdup(line); in perform_from_http1text() 346 line: in print_help() 362 line. in print_help()
|
/third_party/node/deps/cares/src/lib/ |
H A D | ares_search.c | 273 char *line = NULL; in ares__single_domain() local 294 while ((status = ares__read_line(fp, &line, &linesize)) == in ares__single_domain() 296 if (strncasecmp(line, name, len) != 0 || !ISSPACE(line[len])) { in ares__single_domain() 299 p = line + len; in ares__single_domain() 313 ares_free(line); in ares__single_domain() 318 ares_free(line); in ares__single_domain()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | ucaconf.cpp | 189 int32_t line = 0; in testConformance() local 208 line++; in testConformance() 214 errln("Error parsing line %ld (%s): %s\n", in testConformance() 215 (long)line, u_errorName(status), lineB); in testConformance() 221 logln("Skipping line %i because of a known bug", line); in testConformance() 234 errln("Compare result not symmetrical on line %i: " in testConformance() 236 line, cmpres, cmpres2); in testConformance() 243 errln("Difference between coll->compare (%d) and sortkey compare (%d) on line %i", in testConformance() 244 cmpres, skres, line); in testConformance() [all...] |
/third_party/ltp/testcases/kernel/syscalls/madvise/ |
H A D | madvise11.c | 215 static unsigned long parse_kmsg_soft_offlined_pfn(char *line, ssize_t len) in parse_kmsg_soft_offlined_pfn() argument 220 pos = strstr(line, OFFLINE_PATTERN); in parse_kmsg_soft_offlined_pfn() 225 if (pos > (line + len)) in parse_kmsg_soft_offlined_pfn() 271 char line[4096]; in find_in_file() local 275 while (fgets(line, sizeof(line), file)) { in find_in_file() 276 if (strstr(line, key)) { in find_in_file()
|
/third_party/mesa3d/src/gallium/auxiliary/draw/ |
H A D | draw_pipe_flatshade.c | 130 * Flatshade line. 145 stage->next->line( stage->next, &tmp ); in flatshade_line_0() 162 stage->next->line( stage->next, &tmp ); in flatshade_line_1() 263 stage->line = flatshade_line_0; in flatshade_init_state() 267 stage->line = flatshade_line_1; in flatshade_init_state() 283 stage->line( stage, header ); in flatshade_first_line() 291 stage->line = flatshade_first_line; in flatshade_flush() 322 flatshade->stage.line = flatshade_first_line; in draw_flatshade_stage()
|
/third_party/skia/src/core/ |
H A D | SkRect.cpp | 162 SkString line; in dump() local 165 line.printf( "SkRect::MakeLTRB(%s, /* %f */\n", set_scalar(&tmp, fLeft, asType), fLeft); in dump() 166 line.appendf(" %s, /* %f */\n", set_scalar(&tmp, fTop, asType), fTop); in dump() 167 line.appendf(" %s, /* %f */\n", set_scalar(&tmp, fRight, asType), fRight); in dump() 168 line.appendf(" %s /* %f */);", set_scalar(&tmp, fBottom, asType), fBottom); in dump() 175 line.printf("SkRect::MakeLTRB(%s, %s, %s, %s);", in dump() 178 SkDebugf("%s\n", line.c_str()); in dump()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | err.h | 220 void ERR_put_error(int lib, int func, int reason, const char *file, int line); 224 unsigned long ERR_get_error_line(const char **file, int *line); 225 unsigned long ERR_get_error_line_data(const char **file, int *line, 228 unsigned long ERR_peek_error_line(const char **file, int *line); 229 unsigned long ERR_peek_error_line_data(const char **file, int *line, 232 unsigned long ERR_peek_last_error_line(const char **file, int *line); 233 unsigned long ERR_peek_last_error_line_data(const char **file, int *line,
|
/third_party/toybox/toys/posix/ |
H A D | sort.c | 37 Sorting by key looks at a subset of the words on each line. -k2 uses the 38 second word to the end of the line, -k2,2 looks at only the second word, 278 // Read each line from file, appending to a big array. 281 char *line; in sort_lines() local 284 line = *pline; in sort_lines() 285 if (!FLAG(z) && len && line[len-1]=='\n') line[--len] = 0; in sort_lines() 292 if (TT.lines && compare_keys((void *)&TT.lines, &line)>j) in sort_lines() 293 error_exit("%s: Check line %d\n", TT.name, TT.linecount); in sort_lines() 295 TT.lines = (void *)line; in sort_lines() [all...] |
/third_party/python/Lib/wsgiref/ |
H A D | validate.py | 212 for line in lines: 213 assert_(type(line) is bytes) 218 line = self.readline() 219 if not line: 221 yield line 239 for line in seq: 240 self.write(line)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/ |
H A D | sysinfo.cc | 193 char line[1024]; in ReadLongFromFile() local 195 memset(line, '\0', sizeof(line)); in ReadLongFromFile() 196 int len = read(fd, line, sizeof(line) - 1); in ReadLongFromFile() 200 const long temp_value = strtol(line, &err, 10); in ReadLongFromFile() 201 if (line[0] != '\0' && (*err == '\n' || *err == '\0')) { in ReadLongFromFile()
|
/third_party/rust/crates/rust-openssl/openssl-errors/src/ |
H A D | lib.rs | 138 line: u32, in __put_error() 143 put_error_inner(T::id(), func.0, reason.0, file, line, message) in __put_error() 151 line: u32, in put_error_inner() 159 line as c_int, in put_error_inner() 169 line as c_int, in put_error_inner() 180 line!() as c_int, in put_error_inner() 208 line!(), 219 line!(), 233 line!(),
|
/third_party/vk-gl-cts/scripts/android/ |
H A D | install_apk.py | 60 for line in stdout.splitlines()[1:]: 61 if len(line.strip()) == 0: 64 m = ptrn.match(line.decode('utf-8')) 66 print("WARNING: Failed to parse device info '%s'" % line) 77 line = source.readline() 78 if len(line) == 0: # EOF 80 sink.write(prefix + line.decode('utf-8'))
|
/third_party/vk-gl-cts/scripts/ |
H A D | testset.py | 60 for line in f: 61 if line[:6] == "TEST: ": 62 case = line[6:].strip() 94 for line in csvLines[1:]: 95 args = line.split(',') 119 for line in f: 120 group = line.strip()
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | mac_tool.py | 123 for line in stdout.splitlines(): 124 if ibtool_section_re.match(line): 125 current_section_header = line 126 elif not ibtool_re.match(line): 130 print(line) 218 lines = "\n".join(line for line in lines if line is not None) 279 for line in err.splitlines(): 280 if not libtool_re.match(line) an [all...] |
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | mac_tool.py | 123 for line in stdout.splitlines(): 124 if ibtool_section_re.match(line): 125 current_section_header = line 126 elif not ibtool_re.match(line): 130 print(line) 218 lines = "\n".join(line for line in lines if line is not None) 279 for line in err.splitlines(): 280 if not libtool_re.match(line) an [all...] |
/third_party/littlefs/scripts/ |
H A D | structs.py | 164 for line in proc.stdout: 168 m = line_pattern.match(line) 185 for line in proc.stderr: 186 sys.stdout.write(line) 205 for line in proc.stdout: 207 m = info_pattern.match(line) 226 for line in proc.stderr: 227 sys.stdout.write(line) 459 for line in lines: 461 widths[0], line[ [all...] |
/third_party/node/deps/openssl/openssl/crypto/ |
H A D | mem_sec.c | 141 void *CRYPTO_secure_malloc(size_t num, const char *file, int line) in CRYPTO_secure_malloc() argument 148 return CRYPTO_malloc(num, file, line); in CRYPTO_secure_malloc() 158 return CRYPTO_malloc(num, file, line); in CRYPTO_secure_malloc() 162 void *CRYPTO_secure_zalloc(size_t num, const char *file, int line) in CRYPTO_secure_zalloc() argument 167 return CRYPTO_secure_malloc(num, file, line); in CRYPTO_secure_zalloc() 169 return CRYPTO_zalloc(num, file, line); in CRYPTO_secure_zalloc() 172 void CRYPTO_secure_free(void *ptr, const char *file, int line) in CRYPTO_secure_free() argument 180 CRYPTO_free(ptr, file, line); in CRYPTO_secure_free() 191 CRYPTO_free(ptr, file, line); in CRYPTO_secure_free() 196 const char *file, int line) in CRYPTO_secure_clear_free() 195 CRYPTO_secure_clear_free(void *ptr, size_t num, const char *file, int line) CRYPTO_secure_clear_free() argument [all...] |
/third_party/openssl/crypto/ |
H A D | mem_sec.c | 141 void *CRYPTO_secure_malloc(size_t num, const char *file, int line) in CRYPTO_secure_malloc() argument 148 return CRYPTO_malloc(num, file, line); in CRYPTO_secure_malloc() 158 return CRYPTO_malloc(num, file, line); in CRYPTO_secure_malloc() 162 void *CRYPTO_secure_zalloc(size_t num, const char *file, int line) in CRYPTO_secure_zalloc() argument 167 return CRYPTO_secure_malloc(num, file, line); in CRYPTO_secure_zalloc() 169 return CRYPTO_zalloc(num, file, line); in CRYPTO_secure_zalloc() 172 void CRYPTO_secure_free(void *ptr, const char *file, int line) in CRYPTO_secure_free() argument 180 CRYPTO_free(ptr, file, line); in CRYPTO_secure_free() 191 CRYPTO_free(ptr, file, line); in CRYPTO_secure_free() 196 const char *file, int line) in CRYPTO_secure_clear_free() 195 CRYPTO_secure_clear_free(void *ptr, size_t num, const char *file, int line) CRYPTO_secure_clear_free() argument [all...] |
/third_party/python/Modules/ |
H A D | readline.c | 181 /* Exported function to send one line to readline's init file parser */ 189 Execute the init line provided in the string argument. 605 if (entry->line) in _py_free_history_entry() 606 free((void *)entry->line); in _py_free_history_entry() 650 line: unicode 653 Replaces history item given by its position with contents of line. 660 PyObject *line) in readline_replace_history_item_impl() 671 encoded = encode(line); in readline_replace_history_item_impl() 690 /* Add a line to the history buffer */ 804 line stay in _py_get_history_length() 659 readline_replace_history_item_impl(PyObject *module, int entry_number, PyObject *line) readline_replace_history_item_impl() argument 1418 const char *line; call_readline() local [all...] |
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/ |
H A D | 105-multiline-hash-line.c | 2 #line X( \ 5 #line 2
|
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/ |
H A D | Demo.java | 456 String line = br.readLine(); in actionPerformed() 457 if (line == null) break; in actionPerformed() 458 if (line.length() > 0 && line.charAt(0) == '\uFEFF') line = line.substring(1); // strip BOM in actionPerformed() 460 buffer.append(line); in actionPerformed() 654 String line = in.readLine(); in genTestFile() 655 if (line == null) break; in genTestFile() 656 line in genTestFile() 986 titlecaseFirstWord(String line) titlecaseFirstWord() argument 1014 getFirstLetterType(String line, int start, int end) getFirstLetterType() argument [all...] |