id
int64
0
79.7k
docstring_tokens
listlengths
4
145
code_tokens
listlengths
5
27.3k
fun_name
stringlengths
1
108
repo
stringclasses
778 values
partition
stringclasses
3 values
opt_level
stringclasses
15 values
77,864
[ "returns", "TRUE", "if", "command", "has", "at", "least", "one", "binding" ]
[ "'gboolean", "command_has_binding", "(", "guint", "command_id", ")", "{", "command_row", "*", "row", ";", "if", "(", "keymap_get_command_row", "(", "Denemo", ".", "map", ",", "&", "row", ",", "command_id", ")", ")", "return", "row", "->", "bindings", "!=", ...
command_has_binding
denemo/denemo
valid
O2
77,865
[ "prints", "info", "on", "the", "data", "of", "the", "keymap", "relative", "to", "a", "command" ]
[ "'G_GNUC_UNUSED", "void", "dump_command_info", "(", "keymap", "*", "the_keymap", ",", "gint", "command_id", ")", "{", "gchar", "*", "cur_binding", ";", "command_row", "*", "row", ";", "GtkTreeIter", "iter", ";", "GList", "*", "cur", "=", "NULL", ";", "if", ...
dump_command_info
denemo/denemo
valid
O2
77,866
[ "toggle", "hidden", "on", "action", "at", "row", "in", "command", "list" ]
[ "'static", "void", "toggle_hidden_on_action", "(", "G_GNUC_UNUSED", "GtkCellRendererToggle", "*", "cell_renderer", ",", "gchar", "*", "path", ",", "GtkTreeModel", "*", "model", ")", "{", "gint", "command_id", "=", "-", "1", ";", "command_row", "*", "row", "=", ...
toggle_hidden_on_action
denemo/denemo
valid
O2
77,867
[ "weaker", "lookup", "of", "keybinding" ]
[ "'gint", "lookup_command_for_keyevent", "(", "GdkEventKey", "*", "event", ")", "{", "keymap", "*", "the_keymap", "=", "Denemo", ".", "map", ";", "gint", "command_id", "=", "lookup_command_for_keybinding", "(", "the_keymap", ",", "event", "->", "keyval", ",", "dn...
lookup_command_for_keyevent
denemo/denemo
valid
O2
77,868
[ "implemented", "as", "last", "found", "idx" ]
[ "'static", "gboolean", "search_equal_func", "(", "GtkTreeModel", "*", "model", ",", "gint", "G_GNUC_UNUSED", "column", ",", "const", "gchar", "*", "key", ",", "GtkTreeIter", "*", "iter", ",", "G_GNUC_UNUSED", "gpointer", "search_data", ")", "{", "gchar", "*", ...
search_equal_func
denemo/denemo
valid
O2
77,869
[ "looks", "up", "the", "command", "idx", "for", "the", "binding", "of", "name", "binding_name" ]
[ "'gint", "lookup_command_for_keybinding_name", "(", "keymap", "*", "the_keymap", ",", "const", "gchar", "*", "binding_name", ")", "{", "gpointer", "*", "value", "=", "g_hash_table_lookup", "(", "the_keymap", "->", "idx_from_keystring", ",", "binding_name", ")", ";",...
lookup_command_for_keybinding_name
denemo/denemo
valid
O2
77,883
[ "Parses", "a", "mouse", "or", "key", "binding" ]
[ "'static", "int", "ParseBinding", "(", "Display", "*", "dpy", ",", "Binding", "*", "*", "pblist", ",", "char", "*", "tline", ",", "binding_t", "type", ",", "int", "*", "nr_left_buttons", ",", "int", "*", "nr_right_buttons", ",", "unsigned", "short", "*", ...
ParseBinding
fvwmorg/fvwm
valid
O1
77,922
[ "File", "name", "or", "a", "list", "of", "genomic", "locations" ]
[ "'static", "bcf_sr_regions_t", "*", "_regions_init_string", "(", "const", "char", "*", "str", ")", "{", "bcf_sr_regions_t", "*", "reg", "=", "(", "bcf_sr_regions_t", "*", ")", "calloc", "(", "1", ",", "sizeof", "(", "bcf_sr_regions_t", ")", ")", ";", "reg", ...
_regions_init_string
samtools/htslib
valid
O2
77,935
[ "Pass", "received", "custom", "extension", "data", "to", "the", "application", "for", "parsing" ]
[ "\"int", "custom_ext_parse", "(", "SSL", "*", "s", ",", "int", "server", ",", "unsigned", "int", "ext_type", ",", "const", "unsigned", "char", "*", "ext_data", ",", "size_t", "ext_size", ",", "int", "*", "al", ")", "{", "custom_ext_methods", "*", "exts", ...
custom_ext_parse
guanzhi/GmSSL
valid
O1
77,936
[ "Copy", "table", "of", "custom", "extensions" ]
[ "'int", "custom_exts_copy", "(", "custom_ext_methods", "*", "dst", ",", "const", "custom_ext_methods", "*", "src", ")", "{", "if", "(", "src", "->", "meths_count", ")", "{", "dst", "->", "meths", "=", "OPENSSL_memdup", "(", "src", "->", "meths", ",", "size...
custom_exts_copy
guanzhi/GmSSL
valid
O1
77,937
[ "Application", "level", "functions", "to", "add", "custom", "extension", "callbacks" ]
[ "\"int", "SSL_CTX_add_client_custom_ext", "(", "SSL_CTX", "*", "ctx", ",", "unsigned", "int", "ext_type", ",", "custom_ext_add_cb", "add_cb", ",", "custom_ext_free_cb", "free_cb", ",", "void", "*", "add_arg", ",", "custom_ext_parse_cb", "parse_cb", ",", "void", "*",...
SSL_CTX_add_client_custom_ext
guanzhi/GmSSL
valid
O1
77,938
[ "Return", "true", "if", "a", "client", "custom", "extension", "exists,", "false", "otherwise" ]
[ "'int", "SSL_CTX_has_client_custom_ext", "(", "const", "SSL_CTX", "*", "ctx", ",", "unsigned", "int", "ext_type", ")", "{", "return", "custom_ext_find", "(", "&", "ctx", "->", "cert", "->", "cli_ext", ",", "ext_type", ")", "!=", "NULL", ";", "}'" ]
SSL_CTX_has_client_custom_ext
guanzhi/GmSSL
valid
O1
77,939
[ "Set", "callbacks", "for", "a", "custom", "extension" ]
[ "'static", "int", "custom_ext_meth_add", "(", "custom_ext_methods", "*", "exts", ",", "unsigned", "int", "ext_type", ",", "custom_ext_add_cb", "add_cb", ",", "custom_ext_free_cb", "free_cb", ",", "void", "*", "add_arg", ",", "custom_ext_parse_cb", "parse_cb", ",", "...
custom_ext_meth_add
guanzhi/GmSSL
valid
O1
78,076
[ "set", "f", "to", "the", "rational", "q" ]
[ "'int", "mpfr_set_q", "(", "mpfr_ptr", "f", ",", "mpq_srcptr", "q", ",", "mpfr_rnd_t", "rnd", ")", "{", "mpz_srcptr", "num", ",", "<type", "ref=\"prev\"/>", "den", ";", "mpfr_t", "n", ",", "<type", "ref=\"prev\"/>", "d", ";", "int", "inexact", ";", "int", ...
mpfr_set_q
wbhart/antic
valid
O2
78,081
[ "Write", "\\p", "payload", "of", "\\p", "size", "at", "absolute", "offset", "\\p", "absof" ]
[ "'size_t", "rd_buf_write_update", "(", "rd_buf_t", "*", "rbuf", ",", "size_t", "absof", ",", "const", "void", "*", "payload", ",", "size_t", "size", ")", "{", "rd_segment_t", "*", "seg", ";", "const", "char", "*", "psrc", "=", "(", "const", "char", "*", ...
rd_buf_write_update
edenhill/kafkacat
valid
O2
78,082
[ "Do", "a", "writeseek,", "updating", "the", "write", "position", "to", "the", "given" ]
[ "'int", "rd_buf_write_seek", "(", "rd_buf_t", "*", "rbuf", ",", "size_t", "absof", ")", "{", "rd_segment_t", "*", "seg", ",", "<type", "ref=\"prev\">", "*", "next", ";", "size_t", "relof", ";", "seg", "=", "rd_buf_get_segment_at_offset", "(", "rbuf", ",", "r...
rd_buf_write_seek
edenhill/kafkacat
valid
O2
78,083
[ "Ensures", "that", "at", "least", "\\p", "size", "bytes", "will", "be", "available", "for" ]
[ "'void", "rd_buf_write_ensure", "(", "rd_buf_t", "*", "rbuf", ",", "size_t", "min_size", ",", "size_t", "max_size", ")", "{", "size_t", "remains", ";", "while", "(", "(", "remains", "=", "rd_buf_write_remains", "(", "rbuf", ")", ")", "<", "min_size", ")", ...
rd_buf_write_ensure
edenhill/kafkacat
valid
O2
78,084
[ "Set", "up", "the", "iovec", "\\p", "iovs", "(of", "size", "\\p", "iov_max)", "with", "the", "readable" ]
[ "'size_t", "rd_slice_get_iov", "(", "const", "rd_slice_t", "*", "slice", ",", "struct", "iovec", "*", "iovs", ",", "size_t", "*", "iovcntp", ",", "size_t", "iov_max", ",", "size_t", "size_max", ")", "{", "const", "void", "*", "p", ";", "size_t", "rlen", ...
rd_slice_get_iov
edenhill/kafkacat
valid
O2
78,085
[ "Compute", "CRC32C", "of", "segments", "starting", "at", "at", "buffer", "position", "\\p", "absof," ]
[ "'uint32_t", "rd_slice_crc32c", "(", "rd_slice_t", "*", "slice", ")", "{", "const", "void", "*", "p", ";", "size_t", "rlen", ";", "uint32_t", "crc", "=", "0", ";", "while", "(", "(", "rlen", "=", "rd_slice_reader", "(", "slice", ",", "&", "p", ")", "...
rd_slice_crc32c
edenhill/kafkacat
valid
O2
78,086
[ "Restore", "the", "original", "\\p", "save_slice", "size", "from", "a", "previous", "call", "to" ]
[ "'void", "rd_slice_widen", "(", "rd_slice_t", "*", "slice", ",", "const", "rd_slice_t", "*", "save_slice", ")", "{", "slice", "->", "end", "=", "save_slice", "->", "end", ";", "}'" ]
rd_slice_widen
edenhill/kafkacat
valid
O2
78,087
[ "Initialize", "buffer,", "preallocating", "\\p", "fixed_seg_cnt", "segments" ]
[ "'void", "rd_buf_init", "(", "rd_buf_t", "*", "rbuf", ",", "size_t", "fixed_seg_cnt", ",", "size_t", "buf_size", ")", "{", "size_t", "totalloc", "=", "0", ";", "memset", "(", "rbuf", ",", "0", ",", "sizeof", "(", "*", "rbuf", ")", ")", ";", "TAILQ_INIT...
rd_buf_init
edenhill/kafkacat
valid
O2
78,088
[ "Set", "up", "the", "iovecs", "in", "\\p", "iovs", "(of", "size", "\\p", "iov_max)", "with", "the", "writable" ]
[ "'size_t", "rd_buf_get_write_iov", "(", "const", "rd_buf_t", "*", "rbuf", ",", "struct", "iovec", "*", "iovs", ",", "size_t", "*", "iovcntp", ",", "size_t", "iov_max", ",", "size_t", "size_max", ")", "{", "const", "rd_segment_t", "*", "seg", ";", "size_t", ...
rd_buf_get_write_iov
edenhill/kafkacat
valid
O2
78,089
[ "Read", "\\p", "size", "bytes", "from", "absolute", "slice", "offset", "\\p", "offset" ]
[ "'size_t", "rd_slice_peek", "(", "const", "rd_slice_t", "*", "slice", ",", "size_t", "offset", ",", "void", "*", "dst", ",", "size_t", "size", ")", "{", "rd_slice_t", "sub", "=", "*", "slice", ";", "if", "(", "unlikely", "(", "rd_slice_seek", "(", "&", ...
rd_slice_peek
edenhill/kafkacat
valid
O2
78,090
[ "Same", "as", "rd_slice_narrow()", "but", "using", "a", "relative", "size", "\\p", "relsize" ]
[ "'int", "rd_slice_narrow_relative", "(", "rd_slice_t", "*", "slice", ",", "rd_slice_t", "*", "save_slice", ",", "size_t", "relsize", ")", "{", "return", "rd_slice_narrow", "(", "slice", ",", "save_slice", ",", "rd_slice_offset", "(", "slice", ")", "+", "relsize"...
rd_slice_narrow_relative
edenhill/kafkacat
valid
O2
78,091
[ "Write", "\\p", "slice", "to", "\\p", "rbuf" ]
[ "'size_t", "rd_buf_write_slice", "(", "rd_buf_t", "*", "rbuf", ",", "rd_slice_t", "*", "slice", ")", "{", "const", "void", "*", "p", ";", "size_t", "rlen", ";", "size_t", "sum", "=", "0", ";", "while", "(", "(", "rlen", "=", "rd_slice_reader", "(", "sl...
rd_buf_write_slice
edenhill/kafkacat
valid
O2
78,092
[ "write_seek()", "and", "split()", "test" ]
[ "'static", "int", "do_unittest_write_split_seek", "(", "void", ")", "{", "rd_buf_t", "b", ";", "char", "ones", "[", "1024", "]", ";", "char", "twos", "[", "1024", "]", ";", "char", "threes", "[", "1024", "]", ";", "char", "fiftyfives", "[", "100", "]",...
do_unittest_write_split_seek
edenhill/kafkacat
valid
O2
78,093
[ "Free", "memory", "associated", "with", "the", "\\p", "rbuf,", "but", "not", "the", "rbuf", "itself" ]
[ "'void", "rd_buf_destroy", "(", "rd_buf_t", "*", "rbuf", ")", "{", "rd_segment_t", "*", "seg", ",", "<type", "ref=\"prev\">", "*", "tmp", ";", "#", "if", "ENABLE_DEVEL", "/*", "FIXME", "*/", "if", "(", "rbuf", "->", "rbuf_len", ">", "0", "&&", "0", ")"...
rd_buf_destroy
edenhill/kafkacat
valid
O2
78,094
[ "Get", "a", "preallocated", "segment", "if", "available,", "or", "allocate", "a", "new" ]
[ "'static", "rd_segment_t", "*", "rd_buf_alloc_segment0", "(", "rd_buf_t", "*", "rbuf", ",", "size_t", "size", ")", "{", "rd_segment_t", "*", "seg", ";", "/*", "See", "if", "there", "is", "enough", "room", "in", "the", "extra", "buffer", "for", "*", "alloca...
rd_buf_alloc_segment0
edenhill/kafkacat
valid
O2
78,095
[ "Initialize", "a", "new", "slice", "of", "\\p", "size", "bytes", "starting", "at", "\\p", "seg", "with" ]
[ "'int", "rd_slice_init_seg", "(", "rd_slice_t", "*", "slice", ",", "const", "rd_buf_t", "*", "rbuf", ",", "const", "rd_segment_t", "*", "seg", ",", "size_t", "rof", ",", "size_t", "size", ")", "{", "/*", "Verify", "that", "\\\\p", "size", "bytes", "are", ...
rd_slice_init_seg
edenhill/kafkacat
valid
O2
78,096
[ "Sets", "the", "slice's", "read", "position" ]
[ "'int", "rd_slice_seek", "(", "rd_slice_t", "*", "slice", ",", "size_t", "offset", ")", "{", "const", "rd_segment_t", "*", "seg", ";", "size_t", "absof", "=", "slice", "->", "start", "+", "offset", ";", "if", "(", "unlikely", "(", "absof", ">=", "slice",...
rd_slice_seek
edenhill/kafkacat
valid
O2
78,097
[ "Read", "a", "varintencoded", "unsigned", "integer", "from", "\\p", "slice," ]
[ "\"size_t", "rd_slice_read_uvarint", "(", "rd_slice_t", "*", "slice", ",", "uint64_t", "*", "nump", ")", "{", "uint64_t", "num", "=", "0", ";", "int", "shift", "=", "0", ";", "size_t", "rof", "=", "slice", "->", "rof", ";", "const", "rd_segment_t", "*", ...
rd_slice_read_uvarint
edenhill/kafkacat
valid
O2
78,098
[ "Read", "\\p", "size", "bytes", "from", "current", "read", "position," ]
[ "'size_t", "rd_slice_read", "(", "rd_slice_t", "*", "slice", ",", "void", "*", "dst", ",", "size_t", "size", ")", "{", "size_t", "remains", "=", "size", ";", "char", "*", "d", "=", "(", "char", "*", ")", "dst", ";", "/*", "Possibly", "NULL", "*/", ...
rd_slice_read
edenhill/kafkacat
valid
O2
78,099
[ "Allocate", "between", "\\p", "min_size" ]
[ "'static", "rd_segment_t", "*", "rd_buf_alloc_segment", "(", "rd_buf_t", "*", "rbuf", ",", "size_t", "min_size", ",", "size_t", "max_size", ")", "{", "rd_segment_t", "*", "seg", ";", "/*", "Over-allocate", "if", "allowed.", "*/", "if", "(", "min_size", "!=", ...
rd_buf_alloc_segment
edenhill/kafkacat
valid
O2
78,100
[ "Write", "\\p", "payload", "of", "\\p", "size", "bytes", "to", "current", "position" ]
[ "'size_t", "rd_buf_write", "(", "rd_buf_t", "*", "rbuf", ",", "const", "void", "*", "payload", ",", "size_t", "size", ")", "{", "size_t", "remains", "=", "size", ";", "size_t", "initial_absof", ";", "const", "char", "*", "psrc", "=", "(", "const", "char"...
rd_buf_write
edenhill/kafkacat
valid
O2
78,101
[ "CRC32", "calculation", "of", "slice" ]
[ "'uint32_t", "rd_slice_crc32", "(", "rd_slice_t", "*", "slice", ")", "{", "rd_crc32_t", "crc", ";", "const", "void", "*", "p", ";", "size_t", "rlen", ";", "crc", "=", "rd_crc32_init", "()", ";", "while", "(", "(", "rlen", "=", "rd_slice_reader", "(", "sl...
rd_slice_crc32
edenhill/kafkacat
valid
O2
78,115
[ "Inserts", "server", "in", "to", "the", "db" ]
[ "'static", "int", "__DBInsertServer", "(", "const", "char", "*", "server", ",", "const", "char", "*", "info", ",", "const", "DBConfig", "*", "db_config", ")", "{", "char", "sql_query", "[", "OS_SIZE_1024", "]", ";", "memset", "(", "sql_query", ",", "\\'\\\...
__DBInsertServer
ossec/ossec-hids
valid
Oa
78,120
[ "Convert", "TValue", "to", "C", "type", "(store)" ]
[ "'static", "TRef", "crec_ct_tv", "(", "jit_State", "*", "J", ",", "CType", "*", "d", ",", "TRef", "dp", ",", "TRef", "sp", ",", "cTValue", "*", "sval", ")", "{", "CTState", "*", "cts", "=", "ctype_ctsG", "(", "J2G", "(", "J", ")", ")", ";", "CTyp...
crec_ct_tv
ZigzagAK/ngx_zookeeper_lua
valid
Oa
78,121
[ "Record", "setting", "a", "finalizer" ]
[ "'static", "void", "crec_finalizer", "(", "jit_State", "*", "J", ",", "TRef", "trcd", ",", "TRef", "trfin", ",", "cTValue", "*", "fin", ")", "{", "if", "(", "tvisgcv", "(", "fin", ")", ")", "{", "if", "(", "!", "trfin", ")", "trfin", "=", "lj_ir_kp...
crec_finalizer
ZigzagAK/ngx_zookeeper_lua
valid
Oa
78,122
[ "C", "library", "namespace", "metamethods" ]
[ "'void", "LJ_FASTCALL", "recff_clib_index", "(", "jit_State", "*", "J", ",", "RecordFFData", "*", "rd", ")", "{", "CTState", "*", "cts", "=", "ctype_ctsG", "(", "J2G", "(", "J", ")", ")", ";", "if", "(", "tref_isudata", "(", "J", "->", "base", "[", "...
recff_clib_index
ZigzagAK/ngx_zookeeper_lua
valid
Oa
78,123
[ "Specialize", "to", "the", "CTypeID", "held", "by", "a", "cdata", "constructor" ]
[ "'static", "CTypeID", "crec_constructor", "(", "jit_State", "*", "J", ",", "GCcdata", "*", "cd", ",", "TRef", "tr", ")", "{", "CTypeID", "id", ";", "lua_assert", "(", "tref_iscdata", "(", "tr", ")", "&&", "cd", "->", "ctypeid", "==", "CTID_CTYPEID", ")",...
crec_constructor
ZigzagAK/ngx_zookeeper_lua
valid
Oa
78,131
[ "Verify", "signed", "receipt", "after", "it", "has", "already", "passed", "normal", "CMS", "verify" ]
[ "'int", "cms_Receipt_verify", "(", "CMS_ContentInfo", "*", "cms", ",", "CMS_ContentInfo", "*", "req_cms", ")", "{", "int", "r", "=", "0", ",", "<type", "ref=\"prev\"/>", "i", ";", "CMS_ReceiptRequest", "*", "rr", "=", "NULL", ";", "CMS_Receipt", "*", "rct", ...
cms_Receipt_verify
rbsec/sslscan
valid
O3
78,132
[ "ESS", "services:", "for", "now", "just", "Signed", "Receipt", "related" ]
[ "'int", "CMS_get1_ReceiptRequest", "(", "CMS_SignerInfo", "*", "si", ",", "CMS_ReceiptRequest", "*", "*", "prr", ")", "{", "ASN1_STRING", "*", "str", ";", "CMS_ReceiptRequest", "*", "rr", "=", "NULL", ";", "if", "(", "prr", ")", "*", "prr", "=", "NULL", ...
CMS_get1_ReceiptRequest
rbsec/sslscan
valid
O3
78,133
[ "Add", "a", "msgSigDigest", "attribute", "to", "a", "SignerInfo" ]
[ "'int", "cms_msgSigDigest_add1", "(", "CMS_SignerInfo", "*", "dest", ",", "CMS_SignerInfo", "*", "src", ")", "{", "unsigned", "char", "dig", "[", "EVP_MAX_MD_SIZE", "]", ";", "unsigned", "int", "diglen", ";", "if", "(", "!", "cms_msgSigDigest", "(", "src", "...
cms_msgSigDigest_add1
rbsec/sslscan
valid
O3
78,138
[ "Mock", "to", "catch", "transaction", "calls", "to", "the", "daemon" ]
[ "'nr_status_t", "__wrap_nr_cmd_txndata_tx", "(", "int", "daemon_fd", "NRUNUSED", ",", "const", "nrtxn_t", "*", "txn", "NRUNUSED", ")", "{", "return", "(", "nr_status_t", ")", "mock", "()", ";", "}'" ]
__wrap_nr_cmd_txndata_tx
newrelic/c-sdk
valid
O0
78,142
[ "Expand", "UBSAN_CHECK_", "internal", "function", "if", "it", "has", "vector", "operands" ]
[ "'static", "void", "expand_vector_ubsan_overflow", "(", "location_t", "loc", ",", "enum", "tree_code", "code", ",", "tree", "lhs", ",", "tree", "arg0", ",", "tree", "arg1", ")", "{", "poly_uint64", "cnt", "=", "TYPE_VECTOR_SUBPARTS", "(", "TREE_TYPE", "(", "ar...
expand_vector_ubsan_overflow
KevinOConnor/klipper
valid
Os
78,143
[ "This", "should", "get", "expanded", "in", "the", "sanopt", "pass" ]
[ "'static", "void", "expand_UBSAN_NULL", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_UBSAN_NULL
KevinOConnor/klipper
valid
Os
78,144
[ "This", "should", "get", "expanded", "in", "omp_device_lower", "pass" ]
[ "'static", "void", "expand_GOMP_USE_SIMT", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_GOMP_USE_SIMT
KevinOConnor/klipper
valid
Os
78,145
[ "Add", "mul", "overflow", "checking", "to", "the", "statement", "STMT" ]
[ "'static", "void", "expand_mul_overflow", "(", "location_t", "loc", ",", "tree", "lhs", ",", "tree", "arg0", ",", "tree", "arg1", ",", "bool", "unsr_p", ",", "bool", "uns0_p", ",", "bool", "uns1_p", ",", "bool", "is_ubsan", ",", "tree", "*", "datap", ")"...
expand_mul_overflow
KevinOConnor/klipper
valid
Os
78,146
[ "Expand", "atomic", "bit", "test", "and", "reset" ]
[ "'static", "void", "expand_ATOMIC_BIT_TEST_AND_RESET", "(", "internal_fn", ",", "gcall", "*", "call", ")", "{", "expand_ifn_atomic_bit_test_and", "(", "call", ")", ";", "}'" ]
expand_ATOMIC_BIT_TEST_AND_RESET
KevinOConnor/klipper
valid
Os
78,147
[ "Expand", "MASK_LOAD{,_LANES}", "call", "STMT", "using", "optab", "OPTAB" ]
[ "'static", "void", "expand_mask_load_optab_fn", "(", "internal_fn", ",", "gcall", "*", "stmt", ",", "convert_optab", "optab", ")", "{", "struct", "expand_operand", "ops", "[", "3", "]", ";", "tree", "type", ",", "<type", "ref=\"prev\"/>", "lhs", ",", "<type", ...
expand_mask_load_optab_fn
KevinOConnor/klipper
valid
Os
78,148
[ "This", "is", "expanded", "by", "oacc_device_lower", "pass" ]
[ "'static", "void", "expand_GOACC_TILE", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_GOACC_TILE
KevinOConnor/klipper
valid
Os
78,149
[ "This", "is", "expanded", "by", "oacc_device_lower", "pass" ]
[ "'static", "void", "expand_GOACC_REDUCTION", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_GOACC_REDUCTION
KevinOConnor/klipper
valid
Os
78,150
[ "The", "position", "of", "an", "OpenACC", "execution", "engine", "along", "one", "compute", "axis" ]
[ "'static", "void", "expand_GOACC_DIM_POS", "(", "internal_fn", ",", "gcall", "*", "stmt", ")", "{", "tree", "lhs", "=", "gimple_call_lhs", "(", "stmt", ")", ";", "if", "(", "!", "lhs", ")", "return", ";", "rtx", "target", "=", "expand_expr", "(", "lhs", ...
expand_GOACC_DIM_POS
KevinOConnor/klipper
valid
Os
78,151
[ "This", "should", "get", "expanded", "in", "omp_device_lower", "pass" ]
[ "'static", "void", "expand_GOMP_SIMT_ENTER", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_GOMP_SIMT_ENTER
KevinOConnor/klipper
valid
Os
78,152
[ "Return", "the", "optab", "used", "by", "internal", "function", "FN" ]
[ "'static", "optab", "direct_internal_fn_optab", "(", "internal_fn", "fn", ")", "{", "switch", "(", "fn", ")", "{", "#", "define", "DEF_INTERNAL_FN", "(", "CODE", ",", "FLAGS", ",", "FNSPEC", ")", "\\\\", "case", "IFN_##CODE:", "break;", "#", "define", "DEF_I...
direct_internal_fn_optab
KevinOConnor/klipper
valid
Os
78,153
[ "Expand", "UBSAN_CHECK_MUL", "call", "STMT" ]
[ "'static", "void", "expand_UBSAN_CHECK_MUL", "(", "internal_fn", ",", "gcall", "*", "stmt", ")", "{", "location_t", "loc", "=", "gimple_location", "(", "stmt", ")", ";", "tree", "lhs", "=", "gimple_call_lhs", "(", "stmt", ")", ";", "tree", "arg0", "=", "gi...
expand_UBSAN_CHECK_MUL
KevinOConnor/klipper
valid
Os
78,154
[ "Return", "true", "if", "IFN_SET_EDOM", "is", "supported" ]
[ "'bool", "set_edom_supported_p", "(", "void", ")", "{", "#", "ifdef", "TARGET_EDOM", "return", "true", ";", "#", "else", "return", "false", ";", "#", "endif", "}'" ]
set_edom_supported_p
KevinOConnor/klipper
valid
Os
78,155
[ "Add", "negate", "overflow", "checking", "to", "the", "statement", "STMT" ]
[ "'static", "void", "expand_neg_overflow", "(", "location_t", "loc", ",", "tree", "lhs", ",", "tree", "arg1", ",", "bool", "is_ubsan", ",", "tree", "*", "datap", ")", "{", "rtx", "res", ",", "<type", "ref=\"prev\"/>", "op1", ";", "tree", "fn", ";", "rtx_c...
expand_neg_overflow
KevinOConnor/klipper
valid
Os
78,156
[ "Expand", "the", "IFN_UNIQUE", "function", "according", "to", "its", "first", "argument" ]
[ "'static", "void", "expand_UNIQUE", "(", "internal_fn", ",", "gcall", "*", "stmt", ")", "{", "rtx", "pattern", "=", "NULL_RTX", ";", "enum", "ifn_unique_kind", "kind", "=", "(", "enum", "ifn_unique_kind", ")", "TREE_INT_CST_LOW", "(", "gimple_call_arg", "(", "...
expand_UNIQUE
KevinOConnor/klipper
valid
Os
78,157
[ "This", "should", "get", "expanded", "in", "the", "sanopt", "pass" ]
[ "'static", "void", "expand_UBSAN_VPTR", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_UBSAN_VPTR
KevinOConnor/klipper
valid
Os
78,158
[ "This", "should", "get", "folded", "in", "treevectorizer" ]
[ "'static", "void", "expand_LOOP_VECTORIZED", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_LOOP_VECTORIZED
KevinOConnor/klipper
valid
Os
78,159
[ "This", "should", "get", "expanded", "in", "the", "sanopt", "pass" ]
[ "'static", "void", "expand_ASAN_CHECK", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_ASAN_CHECK
KevinOConnor/klipper
valid
Os
78,160
[ "This", "should", "get", "expanded", "in", "adjust_simduid_builtins" ]
[ "'static", "void", "expand_GOMP_SIMD_ORDERED_START", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_GOMP_SIMD_ORDERED_START
KevinOConnor/klipper
valid
Os
78,161
[ "Exchange", "between", "SIMT", "lanes", "according", "to", "given", "source", "lane", "index" ]
[ "'static", "void", "expand_GOMP_SIMT_XCHG_IDX", "(", "internal_fn", ",", "gcall", "*", "stmt", ")", "{", "tree", "lhs", "=", "gimple_call_lhs", "(", "stmt", ")", ";", "if", "(", "!", "lhs", ")", "return", ";", "rtx", "target", "=", "expand_expr", "(", "l...
expand_GOMP_SIMT_XCHG_IDX
KevinOConnor/klipper
valid
Os
78,162
[ "This", "should", "get", "expanded", "in", "the", "sanopt", "pass" ]
[ "'static", "void", "expand_UBSAN_BOUNDS", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_UBSAN_BOUNDS
KevinOConnor/klipper
valid
Os
78,163
[ "Expand", "atomic", "bit", "test", "and", "set" ]
[ "'static", "void", "expand_ATOMIC_BIT_TEST_AND_SET", "(", "internal_fn", ",", "gcall", "*", "call", ")", "{", "expand_ifn_atomic_bit_test_and", "(", "call", ")", ";", "}'" ]
expand_ATOMIC_BIT_TEST_AND_SET
KevinOConnor/klipper
valid
Os
78,164
[ "Return", "true", "if", "IFN", "is", "some", "form", "of", "store", "to", "memory" ]
[ "'bool", "internal_store_fn_p", "(", "internal_fn", "fn", ")", "{", "switch", "(", "fn", ")", "{", "case", "IFN_MASK_STORE", ":", "case", "IFN_STORE_LANES", ":", "case", "IFN_MASK_STORE_LANES", ":", "case", "IFN_SCATTER_STORE", ":", "case", "IFN_MASK_SCATTER_STORE",...
internal_store_fn_p
KevinOConnor/klipper
valid
Os
78,165
[ "This", "should", "get", "expanded", "in", "the", "sanopt", "pass" ]
[ "'static", "void", "expand_UBSAN_PTR", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_UBSAN_PTR
KevinOConnor/klipper
valid
Os
78,166
[ "This", "should", "get", "expanded", "in", "the", "sanopt", "pass" ]
[ "'static", "void", "expand_ASAN_POISON", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_ASAN_POISON
KevinOConnor/klipper
valid
Os
78,167
[ "This", "should", "get", "expanded", "in", "the", "sanopt", "pass" ]
[ "'static", "void", "expand_ASAN_POISON_USE", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_ASAN_POISON_USE
KevinOConnor/klipper
valid
Os
78,168
[ "Return", "true", "if", "IFN", "is", "some", "form", "of", "load", "from", "memory" ]
[ "'bool", "internal_load_fn_p", "(", "internal_fn", "fn", ")", "{", "switch", "(", "fn", ")", "{", "case", "IFN_MASK_LOAD", ":", "case", "IFN_LOAD_LANES", ":", "case", "IFN_MASK_LOAD_LANES", ":", "case", "IFN_GATHER_LOAD", ":", "case", "IFN_MASK_GATHER_LOAD", ":", ...
internal_load_fn_p
KevinOConnor/klipper
valid
Os
78,169
[ "This", "should", "get", "expanded", "in", "adjust_simduid_builtins" ]
[ "'static", "void", "expand_GOMP_SIMD_LAST_LANE", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_GOMP_SIMD_LAST_LANE
KevinOConnor/klipper
valid
Os
78,170
[ "Allocate", "perlane", "storage", "and", "begin", "nonuniform", "execution", "region" ]
[ "'static", "void", "expand_GOMP_SIMT_ENTER_ALLOC", "(", "internal_fn", ",", "gcall", "*", "stmt", ")", "{", "rtx", "target", ";", "tree", "lhs", "=", "gimple_call_lhs", "(", "stmt", ")", ";", "if", "(", "lhs", ")", "target", "=", "expand_expr", "(", "lhs",...
expand_GOMP_SIMT_ENTER_ALLOC
KevinOConnor/klipper
valid
Os
78,171
[ "This", "should", "get", "expanded", "in", "adjust_simduid_builtins" ]
[ "'static", "void", "expand_GOMP_SIMD_VF", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_GOMP_SIMD_VF
KevinOConnor/klipper
valid
Os
78,172
[ "This", "should", "get", "expanded", "in", "adjust_simduid_builtins" ]
[ "'static", "void", "expand_GOMP_SIMD_ORDERED_END", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_GOMP_SIMD_ORDERED_END
KevinOConnor/klipper
valid
Os
78,173
[ "Deallocate", "perlane", "storage", "and", "leave", "nonuniform", "execution", "region" ]
[ "'static", "void", "expand_GOMP_SIMT_EXIT", "(", "internal_fn", ",", "gcall", "*", "stmt", ")", "{", "gcc_checking_assert", "(", "!", "gimple_call_lhs", "(", "stmt", ")", ")", ";", "rtx", "arg", "=", "expand_normal", "(", "gimple_call_arg", "(", "stmt", ",", ...
expand_GOMP_SIMT_EXIT
KevinOConnor/klipper
valid
Os
78,174
[ "This", "should", "get", "expanded", "in", "adjust_simduid_builtins" ]
[ "'static", "void", "expand_GOMP_SIMD_LANE", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_GOMP_SIMD_LANE
KevinOConnor/klipper
valid
Os
78,175
[ "This", "is", "expanded", "by", "oacc_device_lower", "pass" ]
[ "'static", "void", "expand_GOACC_LOOP", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_GOACC_LOOP
KevinOConnor/klipper
valid
Os
78,176
[ "This", "should", "get", "expanded", "in", "omp_device_lower", "pass" ]
[ "'static", "void", "expand_GOMP_SIMT_VF", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_GOMP_SIMT_VF
KevinOConnor/klipper
valid
Os
78,177
[ "This", "should", "get", "folded", "in", "treevectorizer" ]
[ "'static", "void", "expand_LOOP_DIST_ALIAS", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_LOOP_DIST_ALIAS
KevinOConnor/klipper
valid
Os
78,178
[ "This", "should", "get", "expanded", "in", "the", "sanopt", "pass" ]
[ "'static", "void", "expand_UBSAN_OBJECT_SIZE", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_UBSAN_OBJECT_SIZE
KevinOConnor/klipper
valid
Os
78,179
[ "Nontransparent", "predicate", "used", "in", "SIMT", "lowering", "of", "OpenMP", "\"ordered\"" ]
[ "'static", "void", "expand_GOMP_SIMT_ORDERED_PRED", "(", "internal_fn", ",", "gcall", "*", "stmt", ")", "{", "tree", "lhs", "=", "gimple_call_lhs", "(", "stmt", ")", ";", "if", "(", "!", "lhs", ")", "return", ";", "rtx", "target", "=", "expand_expr", "(", ...
expand_GOMP_SIMT_ORDERED_PRED
KevinOConnor/klipper
valid
Os
78,180
[ "The", "size", "of", "an", "OpenACC", "compute", "dimension" ]
[ "'static", "void", "expand_GOACC_DIM_SIZE", "(", "internal_fn", ",", "gcall", "*", "stmt", ")", "{", "tree", "lhs", "=", "gimple_call_lhs", "(", "stmt", ")", ";", "if", "(", "!", "lhs", ")", "return", ";", "rtx", "target", "=", "expand_expr", "(", "lhs",...
expand_GOACC_DIM_SIZE
KevinOConnor/klipper
valid
Os
78,181
[ "Helper", "function", "for", "{ADD,SUB,MUL}_OVERFLOW", "call", "stmt", "expansion" ]
[ "'static", "void", "expand_arith_overflow", "(", "enum", "tree_code", "code", ",", "gimple", "*", "stmt", ")", "{", "tree", "lhs", "=", "gimple_call_lhs", "(", "stmt", ")", ";", "if", "(", "lhs", "==", "NULL_TREE", ")", "return", ";", "tree", "arg0", "="...
expand_arith_overflow
KevinOConnor/klipper
valid
Os
78,182
[ "This", "should", "get", "expanded", "in", "the", "sanopt", "pass" ]
[ "'static", "void", "expand_ASAN_MARK", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_ASAN_MARK
KevinOConnor/klipper
valid
Os
78,183
[ "Expand", "LAUNDER", "to", "assignment,", "lhs", "arg0" ]
[ "'static", "void", "expand_LAUNDER", "(", "internal_fn", ",", "gcall", "*", "call", ")", "{", "tree", "lhs", "=", "gimple_call_lhs", "(", "call", ")", ";", "if", "(", "!", "lhs", ")", "return", ";", "expand_assignment", "(", "lhs", ",", "gimple_call_arg", ...
expand_LAUNDER
KevinOConnor/klipper
valid
Os
78,184
[ "Expand", "atomic", "bit", "test", "and", "set" ]
[ "'static", "void", "expand_ATOMIC_COMPARE_EXCHANGE", "(", "internal_fn", ",", "gcall", "*", "call", ")", "{", "expand_ifn_atomic_compare_exchange", "(", "call", ")", ";", "}'" ]
expand_ATOMIC_COMPARE_EXCHANGE
KevinOConnor/klipper
valid
Os
78,185
[ "Return", "true", "if", "IFN", "is", "some", "form", "of", "gather", "load", "or", "scatter", "store" ]
[ "'bool", "internal_gather_scatter_fn_p", "(", "internal_fn", "fn", ")", "{", "switch", "(", "fn", ")", "{", "case", "IFN_GATHER_LOAD", ":", "case", "IFN_MASK_GATHER_LOAD", ":", "case", "IFN_SCATTER_STORE", ":", "case", "IFN_MASK_SCATTER_STORE", ":", "return", "true"...
internal_gather_scatter_fn_p
KevinOConnor/klipper
valid
Os
78,186
[ "Expand", "STMT,", "which", "is", "a", "call", "to", "internal", "function", "FN" ]
[ "'void", "expand_internal_call", "(", "gcall", "*", "stmt", ")", "{", "expand_internal_call", "(", "gimple_call_internal_fn", "(", "stmt", ")", ",", "stmt", ")", ";", "}'" ]
expand_internal_call
KevinOConnor/klipper
valid
Os
78,187
[ "Expand", "atomic", "bit", "test", "and", "complement" ]
[ "'static", "void", "expand_ATOMIC_BIT_TEST_AND_COMPLEMENT", "(", "internal_fn", ",", "gcall", "*", "call", ")", "{", "expand_ifn_atomic_bit_test_and", "(", "call", ")", ";", "}'" ]
expand_ATOMIC_BIT_TEST_AND_COMPLEMENT
KevinOConnor/klipper
valid
Os
78,188
[ "This", "should", "get", "expanded", "in", "the", "tsan", "pass" ]
[ "'static", "void", "expand_TSAN_FUNC_EXIT", "(", "internal_fn", ",", "gcall", "*", ")", "{", "gcc_unreachable", "()", ";", "}'" ]
expand_TSAN_FUNC_EXIT
KevinOConnor/klipper
valid
Os
78,189
[ "This", "should", "get", "expanded", "in", "the", "lower", "pass" ]
[ "'static", "void", "expand_FALLTHROUGH", "(", "internal_fn", ",", "gcall", "*", "call", ")", "{", "error_at", "(", "gimple_location", "(", "call", ")", ",", "\"invalid", "use", "of", "attribute", "%<fallthrough%>\"", ")", ";", "}'" ]
expand_FALLTHROUGH
KevinOConnor/klipper
valid
Os
78,192
[ "Store", "the", "last", "item", "that", "was", "added", "with", "'+'" ]
[ "'void", "set_last_added_item", "(", "last_added_item_t", "type", ",", "void", "*", "item", ")", "{", "Scr", ".", "last_added_item", ".", "type", "=", "type", ";", "Scr", ".", "last_added_item", ".", "item", "=", "item", ";", "return", ";", "}'" ]
set_last_added_item
fvwmorg/fvwm
valid
O1
78,193
[ "some", "fancy", "font", "handling", "stuff" ]
[ "'void", "NewFontAndColor", "(", "FlocaleFont", "*", "flf", ",", "Pixel", "color", ",", "Pixel", "backcolor", ")", "{", "Globalgcm", "=", "GCForeground", "|", "GCBackground", ";", "if", "(", "flf", "->", "font", ")", "{", "Globalgcm", "|=", "GCFont", ";", ...
NewFontAndColor
fvwmorg/fvwm
valid
O1
78,194
[ "returns", "the", "FvwmWindow", "that", "contains", "the", "pointer", "or", "NULL", "if", "none" ]
[ "'FvwmWindow", "*", "get_pointer_fvwm_window", "(", "void", ")", "{", "int", "x", ",", "<type", "ref=\"prev\"/>", "y", ";", "Window", "win", ";", "Window", "ancestor", ";", "FvwmWindow", "*", "t", ";", "if", "(", "FQueryPointer", "(", "dpy", ",", "Scr", ...
get_pointer_fvwm_window
fvwmorg/fvwm
valid
O1
78,195
[ "Returns", "the", "current", "X", "server", "time" ]
[ "'Time", "get_server_time", "(", "void", ")", "{", "XEvent", "xev", ";", "XSetWindowAttributes", "attr", ";", "/*", "add", "PropChange", "to", "NoFocusWin", "events", "*/", "attr", ".", "event_mask", "=", "PropertyChangeMask", ";", "XChangeWindowAttributes", "(", ...
get_server_time
fvwmorg/fvwm
valid
O1
78,203
[ "callback", "for", "Prefences", "command" ]
[ "'void", "preferences_change", "(", "GtkAction", "*", "action", ",", "DenemoScriptParam", "*", "param", ")", "{", "DenemoProject", "*", "gui", "=", "Denemo", ".", "project", ";", "GtkWidget", "*", "dialog", ";", "GtkWidget", "*", "label", ";", "GtkWidget", "...
preferences_change
denemo/denemo
valid
O2
78,262
[ "Verify", "that", "the", "r_debug", "variable", "is", "visible" ]
[ "'void", "r_debugCheck", "()", "{", "assert", "(", "_r_debug", ".", "r_map", ")", ";", "}'" ]
r_debugCheck
LLNL/STAT
valid
O2
78,279
[ "Called", "by", "the", "assembly", "function", "panic_save_current_state()" ]
[ "\"void", "panic_save_current_task_state", "(", "regs_t", "*", "r", ")", "{", "/*", "*", "Clear", "the", "higher", "(unused)", "bits", "of", "the", "segment", "registers", "for", "a", "nicer", "*", "panic", "regs_t", "dump.", "*/", "r", "->", "ss", "&=", ...
panic_save_current_task_state
vvaltchev/tilck
valid
O7
78,282
[ "org_bluez_device1_set_service_data:", "(skip)", "@object:", "A", "#OrgBluezDevice1" ]
[ "'void", "org_bluez_device1_set_service_data", "(", "OrgBluezDevice1", "*", "object", ",", "GVariant", "*", "value", ")", "{", "g_object_set", "(", "G_OBJECT", "(", "object", ")", ",", "\"service-data\"", ",", "value", ",", "NULL", ")", ";", "}'" ]
org_bluez_device1_set_service_data
labapart/gattlib
valid
Os