| /scripts/gdb/linux/ |
| D | utils.py | 117 def read_u16(buffer, offset): argument 118 buffer_val = buffer[offset:offset + 2] 134 def read_u32(buffer, offset): argument 136 return read_u16(buffer, offset) + (read_u16(buffer, offset + 2) << 16) 138 return read_u16(buffer, offset + 2) + (read_u16(buffer, offset) << 16) 141 def read_u64(buffer, offset): argument 143 return read_u32(buffer, offset) + (read_u32(buffer, offset + 4) << 32) 145 return read_u32(buffer, offset + 4) + (read_u32(buffer, offset) << 32) 148 def read_ulong(buffer, offset): argument 150 return read_u64(buffer, offset) [all …]
|
| /scripts/mod/ |
| D | modpost.h | 70 struct buffer { struct 77 buf_printf(struct buffer *buf, const char *fmt, ...); argument 80 buf_write(struct buffer *buf, const char *s, int len); 93 struct buffer dev_table_buf; 174 void add_moddevtable(struct buffer *buf, struct module *mod);
|
| D | modpost.c | 1674 void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf, in buf_printf() 1687 void buf_write(struct buffer *buf, const char *s, int len) in buf_write() 1785 static void add_header(struct buffer *b, struct module *mod) in add_header() 1818 static void add_exported_symbols(struct buffer *buf, struct module *mod) in add_exported_symbols() 1856 static void add_extended_versions(struct buffer *b, struct module *mod) in add_extended_versions() 1899 static void add_versions(struct buffer *b, struct module *mod) in add_versions() 1935 static void add_depends(struct buffer *b, struct module *mod) in add_depends() 1968 static void add_srcversion(struct buffer *b, struct module *mod) in add_srcversion() 1977 static void write_buf(struct buffer *b, const char *fname) in write_buf() 1999 static void write_if_changed(struct buffer *b, const char *fname) in write_if_changed() [all …]
|
| D | file2alias.c | 1665 void add_moddevtable(struct buffer *buf, struct module *mod) in add_moddevtable()
|
| /scripts/kconfig/ |
| D | lexer.l | 40 struct buffer { struct 41 struct buffer *parent; argument 48 static struct buffer *current_buf; argument
|
| D | gconf.c | 332 GtkTextBuffer *buffer; in text_insert_help() local 339 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text_w)); in text_insert_help() 340 gtk_text_buffer_get_bounds(buffer, &start, &end); in text_insert_help() 341 gtk_text_buffer_delete(buffer, &start, &end); in text_insert_help() 344 gtk_text_buffer_get_end_iter(buffer, &end); in text_insert_help() 345 gtk_text_buffer_insert_with_tags(buffer, &end, prompt, -1, tag1, in text_insert_help() 347 gtk_text_buffer_insert_at_cursor(buffer, "\n\n", 2); in text_insert_help() 348 gtk_text_buffer_get_end_iter(buffer, &end); in text_insert_help() 349 gtk_text_buffer_insert_with_tags(buffer, &end, str_get(&help), -1, tag2, in text_insert_help() 357 GtkTextBuffer *buffer; in text_insert_msg() local [all …]
|
| /scripts/ipe/polgen/ |
| D | polgen.c | 18 static int policy_to_buffer(const char *pathname, char **buffer, size_t *size) in policy_to_buffer() argument 48 *buffer = lbuf; in policy_to_buffer()
|
| /scripts/genksyms/ |
| D | genksyms.c | 415 char buffer[256]; in read_node() local 417 .string = buffer, in read_node() 423 if (node.string == buffer) in read_node() 429 if (node.string == buffer) in read_node() 434 if (node.string >= buffer + sizeof(buffer) - 1) { in read_node() 440 if (node.string == buffer) in read_node() 443 node.string = buffer; in read_node()
|
| /scripts/ |
| D | asn1_compiler.c | 346 static void tokenise(char *buffer, char *end) in tokenise() argument 355 token_list = tokens = calloc((end - buffer) / 2, sizeof(struct token)); in tokenise() 363 while (buffer < end) { in tokenise() 366 line = buffer; in tokenise() 367 nl = memchr(line, '\n', end - buffer); in tokenise() 369 buffer = nl = end; in tokenise() 371 buffer = nl + 1; in tokenise() 565 char *buffer, *p; in main() local 605 if (!(buffer = malloc(st.st_size + 1))) { in main() 610 if ((readlen = read(fd, buffer, st.st_size)) < 0) { in main() [all …]
|
| D | spelling.txt | 264 bufer||buffer 266 bufufer||buffer
|
| /scripts/clang-tools/ |
| D | run-clang-tools.py | 78 sys.stderr.buffer.write(p.stdout)
|