/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 | 82 struct buffer { struct 89 buf_printf(struct buffer *buf, const char *fmt, ...); argument 92 buf_write(struct buffer *buf, const char *s, int len); 104 struct buffer dev_table_buf; 185 void add_moddevtable(struct buffer *buf, struct module *mod);
|
D | modpost.c | 1750 void __attribute__((format(printf, 2, 3))) buf_printf(struct buffer *buf, in buf_printf() 1763 void buf_write(struct buffer *buf, const char *s, int len) in buf_write() 1850 static void add_header(struct buffer *b, struct module *mod) in add_header() 1906 static void add_exported_symbols(struct buffer *buf, struct module *mod) in add_exported_symbols() 1944 static void add_versions(struct buffer *b, struct module *mod) in add_versions() 1975 static void add_depends(struct buffer *b, struct module *mod) in add_depends() 2008 static void add_srcversion(struct buffer *b, struct module *mod) in add_srcversion() 2017 static void write_buf(struct buffer *b, const char *fname) in write_buf() 2039 static void write_if_changed(struct buffer *b, const char *fname) in write_if_changed() 2076 struct buffer buf = { }; in write_vmlinux_export_c_file() [all …]
|
D | file2alias.c | 1630 void add_moddevtable(struct buffer *buf, struct module *mod) in add_moddevtable()
|
/scripts/kconfig/ |
D | lexer.l | 33 struct buffer { struct 34 struct buffer *parent; argument 38 static struct buffer *current_buf; argument
|
D | gconf.c | 364 GtkTextBuffer *buffer; in text_insert_help() local 371 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text_w)); in text_insert_help() 372 gtk_text_buffer_get_bounds(buffer, &start, &end); in text_insert_help() 373 gtk_text_buffer_delete(buffer, &start, &end); in text_insert_help() 376 gtk_text_buffer_get_end_iter(buffer, &end); in text_insert_help() 377 gtk_text_buffer_insert_with_tags(buffer, &end, prompt, -1, tag1, in text_insert_help() 379 gtk_text_buffer_insert_at_cursor(buffer, "\n\n", 2); in text_insert_help() 380 gtk_text_buffer_get_end_iter(buffer, &end); in text_insert_help() 381 gtk_text_buffer_insert_with_tags(buffer, &end, str_get(&help), -1, tag2, in text_insert_help() 389 GtkTextBuffer *buffer; in text_insert_msg() local [all …]
|
/scripts/genksyms/ |
D | genksyms.c | 410 char buffer[256]; in read_node() local 412 .string = buffer, in read_node() 418 if (node.string == buffer) in read_node() 424 if (node.string == buffer) in read_node() 429 if (node.string >= buffer + sizeof(buffer) - 1) { in read_node() 435 if (node.string == buffer) in read_node() 438 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 | 260 bufer||buffer 262 bufufer||buffer
|
/scripts/clang-tools/ |
D | run-clang-tools.py | 60 sys.stderr.buffer.write(p.stdout)
|