idx
int64
func
string
target
int64
344,792
get_u32_le(const void *vp) { const u_char *p = (const u_char *)vp; u_int32_t v; v = (u_int32_t)p[0]; v |= (u_int32_t)p[1] << 8; v |= (u_int32_t)p[2] << 16; v |= (u_int32_t)p[3] << 24; return (v); }
0
252,448
static MZ_FORCEINLINE mz_bool mz_zip_array_ensure_room(mz_zip_archive *pZip, mz_zip_array *pArray, size_t n) { return mz_zip_array_reserve(pZip, pArray, pArray->m_size + n, MZ_TRUE); }
0
225,006
defaultNoticeProcessor(void *arg, const char *message) { (void) arg; /* not used */ /* Note: we expect the supplied string to end with a newline already. */ fprintf(stderr, "%s", message); }
0
445,875
fr_window_init (FrWindow *window) { window->priv = g_new0 (FrWindowPrivate, 1); window->priv->update_dropped_files = FALSE; window->priv->filter_mode = FALSE; window->priv->use_progress_dialog = TRUE; window->priv->batch_title = NULL; window->priv->cancellable = g_cancellable_new (); window->priv->compression = ...
0
210,283
vhost_user_set_inflight_fd(struct virtio_net **pdev, struct vhu_msg_context *ctx, int main_fd __rte_unused) { uint64_t mmap_size, mmap_offset; uint16_t num_queues, queue_size; struct virtio_net *dev = *pdev; uint32_t pervq_inflight_size; struct vhost_virtqueue *vq; void *addr; int fd, i; int numa_no...
1
222,843
Status GraphProperties::InferDynamically(Cluster* cluster) { TF_RETURN_IF_ERROR(cluster->Initialize(item_)); // Runs the model once to collect the shapes in the cost model. RunMetadata metadata; TF_RETURN_IF_ERROR( cluster->Run(item_.graph, item_.feed, item_.fetch, &metadata)); return InferFromCostGra...
0
261,750
RtmpProtocol::~RtmpProtocol() { reset(); }
0
310,156
NCURSES_SP_NAME(_nc_mvcur) (NCURSES_SP_DCLx int yold, int xold, int ynew, int xnew) { int rc; rc = _nc_real_mvcur(NCURSES_SP_ARGx yold, xold, ynew, xnew, NCURSES_SP_NAME(_nc_outch), TRUE); /* * With the terminal-driver, we cannot distinguish between internal and * external call...
0
387,860
bool InstanceKlass::supers_have_passed_fingerprint_checks() { if (java_super() != NULL && !java_super()->has_passed_fingerprint_check()) { ResourceMark rm; log_trace(class, fingerprint)("%s : super %s not fingerprinted", external_name(), java_super()->external_name()); return false; } Array<Klass*>* ...
0
431,631
static MagickBooleanType WriteCINImage(const ImageInfo *image_info,Image *image, ExceptionInfo *exception) { char timestamp[MagickPathExtent]; const char *value; CINInfo cin; const StringInfo *profile; MagickBooleanType status; MagickOffsetType offset; QuantumInfo *quan...
0
220,196
void Graph::RecycleEdge(const Edge* e) { free_edges_.push_back(const_cast<Edge*>(e)); }
0
261,738
const char* RtmpProtocol::handle_rtmp(const char *data, size_t len) { auto ptr = data; while (len) { size_t offset = 0; auto header = (RtmpHeader *) ptr; auto header_len = HEADER_LENGTH[header->fmt]; _now_chunk_id = header->chunk_id; switch (_now_chunk_id) { c...
0
90,902
void ClientUsageTracker::NoopHostUsageCallback( const std::string& host, StorageType type, int64 usage) { }
0
231,041
BaseType_t xQueueCRReceive( QueueHandle_t xQueue, void * pvBuffer, TickType_t xTicksToWait ) { BaseType_t xReturn; Queue_t * const pxQueue = xQueue; /* If the queue is already empty we may have to block. A critical ...
0
195,398
static int vidioc_querycap(struct file *file, void *priv, struct v4l2_capability *cap) { struct v4l2_loopback_device *dev = v4l2loopback_getdevice(file); int labellen = (sizeof(cap->card) < sizeof(dev->card_label)) ? sizeof(cap->card) : sizeof(dev->card_label); int device_nr = ((struct v4l...
1
222,507
void AppendTo(bool first, string* s) const { absl::string_view v; bool add_escaped = false; if ((value_op_ == kCEscape) && NeedsEscaping(value_)) { // Use CEscape call below add_escaped = true; } else { // Add raw value contents directly v = value_; } if (key_suffix_ >=...
0
90,911
virtual ~GatherGlobalUsageTask() {}
0
235,256
static void setup_buffer(uint8_t *buf, unsigned int seed, int len) { int i; srandom(seed); for (i=0;i<len;i++) buf[i] = random(); }
0
432,149
PipelineD::buildInnerQueryExecutor(const CollectionPtr& collection, const NamespaceString& nss, const AggregateCommandRequest* aggRequest, Pipeline* pipeline) { auto expCtx = pipeline->getContext(); // We w...
0
459,087
int tcf_qevent_dump(struct sk_buff *skb, int attr_name, struct tcf_qevent *qe) { if (!qe->info.block_index) return 0; return nla_put_u32(skb, attr_name, qe->info.block_index); }
0
90,751
void QuotaManager::DeleteOriginData( const GURL& origin, StorageType type, StatusCallback* callback) { LazyInitialize(); if (origin.is_empty() || clients_.empty()) { callback->Run(kQuotaStatusOk); delete callback; return; } OriginDataDeleter* deleter = new OriginDataDeleter(this, origin,...
0
281,051
static inline int xfrm_bydst_should_resize(struct net *net, int dir, int *total) { unsigned int cnt = net->xfrm.policy_count[dir]; unsigned int hmask = net->xfrm.policy_bydst[dir].hmask; if (total) *total += cnt; if ((hmask + 1) < xfrm_policy_hashmax && cnt > hmask) return 1; return 0; }
0
275,515
njs_vm_start(njs_vm_t *vm) { njs_int_t ret; ret = njs_module_load(vm); if (njs_slow_path(ret != NJS_OK)) { return ret; } ret = njs_vmcode_interpreter(vm, vm->start, NULL, NULL); return (ret == NJS_ERROR) ? NJS_ERROR : NJS_OK; }
0
247,149
void gf_fs_print_unused_args(GF_FilterSession *fsess, const char *ignore_args) { u32 idx = 0; char *argname; u32 argtype; while (1) { Bool found = GF_FALSE; const char *loc_arg; if (gf_fs_enum_unmapped_options(fsess, &idx, &argname, &argtype)==GF_FALSE) break; loc_arg = ignore_args; while (loc_arg) {...
0
229,327
Status AddOrExecuteNode(core::RefCountPtr<KernelAndDevice> kernel, EagerOperation* op, TensorHandle** retvals) { EagerExecutor& executor = op->Executor(); EagerContext& ctx = op->EagerContext(); GraphCollector* graph_collector = nullptr; if (ctx.ShouldStoreGraphs()) { graph_collector...
0
256,423
static void pjmedia_rtcp_fb_cap_dup(pj_pool_t *pool, pjmedia_rtcp_fb_cap *dst, const pjmedia_rtcp_fb_cap *src) { pj_strdup(pool, &dst->codec_id, &src->codec_id); dst->type = src->type; pj_strdup(pool, &dst->type_name, &src->type_name); pj_strdup(pool, &dst->param, &src->param); }
0
225,694
GF_Box *lsrc_box_new() { ISOM_DECL_BOX_ALLOC(GF_LASERConfigurationBox, GF_ISOM_BOX_TYPE_LSRC); return (GF_Box *)tmp;
0
346,453
estack_top_is_ufunc(ufunc_T *ufunc, long lnum) { estack_T *entry; if (exestack.ga_len == 0) return FALSE; entry = ((estack_T *)exestack.ga_data) + exestack.ga_len - 1; return entry->es_type == ETYPE_UFUNC && STRCMP( entry->es_name, ufunc->uf_name_exp != NULL ? ufunc->uf_name_exp : ufunc->uf_n...
0
424,976
static void iwl_pcie_map_rx_causes(struct iwl_trans *trans) { struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans); u32 offset = trans_pcie->shared_vec_mask & IWL_SHARED_IRQ_FIRST_RSS ? 1 : 0; u32 val, idx; /* * The first RX queue - fallback queue, which is designated for * management frame, c...
0
226,994
IRC_PROTOCOL_CALLBACK(733) { char *pos_args; IRC_PROTOCOL_MIN_ARGS(3); pos_args = (argc > 3) ? ((argv_eol[3][0] == ':') ? argv_eol[3] + 1 : argv_eol[3]) : NULL; weechat_printf_date_tags ( irc_msgbuffer_get_target_buffer ( server, NULL, command, "monitor", NULL), da...
0
424,954
void iwl_pcie_alloc_fw_monitor(struct iwl_trans *trans, u8 max_power) { if (!max_power) { /* default max_power is maximum */ max_power = 26; } else { max_power += 11; } if (WARN(max_power > 26, "External buffer size for monitor is too big %d, check the FW TLV\n", max_power)) return; /* * This fun...
0
225,037
PQsetClientEncoding(PGconn *conn, const char *encoding) { char qbuf[128]; static const char query[] = "set client_encoding to '%s'"; PGresult *res; int status; if (!conn || conn->status != CONNECTION_OK) return -1; if (!encoding) return -1; /* Resolve special "auto" value from the locale */ if (strc...
0
253,567
smb21_is_read_op(__u32 oplock) { return (oplock & SMB2_LEASE_READ_CACHING_HE) && !(oplock & SMB2_LEASE_WRITE_CACHING_HE); }
0
256,952
static Status ProcessDimensions( const OpInputList& inputs, const gtl::InlinedVector<bool, 2>& input_has_ellipsis, const bool output_has_ellipsis, OperandLabels* input_labels, Labels* output_labels, std::vector<DimensionType>* label_types, OperandLabelCounts* input_label_counts, LabelCou...
0
513,204
void sync_dynamic_session_variables(THD* thd, bool global_lock) { uint idx; thd->variables.dynamic_variables_ptr= (char*) my_realloc(thd->variables.dynamic_variables_ptr, global_variables_dynamic_size, MYF(MY_WME | MY_FAE | MY_ALLOW_ZERO_PTR)); if (global_lock) mysql_mutex_...
0
412,104
dnsc_key_to_fingerprint(char fingerprint[80U], const uint8_t * const key) { const size_t fingerprint_size = 80U; size_t fingerprint_pos = (size_t) 0U; size_t key_pos = (size_t) 0U; for (;;) { assert(fingerprint_size > fingerprint_pos); snprintf(&fingerprint[fingerprint_pos],...
0
197,826
bool IsConstantFoldable( const Node* n, const std::unordered_map<string, std::vector<PartialTensorShape>>* shape_map, const std::function<bool(const Node*)>& consider, int64_t max_constant_size_in_bytes, std::unordered_map<const Node*, std::vector<Tensor>>* shape_replacement_map) { ...
1
369,913
proc_map_files_instantiate(struct inode *dir, struct dentry *dentry, struct task_struct *task, const void *ptr) { const struct file *file = ptr; struct proc_inode *ei; struct inode *inode; if (!file) return ERR_PTR(-ENOENT); inode = proc_pid_make_inode(dir->i_sb, task); if (!inode) return ERR_PTR(-ENO...
0
281,147
static unsigned int xfrm_mtu(const struct dst_entry *dst) { unsigned int mtu = dst_metric_raw(dst, RTAX_MTU); return mtu ? : dst_mtu(dst->path); }
0
513,198
void wsrep_plugins_post_init() { THD *thd; I_List_iterator<THD> it(threads); while ((thd= it++)) { if (IF_WSREP(thd->wsrep_applier,1)) { // Save options_bits as it will get overwritten in plugin_thdvar_init() ulonglong option_bits_saved= thd->variables.option_bits; plugin_thdvar_init...
0
487,657
asmlinkage long sys_setuid(uid_t uid) { int old_euid = current->euid; int old_ruid, old_suid, new_suid; int retval; retval = security_task_setuid(uid, (uid_t)-1, (uid_t)-1, LSM_SETID_ID); if (retval) return retval; old_ruid = current->uid; old_suid = current->suid; new_suid = old_suid; if (capable(CAP_SE...
0
309,818
__nc_putp_flush(SCREEN *sp, const char *name, const char *value) { int rc = __nc_putp(sp, name, value); if (rc != ERR) { NCURSES_SP_NAME(_nc_flush) (sp); } return rc; }
0
333,097
pim_info(nfa_pim_T *pim) { static char buf[30]; if (pim == NULL || pim->result == NFA_PIM_UNUSED) buf[0] = NUL; else { sprintf(buf, " PIM col %d", REG_MULTI ? (int)pim->end.pos.col : (int)(pim->end.ptr - rex.input)); } return buf; }
0
230,135
static json_t * generate_new_credential(struct config_module * config, json_t * j_params, const char * username) { json_t * j_query, * j_return; char * username_escaped, * mod_name_escaped, * username_clause, * challenge_hash; int res; size_t challenge_b64_len, challenge_len = (size_t)json_integer_value(json_ob...
0
238,616
static void sort_kfunc_descs_by_imm(struct bpf_prog *prog) { struct bpf_kfunc_desc_tab *tab; tab = prog->aux->kfunc_tab; if (!tab) return; sort(tab->descs, tab->nr_descs, sizeof(tab->descs[0]), kfunc_desc_cmp_by_imm, NULL); }
0
317,148
static int sb_check_xattr_support(struct super_block *sb) { struct superblock_security_struct *sbsec = sb->s_security; struct dentry *root = sb->s_root; struct inode *root_inode = d_backing_inode(root); u32 sid; int rc; /* * Make sure that the xattr handler exists and that no * error other than -ENODATA is r...
0
244,343
GF_Err ainf_box_size(GF_Box *s) { GF_AssetInformationBox *ptr = (GF_AssetInformationBox *) s; s->size += 4 + (ptr->APID ? strlen(ptr->APID) : 0 ) + 1; return GF_OK; }
0
376,350
gpg_ctx_add_recipient (struct _GpgCtx *gpg, const gchar *keyid) { gchar *safe_keyid; if (gpg->mode != GPG_CTX_MODE_ENCRYPT && gpg->mode != GPG_CTX_MODE_EXPORT) return; if (!gpg->recipients) gpg->recipients = g_ptr_array_new (); g_return_if_fail (keyid != NULL); /* If the recipient lo...
0
242,119
int LuaSettings::l_to_table(lua_State* L) { NO_MAP_LOCK_REQUIRED; LuaSettings* o = checkobject(L, 1); MutexAutoLock(o->m_settings->m_mutex); push_settings_table(L, o->m_settings); return 1; }
0
234,244
is_max_address (dwarf_vma addr, unsigned int pointer_size) { dwarf_vma mask = ~(~(dwarf_vma) 1 << (pointer_size * 8 - 1)); return ((addr & mask) == mask); }
0
417,132
mp_sint32 PlayerGeneric::getCurrentBeatIndex() { if (player) return player->getBeatIndexFromSamplePos(getCurrentSamplePosition()); return 0; }
0
234,719
static int should_balance_chunk(struct extent_buffer *leaf, struct btrfs_chunk *chunk, u64 chunk_offset) { struct btrfs_fs_info *fs_info = leaf->fs_info; struct btrfs_balance_control *bctl = fs_info->balance_ctl; struct btrfs_balance_args *bargs = NULL; u64 chunk_type = btrfs_chunk_type(leaf, chunk); /* type ...
0
359,556
DEFUN (no_bgp_redistribute_ipv4, no_bgp_redistribute_ipv4_cmd, "no redistribute (connected|kernel|ospf|rip|static)", NO_STR "Redistribute information from another routing protocol\n" "Connected\n" "Kernel routes\n" "Open Shurtest Path First (OSPF)\n" "Routing Info...
0
244,105
GF_Err stvi_box_size(GF_Box *s) { GF_StereoVideoBox *ptr = (GF_StereoVideoBox *)s; ptr->size+= 12 + ptr->sit_len; return GF_OK; }
0
253,730
static void ccp_sg_free(struct ccp_sg_workarea *wa) { if (wa->dma_count) dma_unmap_sg(wa->dma_dev, wa->dma_sg_head, wa->nents, wa->dma_dir); wa->dma_count = 0; }
0
233,885
*/ static int wddx_stack_init(wddx_stack *stack) { stack->top = 0; stack->elements = (void **) safe_emalloc(sizeof(void **), STACK_BLOCK_SIZE, 0); stack->max = STACK_BLOCK_SIZE; stack->varname = NULL; stack->done = 0; return SUCCESS;
0
359,257
bgp_write (struct thread *thread) { struct peer *peer; u_char type; struct stream *s; int num; unsigned int count = 0; int write_errno; /* Yes first of all get peer pointer. */ peer = THREAD_ARG (thread); peer->t_write = NULL; /* For non-blocking IO check. */ if (peer->status == Connect) { ...
0
90,187
bool CellularNetwork::StartActivation() const { if (!EnsureCrosLoaded()) return false; return ActivateCellularModem(service_path_.c_str(), NULL); }
0
247,140
const GF_FilterRegister * gf_fs_get_filter_register(GF_FilterSession *fsess, u32 idx) { return gf_list_get(fsess->registry, idx); }
0
226,104
GF_Box *mehd_box_new() { ISOM_DECL_BOX_ALLOC(GF_MovieExtendsHeaderBox, GF_ISOM_BOX_TYPE_MEHD); return (GF_Box *)tmp; }
0
387,725
void InstanceKlass::do_nonstatic_fields(FieldClosure* cl) { InstanceKlass* super = superklass(); if (super != NULL) { super->do_nonstatic_fields(cl); } fieldDescriptor fd; int length = java_fields_count(); // In DebugInfo nonstatic fields are sorted by offset. int* fields_sorted = NEW_C_HEAP_ARRAY(int...
0
338,187
void WasmBinaryBuilder::visitIf(If* curr) { BYN_TRACE("zz node: If\n"); startControlFlow(curr); curr->type = getType(); curr->condition = popNonVoidExpression(); curr->ifTrue = getBlockOrSingleton(curr->type); if (lastSeparator == BinaryConsts::Else) { curr->ifFalse = getBlockOrSingleton(curr->type); ...
0
442,565
static void test_circular_small_chunks(void) { RedMemSlotInfo mem_info; RedCursorCmd *red_cursor_cmd; QXLCursorCmd cursor_cmd; QXLCursor *cursor; QXLDataChunk *chunks[2]; init_meminfo(&mem_info); g_test_expect_message(G_LOG_DOMAIN, G_LOG_LEVEL_WARNING, "*red_get_da...
0
418,795
do_mouse( oparg_T *oap, // operator argument, can be NULL int c, // K_LEFTMOUSE, etc int dir, // Direction to 'put' if necessary long count, int fixindent) // PUT_FIXINDENT if fixing indent necessary { static int do_always = FALSE; // ignore 'mouse' setting next time static int got_cli...
0
310,332
list_server_status_v1(smartlist_t *routers, char **router_status_out, int for_controller) { /* List of entries in a router-status style: An optional !, then an optional * equals-suffixed nickname, then a dollar-prefixed hexdigest. */ smartlist_t *rs_entries; time_t now = time(NULL); tim...
0
317,133
static int match_opt_prefix(char *s, int l, char **arg) { int i; for (i = 0; i < ARRAY_SIZE(tokens); i++) { size_t len = tokens[i].len; if (len > l || memcmp(s, tokens[i].name, len)) continue; if (tokens[i].has_arg) { if (len == l || s[len] != '=') continue; *arg = s + len + 1; } else if (len !=...
0
256,162
ALWAYS_INLINE bool IsZero(bfloat16 v) { return !static_cast<bool>(v); }
0
312,444
qf_history(exarg_T *eap) { qf_info_T *qi = qf_cmd_get_stack(eap, FALSE); int i; if (eap->addr_count > 0) { if (qi == NULL) { emsg(_(e_no_location_list)); return; } // Jump to the specified quickfix list if (eap->line2 > 0 && eap->line2 <= qi->qf_listcount) { qi->qf_curlist = eap-...
0
373,641
find_script_callback(char_u *fname, void *cookie) { int sid; int error = OK; int *ret_sid = cookie; sid = find_script_by_name(fname); if (sid < 0) { // script does not exist yet, create a new scriptitem sid = get_new_scriptitem(&error); if (error == OK) { scriptitem_T *si = SCRIPT_ITEM...
0
229,273
cql_server::connection::read_frame() { using ret_type = std::optional<cql_binary_frame_v3>; if (!_version) { // We don't know the frame size before reading the first frame, // so read just one byte, and then read the rest of the frame. return _read_buf.read_exactly(1).then([this] (tempor...
0
225,864
GF_Box *lsr1_box_new() { ISOM_DECL_BOX_ALLOC(GF_LASeRSampleEntryBox, GF_ISOM_BOX_TYPE_LSR1); gf_isom_sample_entry_init((GF_SampleEntryBox*)tmp); return (GF_Box *)tmp;
0
198,523
void Compute(OpKernelContext* context) override { // Get the stamp token. const Tensor* stamp_token_t; OP_REQUIRES_OK(context, context->input("stamp_token", &stamp_token_t)); int64_t stamp_token = stamp_token_t->scalar<int64>()(); // Get the tree ensemble proto. const Tensor* tree_ensemble_se...
1
238,486
static int sanitize_err(struct bpf_verifier_env *env, const struct bpf_insn *insn, int reason, const struct bpf_reg_state *off_reg, const struct bpf_reg_state *dst_reg) { static const char *err = "pointer arithmetic with it prohibited for !root"; const char *op = BPF_OP(insn->code) == BPF_ADD ? "add" : "sub"...
0
261,211
static int MqttClient_Publish_ReadPayload(MqttClient* client, MqttPublish* publish, int timeout_ms) { int rc = MQTT_CODE_SUCCESS; byte msg_done; /* Handle packet callback and read remaining payload */ do { /* Determine if message is done */ msg_done = ((publish->buffer_pos + publish...
0
353,154
void SplashOutputDev::unsetSoftMaskFromImageMask(GfxState *state, double *baseMatrix) { double bbox[4] = {0,0,1,1}; // dummy /* transfer mask to alpha channel! */ // memcpy(maskBitmap->getAlphaPtr(), maskBitmap->getDataPtr(), bitmap->getRowSize() * bitmap->getHeight()); // memset(maskBitmap->getDataPtr(), 0, b...
0
238,800
set_search_direction(int cdir) { spats[0].off.dir = cdir; }
0
415,213
cmd_pkauth (assuan_context_t ctx, char *line) { ctrl_t ctrl = assuan_get_pointer (ctx); int rc; unsigned char *outdata; size_t outdatalen; char *keyidstr; if ( IS_LOCKED (ctrl) ) return gpg_error (GPG_ERR_LOCKED); if ((rc = open_card (ctrl, NULL))) return rc; if (!ctrl->app_ctx) return gp...
0
259,219
static int mov_read_senc(MOVContext *c, AVIOContext *pb, MOVAtom atom) { AVEncryptionInfo **encrypted_samples; MOVEncryptionIndex *encryption_index; MOVStreamContext *sc; int use_subsamples, ret; unsigned int sample_count, i, alloc_size = 0; ret = get_current_encryption_info(c, &encryption_inde...
0
508,398
check_and_update_table_version(THD *thd, TABLE_LIST *tables, TABLE_SHARE *table_share) { if (! tables->is_table_ref_id_equal(table_share)) { if (thd->m_reprepare_observer && thd->m_reprepare_observer->report_error(thd)) { /* Version of the table share is ...
0
513,179
static int check_func_longlong(THD *thd, struct st_mysql_sys_var *var, void *save, st_mysql_value *value) { my_bool fixed1, fixed2; long long orig, val; struct my_option options; value->val_int(value, &orig); val= orig; plugin_opt_set_limits(&options, var); if (var->flags &...
0
359,493
DEFUN (no_neighbor_local_as, no_neighbor_local_as_cmd, NO_NEIGHBOR_CMD2 "local-as", NO_STR NEIGHBOR_STR NEIGHBOR_ADDR_STR2 "Specify a local-as number\n") { struct peer *peer; int ret; peer = peer_and_group_lookup_vty (vty, argv[0]); if (! peer) return CMD_WARNING; ...
0
482,530
hexValue(const FileInfo *file, const widechar *digits, int length) { int k; unsigned int binaryValue = 0; for (k = 0; k < length; k++) { unsigned int hexDigit = 0; if (digits[k] >= '0' && digits[k] <= '9') hexDigit = digits[k] - '0'; else if (digits[k] >= 'a' && digits[k] <= 'f') hexDigit = digits[k] - '...
0
247,595
TEST_P(SslSocketTest, FailedClientCertificateHashVerificationNoClientCertificate) { const std::string client_ctx_yaml = R"EOF( common_tls_context: )EOF"; const std::string server_ctx_yaml = absl::StrCat(R"EOF( common_tls_context: tls_certificates: certificate_chain: filename: "{{ test_run...
0
226,107
GF_Box *trgr_box_new() { ISOM_DECL_BOX_ALLOC(GF_TrackGroupBox, GF_ISOM_BOX_TYPE_TRGR); tmp->groups = gf_list_new(); if (!tmp->groups) { gf_free(tmp); return NULL; } return (GF_Box *)tmp;
0
96,959
void encode(ArgumentEncoder* encoder, SecCertificateRef certificate) { RetainPtr<CFDataRef> data(AdoptCF, SecCertificateCopyData(certificate)); encode(encoder, data.get()); }
0
409,436
cursor_is_sleeping(void) { return cursor_is_asleep; }
0
386,554
void DL_Dxf::writeXRecord(DL_WriterA& dw, int handle, double value) { dw.dxfString( 0, "XRECORD"); dw.dxfHex(5, handle); dw.dxfHex(330, appDictionaryHandle); dw.dxfString(100, "AcDbXrecord"); dw.dxfInt(280, 1); dw.dxfReal(40, value); }
0
380,951
ins_scroll(void) { pos_T tpos; undisplay_dollar(); tpos = curwin->w_cursor; if (gui_do_scroll()) { start_arrow(&tpos); can_cindent = TRUE; } }
0
509,490
bool ha_maria::check_if_incompatible_data(HA_CREATE_INFO *create_info, uint table_changes) { DBUG_ENTER("check_if_incompatible_data"); uint options= table->s->db_options_in_use; enum ha_choice page_checksum= table->s->page_checksum; if (page_checksum == HA_CHOICE_UNDEF...
0
359,552
DEFUN (bgp_redistribute_ipv6, bgp_redistribute_ipv6_cmd, "redistribute (connected|kernel|ospf6|ripng|static)", "Redistribute information from another routing protocol\n" "Connected\n" "Kernel routes\n" "Open Shurtest Path First (OSPFv3)\n" "Routing Information Protocol (...
0
401,499
signed long __sched schedule_timeout(signed long timeout) { struct process_timer timer; unsigned long expire; switch (timeout) { case MAX_SCHEDULE_TIMEOUT: /* * These two special cases are useful to be comfortable * in the caller. Nothing more. We could take * MAX_SCHEDULE_TIMEOUT from one of the negat...
0
244,234
GF_Err unkn_box_write(GF_Box *s, GF_BitStream *bs) { GF_Err e; u32 type; GF_UnknownBox *ptr = (GF_UnknownBox *)s; if (!s) return GF_BAD_PARAM; type = s->type; ptr->type = ptr->original_4cc; e = gf_isom_box_write_header(s, bs); ptr->type = type; if (e) return e; if (ptr->sai_type) { if (ptr->saio_box) { ...
0
512,587
String *val_str(String*) { return &str_value; }
0
212,436
static int prealloc_elems_and_freelist(struct bpf_stack_map *smap) { u32 elem_size = sizeof(struct stack_map_bucket) + smap->map.value_size; int err; smap->elems = bpf_map_area_alloc(elem_size * smap->map.max_entries, smap->map.numa_node); if (!smap->elems) return -ENOMEM; err = pcpu_freelist_init(&smap-...
1
222,553
const FunctionDef* FunctionLibraryDefinition::Find(const string& func) const { tf_shared_lock l(mu_); auto result = FindHelper(func); if (result) { return &result->fdef; } else { return nullptr; } }
0
253,635
smb2_close_getattr(const unsigned int xid, struct cifs_tcon *tcon, struct cifsFileInfo *cfile) { struct smb2_file_network_open_info file_inf; struct inode *inode; int rc; rc = __SMB2_close(xid, tcon, cfile->fid.persistent_fid, cfile->fid.volatile_fid, &file_inf); if (rc) return; inode = d_inode(cfil...
0
366,317
static int do_remount(struct path *path, int ms_flags, int sb_flags, int mnt_flags, void *data) { int err; struct super_block *sb = path->mnt->mnt_sb; struct mount *mnt = real_mount(path->mnt); struct fs_context *fc; if (!check_mnt(mnt)) return -EINVAL; if (path->dentry != path->mnt->mnt_root) retur...
0
268,104
void Compute(OpKernelContext* context) override { // Checks what we're remapping and inverts the relevant remapping Tensors to // be maps with key = old ID, value = new ID. std::unordered_map<int64_t, int64_t> old_row_to_new_row_map; std::vector<bool> row_id_present; const Tensor* row_remapping_t;...
0
232,948
static void identity_close_writer(struct Curl_easy *data, struct contenc_writer *writer) { (void) data; (void) writer; }
0
514,314
void multi_update::update_used_tables() { Item *item; List_iterator_fast<Item> it(*values); while ((item= it++)) { item->update_used_tables(); } }
0