idx
int64
func
string
target
int64
110,391
inline void ThrowTypeErrorOnFailureHelper::ThrowTypeErrorOnFailure(BOOL operationSucceeded) { if (IsThrowTypeError(operationSucceeded)) { ThrowTypeErrorOnFailure(); } }
0
434,498
int parse_sa_P_opt(char *argv[], int *opt, unsigned int *flags, struct activity *act[]) { int p; p = get_activity_position(act, A_CPU, EXIT_IF_NOT_FOUND); if (argv[++(*opt)]) { if (parse_values(argv[*opt], act[p]->bitmap->b_array, act[p]->bitmap->b_size, K_LOWERALL)) return 1; (*opt)++; *flags |= ...
0
146,895
static const char *urlsection(cmd_parms *cmd, void *mconfig, const char *arg) { const char *errmsg; const char *endp = ap_strrchr_c(arg, '>'); int old_overrides = cmd->override; char *old_path = cmd->path; core_dir_config *conf; ap_regex_t *r = NULL; const command_rec *thiscmd = cmd->cmd; ...
0
20,418
static void dct_unquantize_mpeg1_intra_c ( MpegEncContext * s , int16_t * block , int n , int qscale ) { int i , level , nCoeffs ; const uint16_t * quant_matrix ; nCoeffs = s -> block_last_index [ n ] ; if ( n < 4 ) block [ 0 ] = block [ 0 ] * s -> y_dc_scale ; else block [ 0 ] = block [ 0 ] * s -> c_dc_scale ; q...
0
517,775
static int add_keyword_string(String *str, const char *keyword, bool quoted, const char *keystr) { int err= str->append(' '); err+= str->append(keyword); str->append(STRING_WITH_LEN(" = ")); if (quoted) { err+= str->append('\''); err+= str->append_for_single_quote(keystr...
0
415,284
real_new_secrets (NMVpnServicePlugin *plugin, NMConnection *connection, GError **error) { NMVPNCPluginPrivate *priv = NM_VPNC_PLUGIN_GET_PRIVATE (plugin); NMSettingVpn *s_vpn; const char *secret; if (!interactive_available || !priv->interactive) { g_set_error_literal (error, ...
0
106,071
void ff_mov_close_hinting(MOVTrack *track) { AVFormatContext* rtp_ctx = track->rtp_ctx; uint8_t *ptr; av_freep(&track->enc); sample_queue_free(&track->sample_queue); if (!rtp_ctx) return; if (rtp_ctx->pb) { av_write_trailer(rtp_ctx); url_close_dyn_buf(rtp_ctx->...
1
74,796
int pam_sm_setcred (pam_handle_t * pamh, int flags, int argc, const char **argv) { int ctrl = _pam_parse (argc, argv); if (ctrl & PAM_TAC_DEBUG) syslog (LOG_DEBUG, "%s: called (pam_tacplus v%u.%u.%u)" , __FUNCTION__, PAM_TAC_VMAJ, PAM_TAC_VMIN, PAM_TAC_VPAT); return PAM_SUCCESS; }...
0
227,172
void RenderWidgetHostImpl::CopyFromBackingStore( const gfx::Rect& src_subrect, const gfx::Size& accelerated_dst_size, const ReadbackRequestCallback& callback, const SkColorType preferred_color_type) { if (view_) { TRACE_EVENT0("browser", "RenderWidgetHostImpl::CopyFromBackingStore::FromCom...
0
14,028
void TransportTexture::OnTexturesCreated(std::vector<int> textures) { bool ret = decoder_->MakeCurrent(); if (!ret) { LOG(ERROR) << "Failed to switch context"; return; } output_textures_->clear(); for (size_t i = 0; i < textures.size(); ++i) { uint32 gl_texture = 0; ret = decoder_->GetSer...
1
249,963
bool SocketPair(int* fd1, int* fd2) { int pipe_fds[2]; if (socketpair(AF_UNIX, SOCK_STREAM, 0, pipe_fds) != 0) { PLOG(ERROR) << "socketpair()"; return false; } if (fcntl(pipe_fds[0], F_SETFL, O_NONBLOCK) == -1 || fcntl(pipe_fds[1], F_SETFL, O_NONBLOCK) == -1) { PLOG(ERROR) << "fcntl(O_NONBLOC...
0
515,122
char *findFill(node_t * n) { return (findFillDflt(n, DEFAULT_FILL)); }
0
393,969
static int sched_copy_attr(struct sched_attr __user *uattr, struct sched_attr *attr) { u32 size; int ret; if (!access_ok(VERIFY_WRITE, uattr, SCHED_ATTR_SIZE_VER0)) return -EFAULT; /* * zero the full structure, so that a short copy will be nice. */ memset(attr, 0, sizeof(*attr)); ret = get_user(siz...
0
152,753
inline size_t PrecedenceClimbing::parse_expression(const char *s, size_t n, SemanticValues &sv, Context &c, any &dt, size_t min_prec) const { auto len = atom_->parse...
0
118,316
static unsigned char *EncodeRLE(unsigned char *destination, unsigned char *source,size_t literal,size_t repeat) { if (literal > 0) *destination++=(unsigned char) (literal-1); (void) CopyMagickMemory(destination,source,literal); destination+=literal; if (repeat > 0) { *destination++=(unsigned cha...
0
248,603
void ContentSecurityPolicy::AddAndReportPolicyFromHeaderValue( const String& header, ContentSecurityPolicyHeaderType type, ContentSecurityPolicyHeaderSource source) { wtf_size_t previous_policy_count = policies_.size(); AddPolicyFromHeaderValue(header, type, source); WebVector<WebContentSecurityPolicy...
0
301,664
static void * load_buffer(RBinFile *bf, RBuffer *buf, ut64 loadaddr, Sdb *sdb) { struct Elf_(r_bin_elf_obj_t) *res; if (!buf) { return NULL; } res = Elf_(r_bin_elf_new_buf) (buf, bf->rbin->verbose); if (res) { sdb_ns_set (sdb, "info", res->kv); } return res; }
0
58,783
static u32 tg3_read_indirect_reg32(struct tg3 *tp, u32 off) { unsigned long flags; u32 val; spin_lock_irqsave(&tp->indirect_lock, flags); pci_write_config_dword(tp->pdev, TG3PCI_REG_BASE_ADDR, off); pci_read_config_dword(tp->pdev, TG3PCI_REG_DATA, &val); spin_unlock_irqrestore(&tp->indirect_lock, flags); return...
0
427,719
static void rtreeCheckNode( RtreeCheck *pCheck, int iDepth, /* Depth of iNode (0==leaf) */ u8 *aParent, /* Buffer containing parent coords */ i64 iNode /* Node to check */ ){ u8 *aNode = 0; int nNode = 0; assert( iNode==1 || aParent!=0 ); ass...
0
266,231
static BOOL wf_cliprdr_get_file_contents(WCHAR* file_name, BYTE* buffer, LONG positionLow, LONG positionHigh, DWORD nRequested, DWORD* puSize) { BOOL res = FALSE; HANDLE hFile; DWORD nGet, rc; if (!file_name || !buffer || !puSize) { WLog_ERR(TAG, "get file contents Inval...
0
91,815
install_keyword_root(const char *string, void (*handler) (vector_t *), bool active) { /* If the root keyword is inactive, the handler will still be called, * but with a NULL strvec */ keyword_alloc(keywords, string, handler, active); }
0
24,368
static void cirrus_linear_bitblt_write ( void * opaque , hwaddr addr , uint64_t val , unsigned size ) { CirrusVGAState * s = opaque ; if ( s -> cirrus_srcptr != s -> cirrus_srcptr_end ) { * s -> cirrus_srcptr ++ = ( uint8_t ) val ; if ( s -> cirrus_srcptr >= s -> cirrus_srcptr_end ) { cirrus_bitblt_cputovideo_next...
0
164,908
void WriteReplyAndDeleteThis(const IPC::ChannelHandle& handle) { ViewHostMsg_OpenChannelToPlugin::WriteReplyParams(reply_msg(), handle, info_); filter()->OnCompletedOpenChannelToNpapiPlugin(this); SendReplyAndDeleteThis(); }
0
275,429
BGD_DECLARE(gdImagePtr) gdImageCreateFromWebpCtx (gdIOCtx * infile) { int width, height; uint8_t *filedata = NULL; uint8_t *argb = NULL; unsigned char *read, *temp; size_t size = 0, n; gdImagePtr im; int x, y; uint8_t *p; do { temp = gdRealloc(filedata, size+GD_WEBP_ALLOC_STEP); if (temp) { f...
0
283,225
static int mptsas_scsi_device_find(MPTSASState *s, int bus, int target, uint8_t *lun, SCSIDevice **sdev) { if (bus != 0) { return MPI_IOCSTATUS_SCSI_INVALID_BUS; } if (target >= s->max_devices) { return MPI_IOCSTATUS_SCSI_INVALID_TARGETID; } *sdev...
0
214,871
bool ImeObserver::IsInterestedInKeyEvent() const { return ShouldForwardKeyEvent(); }
0
195,022
bool AllSamplesPassedQuery::Process() { GLuint available = 0; glGetQueryObjectuivARB( service_id_, GL_QUERY_RESULT_AVAILABLE_EXT, &available); if (!available) { return true; } GLuint result = 0; glGetQueryObjectuivARB( service_id_, GL_QUERY_RESULT_EXT, &result); return MarkAsCompleted(res...
0
293,874
otError Commissioner::Start(otCommissionerStateCallback aStateCallback, otCommissionerJoinerCallback aJoinerCallback, void * aCallbackContext) { otError error = OT_ERROR_NONE; VerifyOrExit(Get<Mle::MleRouter>().IsAttached(), error =...
0
374,202
has_foreign_data_wrapper_privilege_name(PG_FUNCTION_ARGS) { text *fdwname = PG_GETARG_TEXT_P(0); text *priv_type_text = PG_GETARG_TEXT_P(1); Oid roleid; Oid fdwid; AclMode mode; AclResult aclresult; roleid = GetUserId(); fdwid = convert_foreign_data_wrapper_name(fdwname); mode = convert_foreign_dat...
0
90,921
UnicodeString::removeRef() { return umtx_atomic_dec((u_atomic_int32_t *)fUnion.fFields.fArray - 1); }
0
203,563
void PrintWebViewHelper::UpdateFrameAndViewFromCssPageLayout( WebKit::WebFrame* frame, const WebKit::WebNode& node, PrepareFrameAndViewForPrint* prepare, const PrintMsg_Print_Params& params, bool ignore_css_margins) { if (PrintingNodeOrPdfFrame(frame, node)) return; bool fit_to_page = ignore...
0
441,813
int force_sig_fault_to_task(int sig, int code, void __user *addr ___ARCH_SI_TRAPNO(int trapno) ___ARCH_SI_IA64(int imm, unsigned int flags, unsigned long isr) , struct task_struct *t) { struct kernel_siginfo info; clear_siginfo(&info); info.si_signo = sig; info.si_errno = 0; info.si_code = code; info.si_addr...
0
222,138
static ActivationState ParseActivationState( const std::string& activation_state) { if (activation_state == kActivationStateActivated) return ACTIVATION_STATE_ACTIVATED; if (activation_state == kActivationStateActivating) return ACTIVATION_STATE_ACTIVATING; if (activation_state == kActivationStateNotA...
0
277,792
static unsigned uivector_push_back(uivector* p, unsigned c) { if(!uivector_resize(p, p->size + 1)) return 0; p->data[p->size - 1] = c; return 1; }
0
484,760
static size_t compute_user_elem_size(size_t size, unsigned int count) { return sizeof(struct user_element) + size * count; }
0
63,435
static int srpt_parse_i_port_id(u8 i_port_id[16], const char *name) { const char *p; unsigned len, count, leading_zero_bytes; int ret, rc; p = name; if (strncasecmp(p, "0x", 2) == 0) p += 2; ret = -EINVAL; len = strlen(p); if (len % 2) goto out; count = min(len / 2, 16U); leading_zero_bytes = 16 - count;...
0
105,298
__Pyx_PyErr_GetTopmostException(PyThreadState *tstate) { _PyErr_StackItem *exc_info = tstate->exc_info; while ((exc_info->exc_type == NULL || exc_info->exc_type == Py_None) && exc_info->previous_item != NULL) { exc_info = exc_info->previous_item; } return exc_info; }
0
281,780
JSValue jsTestObjUnsignedLongLongAttr(ExecState* exec, JSValue slotBase, const Identifier&) { JSTestObj* castedThis = jsCast<JSTestObj*>(asObject(slotBase)); UNUSED_PARAM(exec); TestObj* impl = static_cast<TestObj*>(castedThis->impl()); JSValue result = jsNumber(impl->unsignedLongLongAttr()); return...
0
59,076
static ssize_t clear_refs_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) { struct task_struct *task; char buffer[PROC_NUMBUF]; struct mm_struct *mm; struct vm_area_struct *vma; long type; memset(buffer, 0, sizeof(buffer)); if (count > sizeof(buffer) - 1) count = sizeof(buffer...
0
176,159
void WebPageProxy::backForwardItemAtIndex(int32_t index, uint64_t& itemID) { WebBackForwardListItem* item = m_backForwardList->itemAtIndex(index); itemID = item ? item->itemID() : 0; }
0
80,230
int ipc_parse_version (int *cmd) { if (*cmd & IPC_64) { *cmd ^= IPC_64; return IPC_64; } else { return IPC_OLD; } }
0
445,305
void resumeListening() override { udp_listener_->enable(); }
0
161,344
static void check_sync_rss_stat(struct task_struct *task) { }
0
376,759
void HGraphBuilder::VisitCompareOperation(CompareOperation* expr) { ASSERT(!HasStackOverflow()); ASSERT(current_block() != NULL); ASSERT(current_block()->HasPredecessor()); if (IsClassOfTest(expr)) { CallRuntime* call = expr->left()->AsCallRuntime(); ASSERT(call->arguments()->length() == 1); CHECK_A...
0
281,046
SAPI_API void sapi_activate(TSRMLS_D) { zend_llist_init(&SG(sapi_headers).headers, sizeof(sapi_header_struct), (void (*)(void *)) sapi_free_header, 0); SG(sapi_headers).send_default_content_type = 1; /* SG(sapi_headers).http_response_code = 200; */ SG(sapi_headers).http_status_line = NULL; SG(sapi_headers).mime...
0
510,662
table_map Item_ref::used_tables() const { return get_depended_from() ? OUTER_REF_TABLE_BIT : (*ref)->used_tables(); }
0
10,214
image_transform_mod_end(PNG_CONST image_transform *this, image_pixel *that, png_const_structp pp, PNG_CONST transform_display *display) { PNG_CONST unsigned int scale = (1U<<that->sample_depth)-1; UNUSED(this) UNUSED(pp) UNUSED(display) /* At the end recalculate the digitized red green and blue v...
1
112,010
static void cit_send_x_00_05_02_08_01(struct gspca_dev *gspca_dev, u16 x) { cit_write_reg(gspca_dev, x, 0x0127); cit_write_reg(gspca_dev, 0x0000, 0x0124); cit_write_reg(gspca_dev, 0x0005, 0x0124); cit_write_reg(gspca_dev, 0x0002, 0x0124); cit_write_reg(gspca_dev, 0x0008, 0x0124); cit_write_reg(gspca_dev, 0x0...
0
15,248
static int nextch ( IO * wrapper ) { int ch ; _IO * io = wrapper -> top ; static const char * foguvec [ ] = { "moveto " , "rlineto " , "rrcurveto " , " " , " " , "Cache " , "10 div setlinewidth " , "ShowInt " , " " , " " , " " , " " , "FillStroke " , " " , " " , "SetWid " , "100 mul add " , "togNS_ " , " " , "close...
0
504,264
unsigned long tipc_link_tolerance(struct tipc_link *l) { return l->tolerance; }
0
337,651
static void isapc_machine_options(MachineClass *m) { pc_common_machine_options(m); m->desc = "ISA-only PC"; m->max_cpus = 1; }
0
416,616
int gx_device_unsubclass(gx_device *dev) { generic_subclass_data *psubclass_data; gx_device *parent, *child; gs_memory_struct_type_t *a_std = 0, *b_std = 0; int dynamic, ref_count; /* This should not happen... */ if (!dev) return 0; ref_count = dev->rc.ref_count; child = dev->c...
0
77,671
static unsigned long capacity_orig_of(int cpu) { return cpu_rq(cpu)->cpu_capacity_orig; }
0
432,672
void CascadeClassifier::detectMultiScale( InputArray image, CV_OUT std::vector<Rect>& objects, double scaleFactor, int minNeighbors, int flags, Size minSize, Size maxSize ) { CV_INSTRUMENT_REGION(); CV...
0
375,811
static int pl022_post_load(void *opaque, int version_id) { PL022State *s = opaque; if (s->tx_fifo_head < 0 || s->tx_fifo_head >= ARRAY_SIZE(s->tx_fifo) || s->rx_fifo_head < 0 || s->rx_fifo_head >= ARRAY_SIZE(s->rx_fifo)) { return -1; } return 0; }
0
9,963
Win32StackFrameUnwinder::~Win32StackFrameUnwinder() { if (pending_blacklisted_module_) { LeafUnwindBlacklist::GetInstance()->AddModuleToBlacklist( pending_blacklisted_module_); } }
1
259,515
GIT_INLINE(int) checkout_conflict_detect_submodule(checkout_conflictdata *conflict) { conflict->submodule = ((conflict->ancestor && S_ISGITLINK(conflict->ancestor->mode)) || (conflict->ours && S_ISGITLINK(conflict->ours->mode)) || (conflict->theirs && S_ISGITLINK(conflict->theirs->mode))); return 0; }
0
517,640
virtual void add_key_fields(JOIN *join, KEY_FIELD **key_fields, uint *and_level, table_map usable_tables, SARGABLE_PARAM **sargables) { return; }
0
491,706
scanner_add_literal (parser_context_t *context_p, /**< context */ scanner_context_t *scanner_context_p) /**< scanner context */ { return scanner_add_custom_literal (context_p, scanner_context_p->active_literal_pool_p, &cont...
0
349,352
ExecAlterObjectDependsStmt(AlterObjectDependsStmt *stmt, ObjectAddress *refAddress) { ObjectAddress address; ObjectAddress refAddr; Relation rel; address = get_object_address_rv(stmt->objectType, stmt->relation, (List *) stmt->object, &rel, AccessExclusiveLock, false); /* * If a relation was involve...
1
280,429
void ProcessCommitResponseCommand::ProcessCommitResponse( SyncSession* session) { ScopedDirLookup dir(session->context()->directory_manager(), session->context()->account_name()); if (!dir.good()) { LOG(ERROR) << "Scoped dir lookup failed!"; return; } StatusController* status ...
0
248,834
void WebPluginDelegatePepper::DidReceiveManualResponse( const GURL& url, const std::string& mime_type, const std::string& headers, uint32 expected_length, uint32 last_modified) { instance()->DidReceiveManualResponse(url, mime_type, headers, expected_length, last_modifie...
0
7,138
WRITE_JSON_ELEMENT(ArrStart) { /* increase depth, save: before first array entry no comma needed. */ ctx->commaNeeded[++ctx->depth] = false; return writeChar(ctx, '['); }
1
277,463
void CommandBufferProxyImpl::OnUpdateVSyncParameters(base::TimeTicks timebase, base::TimeDelta interval) { DCHECK(!gl::IsPresentationCallbackEnabled()); if (!update_vsync_parameters_completion_callback_.is_null()) update_vsync_parameters_completion_callback_....
0
117
static void _UTF7Reset ( UConverter * cnv , UConverterResetChoice choice ) { if ( choice <= UCNV_RESET_TO_UNICODE ) { cnv -> toUnicodeStatus = 0x1000000 ; cnv -> toULength = 0 ; } if ( choice != UCNV_RESET_TO_UNICODE ) { cnv -> fromUnicodeStatus = ( cnv -> fromUnicodeStatus & 0xf0000000 ) | 0x1000000 ; } }
1
390,107
MYSQL_RES * STDCALL mysql_store_result(MYSQL *mysql) { MYSQL_RES *result; DBUG_ENTER("mysql_store_result"); if (!mysql->fields) DBUG_RETURN(0); if (mysql->status != MYSQL_STATUS_GET_RESULT) { set_mysql_error(mysql, CR_COMMANDS_OUT_OF_SYNC, unknown_sqlstate); DBUG_RETURN(0); } mysql->status=M...
0
410,939
sort_page_names (gconstpointer a, gconstpointer b) { const char *name_1, *name_2; gchar *key_1, *key_2; gboolean sort_last_1, sort_last_2; int compare; name_1 = * (const char **) a; name_2 = * (const char **) b; #define SORT_LAST_CHAR1 '.' #define SORT_LAST_CHAR2 '#' sort_last_1 = name_1[0]...
0
510,985
void html_link_open(char *url, char *title, char *class) { html("<a href='"); html_attr(url); if (title) { html("' title='"); html_attr(title); } if (class) { html("' class='"); html_attr(class); } html("'>"); }
0
315,557
static inline bool isLocalFileScheme(WKStringRef scheme) { return WKStringIsEqualToUTF8CStringIgnoringCase(scheme, "file"); }
0
438,774
push_glob(VALUE ary, VALUE str, VALUE base, int flags) { struct glob_args args; int fd; rb_encoding *enc = rb_enc_get(str); #if defined _WIN32 || defined __APPLE__ str = rb_str_encode_ospath(str); #endif if (rb_enc_to_index(enc) == ENCINDEX_US_ASCII) enc = rb_filesystem_encoding(); if (rb_enc_...
0
103,212
main(int argc, char *argv[]) { oid objid[MAX_OID_LEN]; int objidlen = MAX_OID_LEN; int count; netsnmp_variable_list variable; netsnmp_init_mib(); if (argc < 2) print_subtree(stdout, tree_head, 0); variable.type = ASN_INTEGER; variable.val.inte...
0
442,310
void testMultiPartThreading (const std::string & tempDir) { try { cout << "Testing the multi part APIs for multi-thread use" << endl; random_reseed(1); int numThreads = ThreadPool::globalThreadPool().numThreads(); ThreadPool::globalThreadPool().setNumThreads(32); testW...
0
496,233
input_value_description(agooErr err, gqlDoc doc, gqlCobj obj, gqlField field, gqlSel sel, gqlValue result, int depth) { const char *key = sel->name; const char *s = ((gqlArg)obj->ptr)->desc; gqlValue desc; if (NULL != sel->alias) { key = sel->alias; } if (NULL == s) { desc = gql_null_create(e...
0
122,701
static int l_userauth_publickey (lua_State *L) { return userauth_publickey(L, 0, 0); }
0
422,128
update_delegate_response_cb (ESoapResponse *response, GSimpleAsyncResult *simple) { ESoapParameter *param; ESoapParameter *subparam; GError *error = NULL; if (ews_get_response_status (e_soap_response_get_parameter (response), &error)) { param = e_soap_response_get_first_parameter_by_...
0
467,166
int RGWHandler_REST_SWIFT::postauth_init() { struct req_init_state* t = &s->init_state; /* XXX Stub this until Swift Auth sets account into URL. */ s->bucket_tenant = s->user->user_id.tenant; s->bucket_name = t->url_bucket; dout(10) << "s->object=" << (!s->object.empty() ? s->object : rgw_obj_key("<NULL...
0
311,997
static PHP_FUNCTION(session_destroy) { if (zend_parse_parameters_none() == FAILURE) { return; } RETURN_BOOL(php_session_destroy(TSRMLS_C) == SUCCESS); }
0
512,019
bind_variable_value (var, value, aflags) SHELL_VAR *var; char *value; int aflags; { char *t; VUNSETATTR (var, att_invisible); if (var->assign_func) { /* If we're appending, we need the old value, so use make_variable_value */ t = (aflags & ASS_APPEND) ? make_variable_value (var,...
0
395,523
static void usage(void) { DBUG_ENTER("usage"); if (!(default_charset_info= get_charset_by_csname(default_character_set_name, MY_CS_PRIMARY, MYF(MY_WME)))) exit(1); if (!default_collation_name) default_collation_name= (char*) default_charset_info->name; print_version(); puts(OR...
0
67,018
static int mwifiex_pcie_delete_rxbd_ring(struct mwifiex_adapter *adapter) { struct pcie_service_card *card = adapter->card; const struct mwifiex_pcie_card_reg *reg = card->pcie.reg; mwifiex_cleanup_rxq_ring(adapter); if (card->rxbd_ring_vbase) pci_free_consistent(card->dev, card->rxbd_ring_size, card->r...
0
307,934
static WKURLRef blankURL() { static WKURLRef staticBlankURL = WKURLCreateWithUTF8CString("about:blank"); return staticBlankURL; }
0
216,920
MODRET set_displaylogin(cmd_rec *cmd) { config_rec *c = NULL; CHECK_ARGS(cmd, 1); CHECK_CONF(cmd, CONF_ROOT|CONF_VIRTUAL|CONF_GLOBAL|CONF_ANON); c = add_config_param_str(cmd->argv[0], 1, cmd->argv[1]); c->flags |= CF_MERGEDOWN; return PR_HANDLED(cmd); }
0
95,920
static struct kvm_memslots *install_new_memslots(struct kvm *kvm, int as_id, struct kvm_memslots *slots) { struct kvm_memslots *old_memslots = __kvm_memslots(kvm, as_id); /* * Set the low bit in the generation, which disables SPTE caching * until the end of synchronize_srcu_expedited. */ WARN_ON(old_memslot...
0
165,886
void RenderFrameImpl::ShowContextMenu(const blink::WebContextMenuData& data) { ContextMenuParams params = ContextMenuParamsBuilder::Build(data); blink::WebRect position_in_window(params.x, params.y, 0, 0); GetRenderWidget()->ConvertViewportToWindow(&position_in_window); params.x = position_in_window.x; params...
0
306,636
GSList* mono_image_verify_tables (MonoImage *image, int level) { /* The verifier was disabled at compile time */ return NULL;
0
466,688
sync_result_msg(Slapi_PBlock *pb, Sync_Cookie *cookie) { int rc = 0; char *cookiestr = sync_cookie2str(cookie); LDAPControl **ctrl = (LDAPControl **)slapi_ch_calloc(2, sizeof(LDAPControl *)); if (cookie->openldap_compat) { sync_create_sync_done_control(&ctrl[0], 1, cookiestr); } else { ...
0
308,711
static void webkit_web_view_size_request(GtkWidget* widget, GtkRequisition* requisition) { WebKitWebView* web_view = WEBKIT_WEB_VIEW(widget); Frame* coreFrame = core(webkit_web_view_get_main_frame(web_view)); if (!coreFrame) return; FrameView* view = coreFrame->view(); if (!view) re...
0
5,371
bool Unpack::ProcessDecoded(UnpackThreadData &D) { UnpackDecodedItem *Item=D.Decoded,*Border=D.Decoded+D.DecodedSize; while (Item<Border) { UnpPtr&=MaxWinMask; if (((WriteBorder-UnpPtr) & MaxWinMask)<MAX_LZ_MATCH+3 && WriteBorder!=UnpPtr) { UnpWriteBuf(); if (WrittenFileSize>DestUnpSize) ...
1
444,733
TEST_P(ProtocolIntegrationTest, MaxStreamDurationWithRetryPolicyWhenRetryUpstreamDisconnection) { testMaxStreamDurationWithRetry(true); }
0
366,442
static inline hpa_t pfn_to_hpa(pfn_t pfn) { return (hpa_t)pfn << PAGE_SHIFT; }
0
364,944
static void parseType(struct cli_bc *bc, struct cli_bc_type *ty, unsigned char *buffer, unsigned *off, unsigned len, char *ok) { unsigned j; ty->numElements = readNumber(buffer, off, len, ok); if (!*ok) { cli_errmsg("Error parsing type\n"); *ok = 0; return; } ty->containedTypes =...
0
174,020
xsltShallowCopyAttr(xsltTransformContextPtr ctxt, xmlNodePtr invocNode, xmlNodePtr target, xmlAttrPtr attr) { xmlAttrPtr copy; xmlChar *value; if (attr == NULL) return(NULL); if (target->type != XML_ELEMENT_NODE) { xsltTransformError(ctxt, NULL, invocNode, "Cannot add an attribute node to...
0
362,679
xmlPointerListFree(xmlPointerListPtr list) { if (list == NULL) return; if (list->items != NULL) xmlFree(list->items); xmlFree(list); }
0
180,482
handle_queue_get_config_request_for_port(struct ofport *port, uint32_t queue, struct ovs_list *replies) { struct smap details = SMAP_INITIALIZER(&details); if (queue != OFPQ_ALL) { int error = netdev_get_queue(port->netdev, queue, &details); switch (error...
0
11,968
static inline unsigned char unimap_bsearch(const uni_to_enc *table, unsigned code_key_a, size_t num) { const uni_to_enc *l = table, *h = &table[num-1], *m; unsigned short code_key; /* we have no mappings outside the BMP */ if (code_key_a > 0xFFFFU) return 0; code_key = (unsigned short) code_key_...
1
228,785
std::unique_ptr<EventMatcher> EventBindings::ParseEventMatcher( std::unique_ptr<base::DictionaryValue> filter) { return base::WrapUnique(new EventMatcher( std::move(filter), context()->GetRenderFrame()->GetRoutingID())); }
0
387,567
get_one_option(int optid, const struct my_option *opt __attribute__((unused)), char *argument) { DBUG_ENTER("get_one_option"); switch(optid) { #ifdef __NETWARE__ case OPT_AUTO_CLOSE: setscreenmode(SCR_AUTOCLOSE_ON_EXIT); break; #endif case 'v': verbose++; break; case 'p': if...
0
520,968
uint32 max_display_length() const { return field->max_display_length(); }
0
169,997
void js_setregistry(js_State *J, const char *name) { jsR_setproperty(J, J->R, name); js_pop(J, 1); }
0
38,679
JavascriptArray *JavascriptArray::GetArrayForArrayOrObjectWithArray( const Var var, bool *const isObjectWithArrayRef, TypeId *const arrayTypeIdRef) { // This is a helper function used by jitted code. The array checks done here match the array checks done by jitted code //...
0