idx
int64
func
string
target
int64
244,003
GF_Err st3d_box_read(GF_Box *s, GF_BitStream *bs) { GF_Stereo3DBox *ptr = (GF_Stereo3DBox *)s; ISOM_DECREASE_SIZE(ptr, 1) ptr->stereo_type = gf_bs_read_u8(bs); return GF_OK; }
0
314,755
cdf_read_long_sector_chain(const cdf_info_t *info, const cdf_header_t *h, const cdf_sat_t *sat, cdf_secid_t sid, size_t len, cdf_stream_t *scn) { size_t ss = CDF_SEC_SIZE(h), i, j; ssize_t nr; scn->sst_len = cdf_count_chain(sat, sid, ss); scn->sst_dirlen = len; if (scn->sst_len == (size_t)-1) return -1; s...
0
221,164
GF_Err gf_odf_write_descriptor_list_filter(GF_BitStream *bs, GF_List *descList, u8 only_tag) { GF_Err e; u32 count, i; if (! descList) return GF_OK; count = gf_list_count(descList); for ( i = 0; i < count; i++ ) { GF_Descriptor *tmp = (GF_Descriptor*)gf_list_get(descList, i); if (tmp && (tmp->tag==only_tag) )...
0
359,331
DEFUN (ip_community_list_expanded, ip_community_list_expanded_cmd, "ip community-list <100-500> (deny|permit) .LINE", IP_STR COMMUNITY_LIST_STR "Community list number (expanded)\n" "Specify community to reject\n" "Specify community to accept\n" "An ordered list as...
0
211,102
extract_archive_thread (GSimpleAsyncResult *result, GObject *object, GCancellable *cancellable) { ExtractData *extract_data; LoadData *load_data; GHashTable *checked_folders; struct archive *a; struct archive_entry *entry; int r; extr...
1
198,512
mrb_vm_exec(mrb_state *mrb, const struct RProc *proc, const mrb_code *pc) { /* mrb_assert(MRB_PROC_CFUNC_P(proc)) */ const mrb_irep *irep = proc->body.irep; const mrb_pool_value *pool = irep->pool; const mrb_sym *syms = irep->syms; mrb_code insn; int ai = mrb_gc_arena_save(mrb); struct mrb_jmpbuf *prev_jm...
1
312,391
qf_get_nth_below_entry(qfline_T *entry_arg, int n, int linewise, int *errornr) { qfline_T *entry = entry_arg; while (n-- > 0 && !got_int) { int first_errornr = *errornr; if (linewise) // Treat all the entries on the same line in this file as one entry = qf_find_last_entry_on_line(entry, error...
0
317,044
static struct smack_known *smack_from_secattr(struct netlbl_lsm_secattr *sap, struct socket_smack *ssp) { struct smack_known *skp; int found = 0; int acat; int kcat; /* * Netlabel found it in the cache. */ if ((sap->flags & NETLBL_SECATTR_CACHE) != 0) return (struct smack_known *)sap->cache->data; ...
0
200,895
call_qftf_func(qf_list_T *qfl, int qf_winid, long start_idx, long end_idx) { callback_T *cb = &qftf_cb; list_T *qftf_list = NULL; // If 'quickfixtextfunc' is set, then use the user-supplied function to get // the text to display. Use the local value of 'quickfixtextfunc' if it is // set. if (qf...
1
410,078
void hid_dump_report(struct hid_device *hid, int type, u8 *data, int size) { struct hid_report_enum *report_enum; char *buf; unsigned int i; buf = kmalloc(sizeof(char) * HID_DEBUG_BUFSIZE, GFP_ATOMIC); if (!buf) return; report_enum = hid->report_enum + type; /* dump the report */ snprintf(buf, HID_DEBUG...
0
277,667
get_text_gray_row (j_compress_ptr cinfo, cjpeg_source_ptr sinfo) /* This version is for reading text-format PGM files with any maxval */ { ppm_source_ptr source = (ppm_source_ptr) sinfo; FILE * infile = source->pub.input_file; register JSAMPROW ptr; register JSAMPLE *rescale = source->rescale; JDIMENSION col;...
0
226,028
#ifndef GPAC_DISABLE_ISOM_WRITE GF_Err dvcC_box_write(GF_Box *s, GF_BitStream *bs) { GF_Err e; GF_DOVIConfigurationBox *ptr = (GF_DOVIConfigurationBox *) s; if (!s) return GF_BAD_PARAM; e = gf_isom_box_write_header(s, bs); if (e) return e; //GF_DOVIDecoderConfigurationRecord gf_bs_write_u8(bs, ptr->DOVIConfig...
0
294,392
datetime_s__strptime(int argc, VALUE *argv, VALUE klass) { return date_s__strptime_internal(argc, argv, klass, "%FT%T%z"); }
0
242,574
get_section_vma_by_name (char *name, size_t namesz, char *buffer, size_t bufsz, PE_COFF_LOADER_IMAGE_CONTEXT *context, char **basep, size_t *sizep, EFI_IMAGE_SECTION_HEADER **sectionp) { UINTN i; char namebuf[9]; if (!name || namesz == 0 || !buffer || bufsz < namesz || !context || !basep || !si...
0
353,195
void SplashOutputDev::type3D1(GfxState *state, double wx, double wy, double llx, double lly, double urx, double ury) { T3FontCache *t3Font; SplashColor color; double xt, yt, xMin, xMax, yMin, yMax, x1, y1; int i, j; // ignore multiple d0/d1 operators if (!t3GlyphStack || t3GlyphStack->haveDx) { ...
0
225,908
GF_Err dac3_box_write(GF_Box *s, GF_BitStream *bs) { GF_Err e; GF_AC3ConfigBox *ptr = (GF_AC3ConfigBox *)s; if (ptr->cfg.is_ec3) s->type = GF_ISOM_BOX_TYPE_DEC3; e = gf_isom_box_write_header(s, bs); if (ptr->cfg.is_ec3) s->type = GF_ISOM_BOX_TYPE_DAC3; if (e) return e; return gf_odf_ac3_cfg_write_bs(&ptr->cf...
0
242,972
static uint32_t ssl_get_hs_total_len( mbedtls_ssl_context const *ssl ) { return( ( ssl->in_msg[1] << 16 ) | ( ssl->in_msg[2] << 8 ) | ssl->in_msg[3] ); }
0
212,829
*/ static void php_wddx_pop_element(void *user_data, const XML_Char *name) { st_entry *ent1, *ent2; wddx_stack *stack = (wddx_stack *)user_data; HashTable *target_hash; zend_class_entry **pce; zval *obj; zval *tmp; TSRMLS_FETCH(); /* OBJECTS_FIXME */ if (stack->top == 0) { return; } if (!...
1
275,478
njs_vm_init(njs_vm_t *vm) { njs_int_t ret; njs_frame_t *frame; frame = (njs_frame_t *) njs_function_frame_alloc(vm, NJS_FRAME_SIZE); if (njs_slow_path(frame == NULL)) { njs_memory_error(vm); return NJS_ERROR; } frame->exception.catch = NULL; frame->exception.next = NULL...
0
263,390
Status BatchToSpaceShapeHelper(InferenceContext* c, ShapeHandle input_shape, ShapeHandle block_shape_shape, const Tensor* block_shape_t, ShapeHandle crops_shape, const Tensor* crops_t) { if (c->Rank(block_shape_shape) != 1) {...
0
224,169
explicit MapUnstageNoKeyOp(OpKernelConstruction* ctx) : OpKernel(ctx) {}
0
255,101
int unit_name_path_escape(const char *f, char **ret) { _cleanup_free_ char *p = NULL; char *s; assert(f); assert(ret); p = strdup(f); if (!p) return -ENOMEM; path_simplify(p, false); if (empty_or_root(p)) s = strdup("-")...
0
462,576
void controller::set_view(view * vv) { v = vv; }
0
226,067
GF_Box *enca_box_new() { ISOM_DECL_BOX_ALLOC(GF_MPEGAudioSampleEntryBox, GF_ISOM_BOX_TYPE_ENCA); gf_isom_audio_sample_entry_init((GF_AudioSampleEntryBox*)tmp); return (GF_Box *)tmp; }
0
200,831
set_routerstatus_from_routerinfo(routerstatus_t *rs, routerinfo_t *ri, time_t now, int naming, int listbadexits, int listbaddirs, int vote_on_hsdirs) { int unstable_version = !tor_version_as_new_as(ri->platform,"0.1...
1
264,376
int num_files() const { return sss_.size(); }
0
225,032
pqFreeCommandQueue(PGcmdQueueEntry *queue) { while (queue != NULL) { PGcmdQueueEntry *cur = queue; queue = cur->next; if (cur->query) free(cur->query); free(cur); } }
0
225,031
PQclientEncoding(const PGconn *conn) { if (!conn || conn->status != CONNECTION_OK) return -1; return conn->client_encoding; }
0
234,216
debuginfod_fetch_separate_debug_info (struct dwarf_section * section, char ** filename, void * file) { size_t build_id_len; unsigned char * build_id; if (strcmp (section->uncompressed_name, ".gnu_debuglink") == 0) { /* Get the ...
0
393,526
static SQInteger table_getdelegate(HSQUIRRELVM v) { return SQ_SUCCEEDED(sq_getdelegate(v,-1))?1:SQ_ERROR; }
0
445,996
encryption_copy_progress_cb (goffset current_num_bytes, goffset total_num_bytes, gpointer user_data) { EncryptData *edata = user_data; fr_archive_progress (edata->new_archive, (double) current_num_bytes / total_num_bytes); }
0
500,673
ssize_t sftp_read(sftp_file handle, void *buf, size_t count) { sftp_session sftp = handle->sftp; sftp_message msg = NULL; sftp_status_message status; ssh_string datastring; ssh_buffer buffer; int id; if (handle->eof) { return 0; } buffer = ssh_buffer_new(); if (buffer == NULL) { ssh_set_er...
0
443,705
utf32le_is_mbc_ambiguous(OnigCaseFoldType flag, const UChar** pp, const UChar* end) { const UChar* p = *pp; (*pp) += 4; if (*(p+1) == 0 && *(p+2) == 0 && *(p+3) == 0) { int c, v; if (*p == 0xdf && (flag & INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR) != 0) { return TRUE; } c = *p; v = ONIGE...
0
317,232
static int smack_audit_rule_known(struct audit_krule *krule) { struct audit_field *f; int i; for (i = 0; i < krule->field_count; i++) { f = &krule->fields[i]; if (f->type == AUDIT_SUBJ_USER || f->type == AUDIT_OBJ_USER) return 1; } return 0; }
0
436,151
static int io_poll_update(struct io_kiocb *req, unsigned int issue_flags) { struct io_ring_ctx *ctx = req->ctx; struct io_kiocb *preq; bool completing; int ret; spin_lock_irq(&ctx->completion_lock); preq = io_poll_find(ctx, req->poll_update.old_user_data, true); if (!preq) { ret = -ENOENT; goto err; } i...
0
95,901
void AddProductSpecificWorkItems(const InstallationState& original_state, const InstallerState& installer_state, const FilePath& setup_path, const Version& new_version, WorkItemList* list)...
0
261,766
void RtmpProtocol::sendPingResponse(uint32_t time_stamp) { sendUserControl(CONTROL_PING_RESPONSE, time_stamp); }
0
468,376
g_socket_client_connect_to_host_finish (GSocketClient *client, GAsyncResult *result, GError **error) { return g_socket_client_connect_finish (client, result, error); }
0
373,543
ipf_v6_key_extract(struct dp_packet *pkt, ovs_be16 dl_type, uint16_t zone, struct ipf_list_key *key, uint16_t *start_data_byte, uint16_t *end_data_byte, bool *ff, bool *lf) { const struct ovs_16aligned_ip6_hdr *l3 = dp_packet_l3(pkt); uint8_t nw_frag = 0; uint8_t nw_pro...
0
477,382
R_API char *r_bin_java_print_methodhandle_cp_stringify(RBinJavaCPTypeObj *obj) { ut32 size = 255, consumed = 0; char *value = malloc (size); ut8 ref_kind = obj->info.cp_method_handle.reference_kind; if (value) { memset (value, 0, size); consumed = snprintf (value, size, "%d.0x%04"PFMT64x ".%s.%s.%d", obj->me...
0
225,561
explicit FractionalMaxPoolGradOp(OpKernelConstruction* context) : OpKernel(context) { OP_REQUIRES_OK(context, context->GetAttr("overlapping", &overlapping_)); }
0
292,608
int puma_parser_finish(puma_parser *parser) { if (puma_parser_has_error(parser) ) { return -1; } else if (puma_parser_is_finished(parser) ) { return 1; } else { return 0; } }
0
247,356
static void pgpPrtVal(const char * pre, pgpValTbl vs, uint8_t val) { if (!_print) return; if (pre && *pre) fprintf(stderr, "%s", pre); fprintf(stderr, "%s(%u)", pgpValStr(vs, val), (unsigned)val); }
0
437,336
set_sunday_quick_search_skip_table(UChar* s, UChar* end, OnigEncoding enc, UChar skip[], int* roffset) { int i, len, offset; offset = 1; if (ONIGENC_MBC_MINLEN(enc) > 1) { UChar* p = s; while (1) { len = enclen(enc, p); if (p + len >= end) { UChar* q...
0
225,083
parseServiceInfo(PQconninfoOption *options, PQExpBuffer errorMessage) { const char *service = conninfo_getval(options, "service"); char serviceFile[MAXPGPATH]; char *env; bool group_found = false; int status; struct stat stat_buf; /* * We have to special-case the environment variable PGSERVICE here, si...
0
279,952
getfile( int fnum, char_u *ffname_arg, char_u *sfname_arg, int setpm, linenr_T lnum, int forceit) { char_u *ffname = ffname_arg; char_u *sfname = sfname_arg; int other; int retval; char_u *free_me = NULL; if (text_locked()) return GETFILE_ERROR; if (curbuf_lock...
0
317,030
static int selinux_inode_create(struct inode *dir, struct dentry *dentry, umode_t mode) { return may_create(dir, dentry, SECCLASS_FILE); }
0
445,871
_window_started_loading_file (FrWindow *window, GFile *file) { char *description; description = get_action_description (window, FR_ACTION_LOADING_ARCHIVE, file); fr_archive_message_cb (NULL, description, window); g_free (description); }
0
234,795
static int chunk_devid_filter(struct extent_buffer *leaf, struct btrfs_chunk *chunk, struct btrfs_balance_args *bargs) { struct btrfs_stripe *stripe; int num_stripes = btrfs_chunk_num_stripes(leaf, chunk); int i; for (i = 0; i < num_stripes; i++) { stripe = btrfs_stripe_nr(chunk, i); if (btrf...
0
197,760
TfLiteStatus EvalGatherNd(TfLiteContext* context, const TfLiteTensor* params, const TfLiteTensor* indices, TfLiteTensor* output) { switch (params->type) { case kTfLiteFloat32: return GatherNd<float, IndicesT>(params, indices, output); case kTfLiteUInt8: return GatherNd<ui...
1
317,200
static int __net_init selinux_nf_register(struct net *net) { return nf_register_net_hooks(net, selinux_nf_ops, ARRAY_SIZE(selinux_nf_ops)); }
0
373,638
estack_sfile(estack_arg_T which UNUSED) { estack_T *entry; #ifdef FEAT_EVAL garray_T ga; size_t len; int idx; etype_T last_type = ETYPE_SCRIPT; char *type_name; #endif entry = ((estack_T *)exestack.ga_data) + exestack.ga_len - 1; #ifdef FEAT_EVAL if (which == ESTACK_SFILE && entry->es_...
0
244,147
GF_Err vmhd_box_size(GF_Box *s) { GF_VideoMediaHeaderBox *ptr = (GF_VideoMediaHeaderBox *)s; ptr->size += 8; return GF_OK; }
0
404,731
void put_files_struct(struct files_struct *files) { if (atomic_dec_and_test(&files->count)) { struct fdtable *fdt = close_files(files); /* free the arrays if they are not embedded */ if (fdt != &files->fdtab) __free_fdtable(fdt); kmem_cache_free(files_cachep, files); } }
0
221,468
flatpak_run_get_minimal_env (gboolean devel, gboolean use_ld_so_cache) { GPtrArray *env_array; static const char * const copy[] = { "PWD", "GDMSESSION", "XDG_CURRENT_DESKTOP", "XDG_SESSION_DESKTOP", "DESKTOP_SESSION", "EMAIL_ADDRESS", "HOME", "HOSTNAME", "LOGNAME", "REAL_NAME...
0
309,884
_nc_screen_resume(void) { NCURSES_SP_NAME(_nc_screen_resume) (CURRENT_SCREEN); }
0
90,862
void NotifyOriginInUse(const GURL& origin) { quota_manager_->NotifyOriginInUse(origin); }
0
481,280
static int mlx5_fpga_conn_create_wq(struct mlx5_fpga_conn *conn, void *qpc) { struct mlx5_fpga_device *fdev = conn->fdev; struct mlx5_core_dev *mdev = fdev->mdev; struct mlx5_wq_param wqp; wqp.buf_numa_node = mdev->priv.numa_node; wqp.db_numa_node = mdev->priv.numa_node; return mlx5_wq_qp_create(mdev, &wqp, qp...
0
362,313
static void usb_audio_make_shortname(struct usb_device *dev, struct snd_usb_audio *chip, const struct snd_usb_audio_quirk *quirk) { struct snd_card *card = chip->card; if (quirk && quirk->product_name && *quirk->product_name) { strlcpy(card->shortname, quirk->product_name, sizeof(card->shortna...
0
90,154
const std::string& IPAddress() const { const Network* active = active_network(); if (active != NULL) return active->ip_address(); if (ethernet_) return ethernet_->ip_address(); static std::string null_address("0.0.0.0"); return null_address; }
0
468,384
connection_attempt_ref (ConnectionAttempt *attempt) { g_ref_count_inc (&attempt->ref); return attempt; }
0
513,313
make_cond_for_table_from_pred(THD *thd, Item *root_cond, Item *cond, table_map tables, table_map used_table, int join_tab_idx_arg, bool exclude_expensive_cond __attribute__ ((unused)), ...
0
244,278
GF_Err tsro_box_size(GF_Box *s) { s->size += 4; return GF_OK; }
0
281,614
void CLASS apply_tiff() { int max_samp=0, raw=-1, thm=-1, i; struct jhead jh; thumb_misc = 16; if (thumb_offset) { fseek (ifp, thumb_offset, SEEK_SET); if (ljpeg_start (&jh, 1)) { if((unsigned)jh.bits<17 && (unsigned)jh.wide < 0x10000 && (unsigned)jh.high < 0x10000) { thumb_misc...
0
310,152
has_mouse(void) { return _nc_has_mouse(CURRENT_SCREEN); }
0
301,383
static NTSTATUS vfswrap_get_nt_acl(vfs_handle_struct *handle, const char *name, uint32 security_info, TALLOC_CTX *mem_ctx, struct security_descriptor **ppdesc) { NTSTATUS result; START_PROFILE(get_nt_acl); result = posix_get_nt_acl(handle->conn, name, security_info, mem_ctx, ppdesc...
0
384,841
trans_characters( char_u *buf, int bufsize) { int len; // length of string needing translation int room; // room in buffer after string char_u *trs; // translated character int trs_len; // length of trs[] len = (int)STRLEN(buf); room = bufsize - len; while (*buf != 0) { ...
0
326,617
create_dir(struct archive_write_disk *a, char *path) { struct stat st; struct fixup_entry *le; char *slash, *base; mode_t mode_final, mode; int r; /* Check for special names and just skip them. */ slash = strrchr(path, '/'); if (slash == NULL) base = path; else base = slash + 1; if (base[0] == '\0' || ...
0
512,781
Item_cache(THD *thd, const Type_handler *handler): Item(thd), Type_handler_hybrid_field_type(handler), example(0), cached_field(0), value_cached(0), used_table_map(0) { maybe_null= 1; null_value= 1; null_value_inside= true; }
0
225,827
GF_Err tims_box_size(GF_Box *s) { s->size += 4; return GF_OK; }
0
261,241
static int SN_WillMessage(MqttClient *client, SN_Will *will) { int rc, len; /* Validate required arguments */ if (client == NULL) { return MQTT_CODE_ERROR_BAD_ARG; } #ifdef WOLFMQTT_MULTITHREAD rc = wm_SemLock(&client->lockClient); if (rc == 0) { /* inform other threads of expe...
0
427,158
static void localfunc (LexState *ls) { expdesc b; FuncState *fs = ls->fs; int fvar = fs->nactvar; /* function's variable index */ new_localvar(ls, str_checkname(ls)); /* new local variable */ adjustlocalvars(ls, 1); /* enter its scope */ body(ls, &b, 0, ls->linenumber); /* function created in next regis...
0
512,448
void Item_func_decode_oracle::print(String *str, enum_query_type query_type) { str->append(func_name()); str->append('('); args[0]->print(str, query_type); for (uint i= 1, count= when_count() ; i <= count; i++) { str->append(','); args[i]->print(str, query_type); str->append(','); args[i+count...
0
402,663
handle_kill_daemon(context *ctx UNUSED, struct pollfd *pollfd UNUSED, socklen_t size UNUSED) { should_exit = 1; }
0
376,676
query (void) { static const GimpParamDef load_args[] = { { GIMP_PDB_INT32, "run-mode", "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }" }, { GIMP_PDB_STRING, "filename", "The name of the file to load" }, { GIMP_PDB_STRING, "raw-filename", "The name of the file to load" } }; st...
0
424,973
static int iwl_pcie_load_firmware_chunk(struct iwl_trans *trans, u32 dst_addr, dma_addr_t phy_addr, u32 byte_cnt) { struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); unsigned long flags; int ret; trans_pcie->ucode_write_complete = false; if (!iwl_trans_grab_nic_access(trans, &flags))...
0
338,060
BinaryConsts::ASTNodes WasmBinaryBuilder::readExpression(Expression*& curr) { if (pos == endOfFunction) { throwError("Reached function end without seeing End opcode"); } BYN_TRACE("zz recurse into " << ++depth << " at " << pos << std::endl); readNextDebugLocation(); std::set<Function::DebugLocation> currD...
0
221,398
int svm_allocate_nested(struct vcpu_svm *svm) { struct page *vmcb02_page; if (svm->nested.initialized) return 0; vmcb02_page = alloc_page(GFP_KERNEL_ACCOUNT | __GFP_ZERO); if (!vmcb02_page) return -ENOMEM; svm->nested.vmcb02.ptr = page_address(vmcb02_page); svm->nested.vmcb02.pa = __sme_set(page_to_pfn(vmcb...
0
409,509
starttermcap(void) { if (full_screen && !termcap_active) { MAY_WANT_TO_LOG_THIS; out_str(T_TI); // start termcap mode out_str(T_CTI); // start "raw" mode out_str(T_KS); // start "keypad transmit" mode out_str(T_BE); // enable bracketed paste mode #if defined(UNIX) || defined(VMS) // Enable xterm...
0
512,688
int Arg_comparator::compare_time() { THD *thd= current_thd; longlong val1= (*a)->val_time_packed(thd); if (!(*a)->null_value) { longlong val2= (*b)->val_time_packed(thd); if (!(*b)->null_value) return compare_not_null_values(val1, val2); } if (set_null) owner->null_value= true; return -1...
0
291,813
static int create_con_cq_qp(struct rtrs_clt_con *con) { struct rtrs_clt_path *clt_path = to_clt_path(con->c.path); u32 max_send_wr, max_recv_wr, cq_num, max_send_sge, wr_limit; int err, cq_vector; struct rtrs_msg_rkey_rsp *rsp; lockdep_assert_held(&con->con_mutex); if (con->c.cid == 0) { max_send_sge = 1; /*...
0
338,038
uint32_t WasmBinaryBuilder::getInt32() { BYN_TRACE("<==\n"); auto ret = uint32_t(getInt16()); ret |= uint32_t(getInt16()) << 16; BYN_TRACE("getInt32: " << ret << "/0x" << std::hex << ret << std::dec << " ==>\n"); return ret; }
0
244,274
GF_Box *fecr_box_new() { ISOM_DECL_BOX_ALLOC(FECReservoirBox, GF_ISOM_BOX_TYPE_FECR); return (GF_Box *)tmp; }
0
436,034
static int io_remove_buffers(struct io_kiocb *req, unsigned int issue_flags) { struct io_provide_buf *p = &req->pbuf; struct io_ring_ctx *ctx = req->ctx; struct io_buffer *head; int ret = 0; bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK; io_ring_submit_lock(ctx, !force_nonblock); lockdep_assert_held(...
0
462,245
PJ_DEF(pj_status_t) pj_stun_msg_init( pj_stun_msg *msg, unsigned msg_type, pj_uint32_t magic, const pj_uint8_t tsx_id[12]) { PJ_ASSERT_RETURN(msg && msg_type, PJ_EINVAL); msg->hdr.type = (pj_uint16_t) msg_type; msg->hdr.length = 0; msg->hdr.magic = magic; msg->attr_cou...
0
316,963
static int selinux_inode_getxattr(struct dentry *dentry, const char *name) { const struct cred *cred = current_cred(); return dentry_has_perm(cred, dentry, FILE__GETATTR); }
0
415,199
cmd_writecert (assuan_context_t ctx, char *line) { ctrl_t ctrl = assuan_get_pointer (ctx); int rc; char *certid; unsigned char *certdata; size_t certdatalen; if ( IS_LOCKED (ctrl) ) return gpg_error (GPG_ERR_LOCKED); line = skip_options (line); if (!*line) return set_error (GPG_ERR_ASS_PARAME...
0
502,717
int (*SSL_CTX_get_client_cert_cb(SSL_CTX *ctx)) (SSL *ssl, X509 **x509, EVP_PKEY **pkey) { return ctx->client_cert_cb; }
0
312,417
qf_get_next_str_line(qfstate_T *state) { // Get the next line from the supplied string char_u *p_str = state->p_str; char_u *p; int len; if (*p_str == NUL) // Reached the end of the string return QF_END_OF_INPUT; p = vim_strchr(p_str, '\n'); if (p != NULL) len = (int)(p - p_str) + 1; ...
0
253,530
smb2_adjust_credits(struct TCP_Server_Info *server, struct cifs_credits *credits, const unsigned int payload_size) { int new_val = DIV_ROUND_UP(payload_size, SMB2_MAX_BUFFER_SIZE); int scredits, in_flight; if (!credits->value || credits->value == new_val) return 0; if (credits->value < new_val) { ...
0
226,277
#ifdef GF_ENABLE_CTRN static void ctrn_write_sample_flags(GF_BitStream *bs, u32 flags, u32 field_size) { if (!field_size) return; if (field_size==8) flags = flags>>24; else if (field_size==16) flags = flags>>16; gf_bs_write_int(bs, flags, field_size);
0
353,138
void SplashOutputDev::fill(GfxState *state) { if (state->getFillColorSpace()->isNonMarking()) { return; } setOverprintMask(state->getFillColorSpace(), state->getFillOverprint(), state->getOverprintMode(), state->getFillColor()); SplashPath path = convertPath(state, state->getPath(), true); splash->fi...
0
512,691
bool cmp_item_row::alloc_comparators(THD *thd, uint cols) { if (comparators) { DBUG_ASSERT(cols == n); return false; } return !(comparators= (cmp_item **) thd->calloc(sizeof(cmp_item *) * (n= cols))); }
0
230,969
mrb_env_unshare(mrb_state *mrb, struct REnv *e) { if (e == NULL) return; else { size_t len = (size_t)MRB_ENV_LEN(e); mrb_value *p; if (!MRB_ENV_ONSTACK_P(e)) return; if (e->cxt != mrb->c) return; if (e == mrb_vm_ci_env(mrb->c->cibase)) return; /* for mirb */ p = (mrb_value *)mrb_malloc(mrb,...
0
261,989
static void conncache_remove_bundle(struct conncache *connc, struct connectbundle *bundle) { struct Curl_hash_iterator iter; struct Curl_hash_element *he; if(!connc) return; Curl_hash_start_iterate(&connc->hash, &iter); he = Curl_hash_next_element(&iter); while(he)...
0
236,183
GF_Err hclr_box_read(GF_Box *s, GF_BitStream *bs) { GF_TextHighlightColorBox*ptr = (GF_TextHighlightColorBox*)s; ISOM_DECREASE_SIZE(ptr, 4) ptr->hil_color = gpp_read_rgba(bs); return GF_OK; }
0
224,985
parse_int_param(const char *value, int *result, PGconn *conn, const char *context) { char *end; long numval; Assert(value != NULL); *result = 0; /* strtol(3) skips leading whitespaces */ errno = 0; numval = strtol(value, &end, 10); /* * If no progress was done during the parsing or an error happen...
0
272,337
generate_common_name(cms_context *cms, SECItem *der, char *cn_str) { CommonName cn; SECItem cn_item; int rc; rc = generate_object_id(cms, &cn.oid, SEC_OID_AVA_COMMON_NAME); if (rc < 0) return rc; rc = generate_string(cms, &cn.string, cn_str); if (rc < 0) return rc; void *ret; ret = SEC_ASN1EncodeItem(cms...
0
234,181
display_gdb_index (struct dwarf_section *section, void *file ATTRIBUTE_UNUSED) { unsigned char *start = section->start; uint32_t version; uint32_t cu_list_offset, tu_list_offset; uint32_t address_table_offset, symbol_table_offset, constant_pool_offset; unsigned int cu_list_elements, tu_list_elements; u...
0
448,583
next_int (FILE *fstream) { int ch; int value = 0; int gotone = 0; int done = 0; /* loop, accumulate hex value until find delimiter skip any initial delimiters found in read stream */ while (!done) { ch = getc (fstream); if (ch == EOF) { value = -1; done++; } else { /* trim high bits, che...
0