idx
int64
func
string
target
int64
231,882
void AwContents::RequestProtectedMediaIdentifierPermission( const GURL& origin, const base::Callback<void(bool)>& callback) { permission_request_handler_->SendRequest( scoped_ptr<AwPermissionRequestDelegate>(new SimplePermissionRequest( origin, AwPermissionRequest::ProtectedMediaId, callback))...
0
513,579
uint16_t tls1_shared_group(SSL *s, int nmatch) { const uint16_t *pref, *supp; size_t num_pref, num_supp, i; int k; /* Can't do anything on client side */ if (s->server == 0) return 0; if (nmatch == -2) { if (tls1_suiteb(s)) { /* * For Suite B ciphersuite...
0
138,150
static void icmp_timestamp(struct sk_buff *skb) { struct timespec tv; struct icmp_bxm icmp_param; /* * Too short. */ if (skb->len < 4) goto out_err; /* * Fill in the current time as ms since midnight UT: */ getnstimeofday(&tv); icmp_param.data.times[1] = htonl((tv.tv_sec % 86400) * MSEC_PER_SEC + ...
0
152,412
get_scriptlocal_funcname(char_u *funcname) { char sid_buf[25]; int off; char_u *newname; char_u *p = funcname; if (funcname == NULL) return NULL; if (STRNCMP(funcname, "s:", 2) != 0 && STRNCMP(funcname, "<SID>", 5) != 0) { ufunc_T *ufunc; // The function name does not have a scr...
0
84,374
void perf_tp_event(u16 event_type, u64 count, void *record, int entry_size, struct pt_regs *regs, struct hlist_head *head, int rctx, struct task_struct *task) { struct perf_sample_data data; struct perf_event *event; struct perf_raw_record raw = { .frag = { .size = entry_size, .data = record, },...
0
367,882
static int cap_task_setrlimit(unsigned int resource, struct rlimit *new_rlim) { return 0; }
0
273,280
static int set_bit_to_user(int nr, void __user *addr) { unsigned long log = (unsigned long)addr; struct page *page; void *base; int bit = nr + (log % PAGE_SIZE) * 8; int r; r = get_user_pages_fast(log, 1, 1, &page); if (r < 0) return r; BUG_ON(r != 1); base = kmap_atomic(page); set_bit(bit, base); kunmap_...
0
13,519
const BlockEntry* Segment::GetBlock(const CuePoint& cp, const CuePoint::TrackPosition& tp) { Cluster** const ii = m_clusters; Cluster** i = ii; const long count = m_clusterCount + m_clusterPreloadCount; Cluster** const jj = ii + count; Cluster** j = jj; while (i < j) { Cluster** const k = i + (j - i) / 2; ...
1
440,071
MagickExport void XHighlightLine(Display *display,Window window, GC annotate_context,const XSegment *highlight_info) { (void) LogMagickEvent(TraceEvent,GetMagickModule(),"..."); assert(display != (Display *) NULL); assert(window != (Window) NULL); assert(annotate_context != (GC) NULL); assert(highlight_info...
0
93,544
static void arcmsr_hbaA_message_isr(struct AdapterControlBlock *acb) { struct MessageUnit_A __iomem *reg = acb->pmuA; /*clear interrupt and message state*/ writel(ARCMSR_MU_OUTBOUND_MESSAGE0_INT, &reg->outbound_intstatus); schedule_work(&acb->arcmsr_do_message_isr_bh); }
0
66,270
static int nfs_size_need_update(const struct inode *inode, const struct nfs_fattr *fattr) { return nfs_size_to_loff_t(fattr->size) > i_size_read(inode); }
0
233,647
void GLManager::Initialize(const GLManager::Options& options) { GpuDriverBugWorkarounds platform_workarounds( g_gpu_feature_info.enabled_gpu_driver_bug_workarounds); InitializeWithWorkaroundsImpl(options, platform_workarounds); }
0
24,106
static void set_pseudo_header_frame4 ( union wtap_pseudo_header * pseudo_header , struct frame4_rec * frame4 ) { guint32 StatusWord ; guint8 aal_type , hl_type ; guint16 vpi , vci ; pseudo_header -> atm . flags = 0 ; StatusWord = pletoh32 ( & frame4 -> atm_info . StatusWord ) ; if ( StatusWord & SW_RAW_CELL ) pse...
0
521,415
bool Item_subselect::exec() { subselect_engine *org_engine= engine; DBUG_ENTER("Item_subselect::exec"); DBUG_ASSERT(fixed); DBUG_ASSERT(!eliminated); /* Do not execute subselect in case of a fatal error or if the query has been killed. */ if (thd->is_error() || thd->killed) DBUG_RETURN(true)...
0
354,087
onscreen_mvcur(NCURSES_SP_DCLx int yold, int xold, int ynew, int xnew, int ovw, NCURSES_SP_OUTC myOutCh) /* onscreen move from (yold, xold) to (ynew, xnew) */ { string_desc result; char buffer[OPT_SIZE]; int tactic = 0, newcost, usecost = INFINITY; int t5_cr_cost; #if defined(MA...
1
283,830
void ResourceDispatcherHostImpl::CancelBlockedRequestsForRoute( const GlobalFrameRoutingId& global_routing_id) { ProcessBlockedRequestsForRoute(global_routing_id, true); }
0
228,048
DownloadRequestLimiter::TabDownloadState::~TabDownloadState() { DCHECK(callbacks_.empty()); DCHECK(!factory_.HasWeakPtrs()); }
0
188,419
bool FileSystemPolicy::SetInformationFileAction( EvalResult eval_result, const ClientInfo& client_info, HANDLE target_file_handle, void* file_info, uint32 length, uint32 info_class, IO_STATUS_BLOCK* io_block, NTSTATUS* nt_status) { if (ASK_BROKER != eval_result) { *nt_status = STATUS_ACCESS_DENIED...
0
291,530
size_t ndp_msg_opt_slladdr_len(struct ndp_msg *msg, int offset) { return ETH_ALEN; }
0
203,806
bool SendReloadJSONRequest( AutomationMessageSender* sender, int browser_index, int tab_index, std::string* error_msg) { DictionaryValue dict; dict.SetString("command", "Reload"); dict.SetInteger("windex", browser_index); dict.SetInteger("tab_index", tab_index); DictionaryValue reply_dict; r...
0
387,943
png_read_filter_row_paeth_multibyte_pixel(png_row_infop row_info, png_bytep row, png_const_bytep prev_row) { int bpp = (row_info->pixel_depth + 7) >> 3; png_bytep rp_end = row + bpp; /* Process the first pixel in the row completely (this is the same as 'up' * because there is only one candidate predict...
0
116,296
static void swoole_serialize_object(seriaString *buffer, zval *obj, size_t start) { zend_string *name = Z_OBJCE_P(obj)->name; if (GC_IS_RECURSIVE(Z_OBJPROP_P(obj))) { zend_throw_exception_ex(NULL, 0, "the object %s has cycle ref.", name->val); return; } if (name->len > 0xffff) {/...
0
48,358
void nl80211_send_roamed(struct cfg80211_registered_device *rdev, struct net_device *netdev, struct cfg80211_roam_info *info, gfp_t gfp) { struct sk_buff *msg; void *hdr; const u8 *bssid = info->bss ? info->bss->bssid : info->bssid; msg = nlmsg_new(100 + info->req_ie_len + info->resp_ie_len + info->fils...
0
471,280
void rdbReportError(int corruption_error, int linenum, char *reason, ...) { va_list ap; char msg[1024]; int len; len = snprintf(msg,sizeof(msg), "Internal error in RDB reading offset %llu, function at rdb.c:%d -> ", (unsigned long long)server.loading_loaded_bytes, linenum); va_start...
0
362,109
usage( void ) { fprintf( stderr, "ftdiff: a simple program to proof several text hinting modes\n" "-----------------------------------------------------------\n" "\n" "Usage: ftdiff [options] fontfile [fontfile2 ...]\n" "\n" " -r R use resolution R dpi (default: 72 d...
0
387,488
keytype( struct parse *pcmd, FILE *fp ) { const char * digest_name; size_t digest_len; int key_type; if (!pcmd->nargs) { fprintf(fp, "keytype is %s with %lu octet digests\n", keytype_name(info_auth_keytype), (u_long)info_auth_hashlen); return; } digest_name = pcmd->argval[0].string; digest_len =...
0
496,456
transformIndexConstraint(Constraint *constraint, CreateStmtContext *cxt) { IndexStmt *index; List *notnullcmds = NIL; ListCell *lc; index = makeNode(IndexStmt); index->unique = (constraint->contype != CONSTR_EXCLUSION); index->primary = (constraint->contype == CONSTR_PRIMARY); if (index->primary) { if...
0
60,318
static void mapNext(ArrayIter& it) { ++it; }
0
402,985
void t_cpp_generator::generate_struct_result_writer(ofstream& out, t_struct* tstruct, bool pointers) { string name = tstruct->get_name(); const vector<t_field*>& fields = tstruct->get_sorted_members(); vector<t...
0
211,180
bool RenderWidgetHostViewAura::GetCompositionTextRange( gfx::Range* range) const { NOTIMPLEMENTED(); return false; }
0
69,587
TensorShape PoolParameters::forward_output_shape() { if (depth_window == 1) { // Spatial pooling return ShapeFromFormat(data_format, tensor_in_batch, out_height, out_width, depth); } else { // Depthwise pooling return TensorShape( {tensor_in_batch, tensor_in_rows, ...
0
338,253
int qemu_opts_set(QemuOptsList *list, const char *id, const char *name, const char *value) { QemuOpts *opts; opts = qemu_opts_create(list, id, 1); if (opts == NULL) { return -1; } return qemu_opt_set(opts, name, value); }
1
81,369
void Statement::Work_Run(napi_env e, void* data) { STATEMENT_INIT(RunBaton); STATEMENT_MUTEX(mtx); sqlite3_mutex_enter(mtx); // Make sure that we also reset when there are no parameters. if (!baton->parameters.size()) { sqlite3_reset(stmt->_handle); } if (stmt->Bind(baton->paramet...
0
274,343
static void flush_queued_data_bh(void *opaque) { VirtIOSerialPort *port = opaque; flush_queued_data(port); }
0
454,834
void __init udbg_init_rtas_panel(void) { udbg_putc = call_rtas_display_status_delay; }
0
114,647
static void kvm_destroy_vm(struct kvm *kvm) { int i; struct mm_struct *mm = kvm->mm; kvm_arch_sync_events(kvm); raw_spin_lock(&kvm_lock); list_del(&kvm->vm_list); raw_spin_unlock(&kvm_lock); kvm_free_irq_routing(kvm); for (i = 0; i < KVM_NR_BUSES; i++) kvm_io_bus_destroy(kvm->buses[i]); kvm_coalesced_mmio_f...
0
461,198
bool vsock_find_cid(unsigned int cid) { if (transport_g2h && cid == transport_g2h->get_local_cid()) return true; if (transport_h2g && cid == VMADDR_CID_HOST) return true; if (transport_local && cid == VMADDR_CID_LOCAL) return true; return false; }
0
212,109
static int php_pgsql_fd_flush(php_stream *stream) /* {{{ */ { return FAILURE; } /* }}} */
0
150,211
template<typename t> CImg<t> _permute_axes(const char *const order, const t&) const { if (is_empty() || !order) return CImg<t>(*this,false); CImg<t> res; const T* ptrs = _data; unsigned char s_code[4] = { 0,1,2,3 }, n_code[4] = { 0 }; for (unsigned int l = 0; order[l]; ++l) { ...
0
146,651
static const char *parse_value(cJSON *item,const char *value,const char **ep) { if (!value) return 0; /* Fail on null. */ if (!strncmp(value,"null",4)) { item->type=cJSON_NULL; return value+4; } if (!strncmp(value,"false",5)) { item->type=cJSON_False; return value+5; } if (!strncmp(value,"true",4)) { item->ty...
0
481,837
char *split_comma(char *str) { EUID_ASSERT(); if (str == NULL || *str == '\0') return NULL; char *ptr = strchr(str, ','); if (!ptr) return NULL; *ptr = '\0'; ptr++; if (*ptr == '\0') return NULL; return ptr; }
0
314,702
static waiting_command_t *get_waiting_command(command_opcode_t opcode) { pthread_mutex_lock(&commands_pending_response_lock); for (const list_node_t *node = list_begin(commands_pending_response); node != list_end(commands_pending_response); node = list_next(node)) { waiting_command_t *wait_entry = list...
0
206,611
jlong AwContents::ReleasePopupAwContents(JNIEnv* env, jobject obj) { DCHECK_CURRENTLY_ON(BrowserThread::UI); return reinterpret_cast<intptr_t>(pending_contents_.release()); }
0
23,933
IN_PROC_BROWSER_TEST_F ( UnloadTest , BrowserCloseWithInnerFocusedFrame ) { NavigateToDataURL ( INNER_FRAME_WITH_FOCUS_HTML , "innerframewithfocus" ) ; content : : WindowedNotificationObserver window_observer ( chrome : : NOTIFICATION_BROWSER_CLOSED , content : : NotificationService : : AllSources ( ) ) ; chrome : :...
0
45,846
static av_cold int decode_end(AVCodecContext *avctx) { Mpeg4DecContext *ctx = avctx->priv_data; int i; if (!avctx->internal->is_copy) { for (i = 0; i < 12; i++) ff_free_vlc(&ctx->studio_intra_tab[i]); ff_free_vlc(&ctx->studio_luma_dc); ff_free_vlc(&ctx->studio_chroma_dc...
0
494,852
static void emit_dependencies(StrList *list) { FILE *deps; int linepos, len; StrList *l, *nl; bool wmake = (quote_for_make == quote_for_wmake); const char *wrapstr, *nulltarget; wrapstr = wmake ? " &\n " : " \\\n "; nulltarget = wmake ? "\t%null\n" : ""; if (depend_file && strcmp(depen...
0
311,842
bool MediaControlPanelElement::isOpaque() const { return m_opaque; }
0
324,506
static void init_proc_750cx (CPUPPCState *env) { gen_spr_ne_601(env); gen_spr_7xx(env); /* XXX : not implemented */ spr_register(env, SPR_L2CR, "L2CR", SPR_NOACCESS, SPR_NOACCESS, &spr_read_generic, NULL, 0x00000000); /* Time base */ g...
1
192,110
Browser::~Browser() { VLOG_IF(1, g_log_bug53991) << "~Browser: " << profile_->IsOffTheRecord() << "; stillActive=" << BrowserList::IsOffTheRecordSessionActive(); if (profile_->GetProfileSyncService()) profile_->GetProfileSyncService()->RemoveObserver(th...
0
78,520
static int vp8_decode_mb_row_no_filter(AVCodecContext *avctx, void *tdata, int jobnr, int threadnr) { return decode_mb_row_no_filter(avctx, tdata, jobnr, threadnr, 0); }
0
79,484
was_set_insecurely(char_u *opt, int opt_flags) { int idx = findoption(opt); long_u *flagp; if (idx >= 0) { flagp = insecure_flag(idx, opt_flags); return (*flagp & P_INSECURE) != 0; } internal_error("was_set_insecurely()"); return -1; }
0
136,472
static PyObject *__pyx_pw_17clickhouse_driver_14bufferedreader_20BufferedSocketReader_7__setstate_cython__(PyObject *__pyx_v_self, PyObject *__pyx_v___pyx_state) { PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__setstate_cython__ (wrapper)", 0); __pyx_r = __pyx_pf_17clickhouse_dr...
0
145,753
MagickExport Image *FlopImage(const Image *image,ExceptionInfo *exception) { #define FlopImageTag "Flop/Image" CacheView *flop_view, *image_view; Image *flop_image; MagickBooleanType status; MagickOffsetType progress; RectangleInfo page; ssize_t y; assert(image != (cons...
0
463,614
static void free_fixed_rsrc_data(struct fixed_rsrc_data *data) { percpu_ref_exit(&data->refs); kfree(data->table); kfree(data);
0
414,064
int wmi_addba_rx_resp(struct wil6210_priv *wil, u8 cid, u8 tid, u8 token, u16 status, bool amsdu, u16 agg_wsize, u16 timeout) { int rc; struct wmi_rcp_addba_resp_cmd cmd = { .cidxtid = mk_cidxtid(cid, tid), .dialog_token = token, .status_code = cpu_to_le16(status), /* bit 0: A-MSDU supported * bit ...
0
362,793
static inline int sk_mem_pages(int amt) { return (amt + SK_MEM_QUANTUM - 1) >> SK_MEM_QUANTUM_SHIFT; }
0
281,962
status_t CameraService::connectDevice( const sp<ICameraDeviceCallbacks>& cameraCb, int cameraId, const String16& clientPackageName, int clientUid, /*out*/ sp<ICameraDeviceUser>& device) { String8 clientName8(clientPackageName); int callingPid = getCallingPid(); LOG1("CameraService::connectDevice E ...
0
28,653
char * qemuDomainGetSecretAESAlias ( const char * srcalias , bool isLuks ) { char * alias ; if ( ! srcalias ) { virReportError ( VIR_ERR_INVALID_ARG , "%s" , _ ( "encrypted secret alias requires valid source alias" ) ) ; return NULL ; } if ( isLuks ) ignore_value ( virAsprintf ( & alias , "%s-luks-secret0" , srca...
0
16,673
gcry_error_t gcry_mpi_scan ( struct gcry_mpi * * ret_mpi , enum gcry_mpi_format format , const void * buffer_arg , size_t buflen , size_t * nscanned ) { const unsigned char * buffer = ( const unsigned char * ) buffer_arg ; struct gcry_mpi * a = NULL ; unsigned int len ; int secure = ( buffer && gcry_is_secure ( buf...
0
224,735
void WebSettingsImpl::setLocalStorageEnabled(bool enabled) { m_settings->setLocalStorageEnabled(enabled); }
0
431,533
bool run(OperationContext* opCtx, const string& dbname, const BSONObj& cmdObj, BSONObjBuilder& result) { RoleName roleName; Status status = auth::parseDropRoleCommand(cmdObj, dbname, &roleName); if (!status.isOK()) { return appendCommandStat...
0
137,129
Jsi_RC Jsi_InitMySql(Jsi_Interp *interp, int release) { if (release) { if (!--mydbObjCmd.init) mysql_library_end(); return Jsi_DoneMySql(interp); } Jsi_Hash* dbSys; #if JSI_USE_STUBS if (Jsi_StubsInit(interp, 0) != JSI_OK) return JSI_ERROR; #endif #ifndef JSI_OMIT_THREADS ...
0
328,112
static int dshow_read_packet(AVFormatContext *s, AVPacket *pkt) { struct dshow_ctx *ctx = s->priv_data; AVPacketList *pktl = NULL; while (!ctx->eof && !pktl) { WaitForSingleObject(ctx->mutex, INFINITE); pktl = ctx->pktl; if (pktl) { *pkt = pktl->pkt; ...
1
483,269
void cgroup_fork(struct task_struct *child) { RCU_INIT_POINTER(child->cgroups, &init_css_set); INIT_LIST_HEAD(&child->cg_list); }
0
146,045
if (err == MP_OKAY) { mG = wc_ecc_new_point_h(key->heap); mQ = wc_ecc_new_point_h(key->heap); if (mQ == NULL || mG == NULL) err = MEMORY_E; }
0
308,820
void RecordOffliningPreviewsUMA(const ClientId& client_id, content::PreviewsState previews_state) { bool is_previews_enabled = (previews_state != content::PreviewsTypes::PREVIEWS_OFF && previews_state != content::PreviewsTypes::PREVIEWS_NO_TRANSFORM); base::UmaHistogram...
0
261,537
static void nft_verdict_uninit(const struct nft_data *data) { switch (data->verdict) { case NFT_JUMP: case NFT_GOTO: data->chain->use--; break; } }
0
311,694
static struct dentry *proc_root_lookup(struct inode * dir, struct dentry * dentry, unsigned int flags) { if (!proc_pid_lookup(dir, dentry, flags)) return NULL; return proc_lookup(dir, dentry, flags); }
0
488,313
static int NAttrFlag(ntfs_attr *na, FILE_ATTR_FLAGS flag) { if (na->type == AT_DATA && na->name == AT_UNNAMED) return (na->ni->flags & flag); return 0; }
0
462,784
TEST_F(QueryPlannerTest, IndexBoundsOrOfNegations) { addIndex(BSON("a" << 1)); runQuery(fromjson("{$or: [{a: {$ne: 3}}, {a: {$ne: 4}}]}")); assertNumSolutions(2U); assertSolutionExists("{cscan: {dir: 1}}"); assertSolutionExists( "{fetch: {filter: null, node: {ixscan: {pattern: {a:1}, " ...
0
513,040
virtual void endPage() {}
0
478,391
const char *what() const throw() { return _message; }
0
59,308
fixup_appledouble(struct archive_write_disk *a, const char *pathname) { (void)a; /* UNUSED */ (void)pathname; /* UNUSED */ return (ARCHIVE_OK); }
0
438,616
static void rcs_submission_override(struct intel_engine_cs *engine) { switch (INTEL_GEN(engine->i915)) { case 12: engine->emit_flush = gen12_emit_flush_render; engine->emit_fini_breadcrumb = gen12_emit_fini_breadcrumb_rcs; break; case 11: engine->emit_flush = gen11_emit_flush_render; engine->emit_fini_brea...
0
388,676
NTSTATUS smb_vfs_call_get_compression(vfs_handle_struct *handle, TALLOC_CTX *mem_ctx, struct files_struct *fsp, struct smb_filename *smb_fname, uint16_t *_compression_fmt) { VFS_FIND(get_compression); return handle->fns->get_compression_fn(handle, mem_ctx, fsp, smb_fname, ...
0
272,217
void Archive::SeekToNext() { Seek(NextBlockPos,SEEK_SET); }
0
38,850
static int proc_pid_syscall(struct task_struct *task, char *buffer) { long nr; unsigned long args[6], sp, pc; int res = lock_trace(task); if (res) return res; if (task_current_syscall(task, &nr, args, 6, &sp, &pc)) res = sprintf(buffer, "running\n"); else if (nr < 0) res = sprintf(buffer, "%ld 0x%lx 0x%lx\...
0
479,798
CImg<T>& HSLtoRGB() { if (_spectrum!=3) throw CImgInstanceException(_cimg_instance "HSLtoRGB(): Instance is not a HSL image.", cimg_instance); T *p1 = data(0,0,0,0), *p2 = data(0,0,0,1), *p3 = data(0,0,0,2); const lon...
0
59,940
static ssize_t srpt_tpg_attrib_srp_max_rsp_size_show(struct config_item *item, char *page) { struct se_portal_group *se_tpg = attrib_to_tpg(item); struct srpt_port *sport = container_of(se_tpg, struct srpt_port, port_tpg_1); return sprintf(page, "%u\n", sport->port_attrib.srp_max_rsp_size); }
0
112,040
static unsigned int hc_entries(unsigned int cnt) { cnt = cnt & 7 ? (cnt / 8) + 1 : cnt / 8; return cnt < avail_tree_table_sz ? cnt : avail_tree_table_sz - 1; }
0
77,921
void __sched wait_for_completion(struct completion *x) { wait_for_common(x, MAX_SCHEDULE_TIMEOUT, TASK_UNINTERRUPTIBLE); }
0
213,495
OMXCodecObserver() { }
0
34,728
static unsigned long set_max_huge_pages(struct hstate *h, unsigned long count, nodemask_t *nodes_allowed) { unsigned long min_count, ret; if (h->order >= MAX_ORDER) return h->max_huge_pages; /* * Increase the pool size * First take pages out of surplus state. Then make up the * remaining difference ...
0
92,736
static void ext4_handle_error(struct super_block *sb) { struct ext4_super_block *es = EXT4_SB(sb)->s_es; EXT4_SB(sb)->s_mount_state |= EXT4_ERROR_FS; es->s_state |= cpu_to_le16(EXT4_ERROR_FS); if (sb->s_flags & MS_RDONLY) return; if (!test_opt(sb, ERRORS_CONT)) { journal_t *journal = EXT4_SB(sb)->s_journal;...
0
228,043
void InspectorPageAgent::navigateToHistoryEntry(ErrorString*, int) { }
0
455,223
TEST_F(QueryPlannerTest, IndexBoundsAndWithNestedOr) { addIndex(BSON("a" << 1)); runQuery(fromjson("{$and: [{a: 1, $or: [{a: 2}, {a: 3}]}]}")); // Given that the index over 'a' isn't multikey, we ideally won't generate any solutions // since we know the query describes an empty set if 'a' isn't multike...
0
449,027
UTI_TimespecToDouble(struct timespec *ts) { return ts->tv_sec + 1.0e-9 * ts->tv_nsec; }
0
127,932
static int foreach_comment(void *user, const char *k, const char *v) { RAnalMetaUserItem *ui = user; RCore *core = ui->anal->user; const char *cmd = ui->user; if (!strncmp (k, "meta.C.", 7)) { char *cmt = (char *)sdb_decode (v, 0); if (!cmt) cmt = strdup (""); //eprintf ("--> %s = %s\n", k + 7, cmt); r_core...
0
462,058
void t2p_read_tiff_data(T2P* t2p, TIFF* input){ int i=0; uint16* r = NULL; uint16* g = NULL; uint16* b = NULL; uint16* a = NULL; uint16 xuint16; uint16* xuint16p; float* xfloatp; t2p->pdf_transcode = T2P_TRANSCODE_ENCODE; t2p->pdf_sample = T2P_SAMPLE_NOTHING; t2p->pdf_switchdecode = t2p->pdf_colorsp...
0
149,577
TEST(ComparisonsTest, NotEqualString) { if (SingleOpModel::GetForceUseNnapi()) { return; } ComparisonOpModel model({1, 1, 1, 1, 4}, {1, 1, 1, 1, 4}, TensorType_STRING, BuiltinOperator_NOT_EQUAL); model.PopulateTensor<std::string>(model.input1(), {"A", "B", "C", "D"}); model.Popul...
0
362,723
*/ xmlNodePtr xmlXPathNextFollowing(xmlXPathParserContextPtr ctxt, xmlNodePtr cur) { if ((ctxt == NULL) || (ctxt->context == NULL)) return(NULL); if ((cur != NULL) && (cur->type != XML_ATTRIBUTE_NODE) && (cur->type != XML_NAMESPACE_DECL) && (cur->children != NULL)) return(cur->children); ...
0
69,568
void tac_copy_addr_info(struct addrinfo *p_dst, const struct addrinfo *p_src) { if (p_dst && p_src) { p_dst->ai_flags = p_src->ai_flags; p_dst->ai_family = p_src->ai_family; p_dst->ai_socktype = p_src->ai_socktype; p_dst->ai_protocol = p_src->ai_protocol; p_dst->ai_addrlen = ...
0
438,680
static bool virtual_matches(const struct virtual_engine *ve, const struct i915_request *rq, const struct intel_engine_cs *engine) { const struct intel_engine_cs *inflight; if (!(rq->execution_mask & engine->mask)) /* We peeked too soon! */ return false; /* * We track when the HW has completed sav...
0
369,954
void in6_dev_finish_destroy(struct inet6_dev *idev) { struct net_device *dev = idev->dev; WARN_ON(!list_empty(&idev->addr_list)); WARN_ON(idev->mc_list != NULL); WARN_ON(timer_pending(&idev->rs_timer)); #ifdef NET_REFCNT_DEBUG pr_debug("%s: %s\n", __func__, dev ? dev->name : "NIL"); #endif dev_put(dev); if (!i...
0
481,923
void __init pt_regs_check(void) { BUILD_BUG_ON(offsetof(struct pt_regs, gpr) != offsetof(struct user_pt_regs, gpr)); BUILD_BUG_ON(offsetof(struct pt_regs, nip) != offsetof(struct user_pt_regs, nip)); BUILD_BUG_ON(offsetof(struct pt_regs, msr) != offsetof(struct user_pt_regs, msr)); BUILD_BUG_ON...
0
465,756
static void fuse_link_write_file(struct file *file) { struct inode *inode = file_inode(file); struct fuse_inode *fi = get_fuse_inode(inode); struct fuse_file *ff = file->private_data; /* * file may be written through mmap, so chain it onto the * inodes's write_file list */ spin_lock(&fi->lock); if (list_emp...
0
231,348
bool SendGetAppModalDialogMessageJSONRequest( AutomationMessageSender* sender, std::string* message, std::string* error_msg) { DictionaryValue dict; dict.SetString("command", "GetAppModalDialogMessage"); DictionaryValue reply_dict; if (!SendAutomationJSONRequest(sender, dict, &reply_dict, error_msg)...
0
437,228
static int ttusb_dec_stop_feed(struct dvb_demux_feed *dvbdmxfeed) { dprintk("%s\n", __func__); switch (dvbdmxfeed->type) { case DMX_TYPE_TS: return ttusb_dec_stop_ts_feed(dvbdmxfeed); break; case DMX_TYPE_SEC: return ttusb_dec_stop_sec_feed(dvbdmxfeed); break; } return 0; }
0
178,011
void GetLastSession() { profile()->GetSessionService()->TabClosed(controller().window_id(), controller().session_id(), false); ReopenDatabase(); Time close_time; session_helper_.ReadWindows(&windows_); }
0
388,831
void smb2cli_session_stop_replay(struct smbXcli_session *session) { session->smb2->replay_active = false; }
0