idx
int64
func
string
target
int64
338,151
static void process_input_packet(InputStream *ist, const AVPacket *pkt, int no_eof) { int i; int repeating = 0; AVPacket avpkt; if (ist->next_dts == AV_NOPTS_VALUE) ist->next_dts = ist->last_dts; if (!pkt) { /* EOF handling */ av_init_packet(&avpkt); avp...
1
401,913
ZEND_VM_HOT_TYPE_SPEC_HANDLER(ZEND_SUB, (op1_info == MAY_BE_LONG && op2_info == MAY_BE_LONG), ZEND_SUB_LONG, CONST|TMPVARCV, CONST|TMPVARCV, SPEC(NO_CONST_CONST)) { USE_OPLINE zval *op1, *op2, *result; op1 = GET_OP1_ZVAL_PTR_UNDEF(BP_VAR_R); op2 = GET_OP2_ZVAL_PTR_UNDEF(BP_VAR_R); result = EX_VAR(opline->result.v...
0
179,751
bool HTMLFormElement::HasLegalLinkAttribute(const QualifiedName& name) const { return name == actionAttr || HTMLElement::HasLegalLinkAttribute(name); }
0
202,512
virtual ~MockVideoCaptureImplManager() {}
0
354,336
static void cirrus_cursor_invalidate(VGAState *s1) { CirrusVGAState *s = (CirrusVGAState *)s1; int size; if (!s->sr[0x12] & CIRRUS_CURSOR_SHOW) { size = 0; } else { if (s->sr[0x12] & CIRRUS_CURSOR_LARGE) size = 64; else size = 32; } /* invalidate ...
0
334,986
static int unpack(const uint8_t *src, const uint8_t *src_end, unsigned char *dst, int width, int height) { unsigned char *dst_end = dst + width*height; int size,size1,size2,offset,run; unsigned char *dst_start = dst; if (src[0] & 0x01) src += 5; else src += 2; if (src...
1
215,354
void JSTestInterface::finishCreation(JSGlobalData& globalData) { Base::finishCreation(globalData); ASSERT(inherits(&s_info)); }
0
365,477
rsRetVal rsCStrTrimTrailingWhiteSpace(cstr_t *pThis) { register int i; register uchar *pC; rsCHECKVALIDOBJECT(pThis, OIDrsCStr); i = pThis->iStrLen; pC = pThis->pBuf + i - 1; while(i > 0 && isspace((int)*pC)) { --pC; --i; } /* i now is the new string length! */ pThis->iStrLen = i; return RS_RET_OK; }
0
318,874
static void gen_tlbre_440(DisasContext *ctx) { #if defined(CONFIG_USER_ONLY) gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); #else if (unlikely(ctx->pr)) { gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); return; } switch (rB(ctx->opcode)) { case 0: case 1: case ...
1
521,108
String *val_str(String *to) { return has_value() ? Datetime(this).to_string(to, decimals) : NULL; }
0
362,880
int sock_getsockopt(struct socket *sock, int level, int optname, char __user *optval, int __user *optlen) { struct sock *sk = sock->sk; union { int val; struct linger ling; struct timeval tm; } v; int lv = sizeof(int); int len; if (get_user(len, optlen)) return -EFAULT; if (len < 0) return -EI...
0
195,800
static void TIFFWarnings(const char *module,const char *format,va_list warning) { char message[MaxTextExtent]; ExceptionInfo *exception; #if defined(MAGICKCORE_HAVE_VSNPRINTF) (void) vsnprintf(message,MaxTextExtent,format,warning); #else (void) vsprintf(message,format,warning); #endif (void) Concate...
0
243,479
void ChromeClientImpl::ShowVirtualKeyboardOnElementFocus(LocalFrame& frame) { WebLocalFrameImpl::FromFrame(frame.LocalFrameRoot()) ->FrameWidget() ->Client() ->ShowVirtualKeyboardOnElementFocus(); }
0
303,286
static void DumpVirtIOFeatures(PPARANDIS_ADAPTER pContext) { static const struct { ULONG bitmask; PCHAR Name; } Features[] = { {VIRTIO_NET_F_CSUM, "VIRTIO_NET_F_CSUM" }, {VIRTIO_NET_F_GUEST_CSUM, "VIRTIO_NET_F_GUEST_CSUM" }, {VIRTIO_NET_F_MAC, "VIRTIO_NET_F_MAC" }, {VIRTIO_NET...
0
232,975
cc::EffectTree& PropertyTreeManager::GetEffectTree() { return property_trees_.effect_tree; }
0
185,358
void InputMethodLinuxX11::Init(bool focused) { CHECK(LinuxInputMethodContextFactory::instance()); input_method_context_ = LinuxInputMethodContextFactory::instance()->CreateInputMethodContext( this); CHECK(input_method_context_.get()); InputMethodBase::Init(focused); if (focused) { input_...
0
181,573
void UnloadController::ClearUnloadState(content::WebContents* web_contents, bool process_now) { if (is_attempting_to_close_browser_) { RemoveFromSet(&tabs_needing_before_unload_fired_, web_contents); RemoveFromSet(&tabs_needing_unload_fired_, web_contents); if (proc...
0
91,555
void CLASS stretch() { ushort newdim, (*img)[4], *pix0, *pix1; int row, col, c; double rc, frac; if (pixel_aspect == 1) return; dcraw_message (DCRAW_VERBOSE,_("Stretching the image...\n")); if (pixel_aspect < 1) { newdim = height / pixel_aspect + 0.5; img = (ushort (*)[4]) calloc (width*newdim, siz...
0
239,231
void TestShelfBackgroundObserver::UpdateShelfBackground(SkColor color) { background_color_ = color; }
0
217,864
void BrowserActionButton::SetButtonPushed() { SetState(views::CustomButton::BS_PUSHED); menu_visible_ = true; }
0
455,689
TEST_F(QueryPlannerTest, MultikeyElemMatchValue) { // true means multikey addIndex(BSON("a.b" << 1), true); runQuery(fromjson("{'a.b': {$elemMatch: {$gte: 1, $lte: 1}}}}}")); assertNumSolutions(2U); assertSolutionExists("{cscan: {dir: 1}}"); assertSolutionExists( "{fetch: {node: {ixscan...
0
190,046
void WebLocalFrameImpl::MixedContentFound( const WebURL& main_resource_url, const WebURL& mixed_content_url, WebURLRequest::RequestContext request_context, bool was_allowed, bool had_redirect, const WebSourceLocation& source_location) { DCHECK(GetFrame()); std::unique_ptr<SourceLocation> sou...
0
295,223
ex_popup(exarg_T *eap) { # if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_GTK) if (gui.in_use) gui_make_popup(eap->arg, eap->forceit); # ifdef FEAT_TERM_POPUP_MENU else # endif # endif # ifdef FEAT_TERM_POPUP_MENU pum_make_popup(eap->arg, eap->forceit); # endif }
0
45,395
static int __pyx_CyFunction_init(void) { __pyx_CyFunctionType = __Pyx_FetchCommonType(&__pyx_CyFunctionType_type); if (unlikely(__pyx_CyFunctionType == NULL)) { return -1; } return 0; }
0
158,727
void commit() { committed = true; }
0
445,315
Network::ActiveUdpListenerFactory* udpListenerFactory() override { NOT_REACHED_GCOVR_EXCL_LINE; }
0
358,139
int uncached_readdir(nfs_readdir_descriptor_t *desc, void *dirent, filldir_t filldir) { struct file *file = desc->file; struct inode *inode = file->f_path.dentry->d_inode; struct rpc_cred *cred = nfs_file_cred(file); struct page *page = NULL; int status; unsigned long timestamp; dfprintk(DIRCACHE, "NFS:...
0
150,324
virtual ~CoalesceProvider() { }
0
77,138
R_API RList *r_bin_get_symbols(RBin *bin) { RBinObject *o = r_bin_cur_object (bin); return o? o->symbols: NULL; }
0
159,556
int CClient::SendMsg(CMsgPacker *pMsg, int Flags) { return SendMsgEx(pMsg, Flags, false); }
0
396,090
DSA_PublicKey::DSA_PublicKey(Source& source) { Initialize(source); }
0
40,522
static void __mark_reg_known(struct bpf_reg_state *reg, u64 imm) { /* Clear id, off, and union(map_ptr, range) */ memset(((u8 *)reg) + sizeof(reg->type), 0, offsetof(struct bpf_reg_state, var_off) - sizeof(reg->type)); reg->var_off = tnum_const(imm); reg->smin_value = (s64)imm; reg->smax_value = (s64)imm; ...
0
19,303
void TSHttpTxnTransformedRespCache ( TSHttpTxn txnp , int on ) { sdk_assert ( sdk_sanity_check_txn ( txnp ) == TS_SUCCESS ) ; HttpSM * sm = ( HttpSM * ) txnp ; sm -> t_state . api_info . cache_transformed = ( on ? true : false ) ; }
0
251,440
void SecurityHandler::Wire(UberDispatcher* dispatcher) { frontend_.reset(new Security::Frontend(dispatcher->channel())); Security::Dispatcher::wire(dispatcher, this); }
0
44,638
GF_Err dimC_dump(GF_Box *a, FILE * trace) { GF_DIMSSceneConfigBox *p = (GF_DIMSSceneConfigBox *)a; gf_isom_box_dump_start(a, "DIMSSceneConfigBox", trace); fprintf(trace, "profile=\"%d\" level=\"%d\" pathComponents=\"%d\" useFullRequestHosts=\"%d\" streamType=\"%d\" containsRedundant=\"%d\" textEncoding=\"%s\" conten...
0
181,547
void RenderViewImpl::showContextMenu( WebFrame* frame, const WebContextMenuData& data) { content::ContextMenuParams params(data); if (frame) params.frame_id = frame->identifier(); if (params.src_url.spec().size() > content::kMaxURLChars) params.src_url = GURL(); context_menu_node_ = data.node; S...
0
212,738
Eina_Bool ewk_view_text_zoom_set(Evas_Object* ewkView, float textZoomFactor) { EWK_VIEW_SD_GET_OR_RETURN(ewkView, smartData, false); return ewk_frame_text_zoom_set(smartData->main_frame, textZoomFactor); }
0
516,195
MSG_PROCESS_RETURN tls_process_certificate_request(SSL *s, PACKET *pkt) { size_t i; /* Clear certificate validity flags */ for (i = 0; i < SSL_PKEY_NUM; i++) s->s3.tmp.valid_flags[i] = 0; if (SSL_IS_TLS13(s)) { PACKET reqctx, extensions; RAW_EXTENSION *rawexts = NULL; ...
0
522,979
void LEX::stmt_install_plugin(const LEX_CSTRING &soname) { sql_command= SQLCOM_INSTALL_PLUGIN; comment= null_clex_str; ident= soname; }
0
157,458
int load_uimage(const char *filename, hwaddr *ep, hwaddr *loadaddr, int *is_linux, uint64_t (*translate_fn)(void *, uint64_t), void *translate_opaque) { return load_uboot_image(filename, ep, loadaddr, is_linux, IH_TYPE_KERNEL, translate_fn,...
0
45,979
int LuaSettings::l_write(lua_State* L) { NO_MAP_LOCK_REQUIRED; LuaSettings* o = checkobject(L, 1); if (!o->m_write_allowed) { throw LuaError("Settings: writing " + o->m_filename + " not allowed with mod security on."); } bool success = o->m_settings->updateConfigFile(o->m_filename.c_str()); lua_pushboolea...
0
399,041
static int shouldexp_replacement (s) char *s; { register char *p; for (p = s; p && *p; p++) { if (*p == '\\') p++; else if (*p == '&') return 1; } return 0;
0
220,225
status_t SoftMPEG2::resetPlugin() { mIsInFlush = false; mReceivedEOS = false; memset(mTimeStamps, 0, sizeof(mTimeStamps)); memset(mTimeStampsValid, 0, sizeof(mTimeStampsValid)); /* Initialize both start and end times */ gettimeofday(&mTimeStart, NULL); gettimeofday(&mTimeEnd, NULL); return O...
0
257,495
static void unset_active_map ( const vpx_codec_enc_cfg_t * cfg , vpx_codec_ctx_t * codec ) { vpx_active_map_t map = { 0 , 0 , 0 } ; map . rows = ( cfg -> g_h + 15 ) / 16 ; map . cols = ( cfg -> g_w + 15 ) / 16 ; map . active_map = NULL ; if ( vpx_codec_control ( codec , VP8E_SET_ACTIVEMAP , & map ) ) die_codec (...
0
522,206
bool Item_func_get_user_var::set_value(THD *thd, sp_rcontext * /*ctx*/, Item **it) { Item_func_set_user_var *suv= new (thd->mem_root) Item_func_set_user_var(thd, get_name(), *it); /* Item_func_set_user_var is not fixed after construction, call fix_fields(). */ retu...
0
62,169
static void __exit fini(void) { reclaim_dma_bufs(); unregister_virtio_driver(&virtio_console); unregister_virtio_driver(&virtio_rproc_serial); class_destroy(pdrvdata.class); debugfs_remove_recursive(pdrvdata.debugfs_dir); }
0
44,160
ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr, char *buf) { cap_t cap; ssize_t rc; rc = tpm_getcap(dev, TPM_CAP_FLAG_PERM, &cap, "attempting to determine the permanent enabled state"); if (rc) return 0; rc = sprintf(buf, "%d\n", !cap.perm_flags.disable); return rc; }
0
184,886
~ResourceClientProxy() { }
0
132,288
static void nfnl_err_deliver(struct list_head *err_list, struct sk_buff *skb) { struct nfnl_err *nfnl_err, *next; list_for_each_entry_safe(nfnl_err, next, err_list, head) { netlink_ack(skb, nfnl_err->nlh, nfnl_err->err); nfnl_err_del(nfnl_err); } }
0
360,594
mount_added_callback (GVolumeMonitor *monitor, GMount *mount, NautilusApplication *application) { NautilusDirectory *directory; GFile *root; root = g_mount_get_root (mount); directory = nautilus_directory_get_existing (root); g_object_unref (root); if (directory != NULL) { nautilus_directory_...
0
12,932
void AppListControllerDelegate::DoShowAppInfoFlow( Profile* profile, const std::string& extension_id) { DCHECK(CanDoShowAppInfoFlow()); ExtensionService* service = extensions::ExtensionSystem::Get(profile)->extension_service(); DCHECK(service); const extensions::Extension* extension = service->...
1
448,858
art_pdf_knockout_composite_pixel_alpha_8(byte *gs_restrict backdrop, byte tos_shape, byte *gs_restrict dst, const byte *gs_restrict src, int n_chan, gs_blend_mode_t blend_mode, const pdf14_nonseparable_blending_procs_t * pblend_procs, pdf14_device ...
0
304,395
static bool verify_dotgit_hfs(const char *path, size_t len) { return verify_dotgit_hfs_generic(path, len, "git", CONST_STRLEN("git")); }
0
509,362
tsize_t t2p_sample_realize_palette(T2P* t2p, unsigned char* buffer){ uint32 sample_count=0; uint16 component_count=0; uint32 palette_offset=0; uint32 sample_offset=0; uint32 i=0; uint32 j=0; sample_count=t2p->tiff_width*t2p->tiff_length; component_count=t2p->tiff_samplesperpixel; if( sample_count * com...
0
502,588
unsigned VvcUnit::extractUEGolombCode() { int cnt = 0; for (; m_reader.getBits(1) == 0; cnt++) ; if (cnt > INT_BIT) THROW_BITSTREAM_ERR; return (1 << cnt) - 1 + m_reader.getBits(cnt); }
0
62,441
void static InvalidChainFound(CBlockIndex* pindexNew) { if (pindexNew->bnChainWork > bnBestInvalidWork) { bnBestInvalidWork = pindexNew->bnChainWork; CTxDB().WriteBestInvalidWork(bnBestInvalidWork); MainFrameRepaint(); } printf("InvalidChainFound: invalid block=%s height=%d wor...
0
506,234
static int ssl3_get_record(SSL *s) { int ssl_major,ssl_minor,al; int enc_err,n,i,ret= -1; SSL3_RECORD *rr; SSL_SESSION *sess; unsigned char *p; unsigned char md[EVP_MAX_MD_SIZE]; short version; unsigned int mac_size; int clear=0; size_t extra; int decryption_failed_or_bad_record_mac = 0; unsigned char *mac...
0
171,907
void FileDescriptorSet::CommitAll() { for (std::vector<base::FileDescriptor>::iterator i = descriptors_.begin(); i != descriptors_.end(); ++i) { if (i->auto_close) HANDLE_EINTR(close(i->fd)); } descriptors_.clear(); consumed_descriptor_highwater_ = 0; }
0
474,293
int LUKS2_reencrypt_lock_by_dm_uuid(struct crypt_device *cd, const char *dm_uuid, struct crypt_lock_handle **reencrypt_lock) { int r; char hdr_uuid[37]; const char *uuid = crypt_get_uuid(cd); if (!dm_uuid) return -EINVAL; if (!uuid) { r = snprintf(hdr_uuid, sizeof(hdr_uuid), "%.8s-%.4s-%.4s-%.4s-%.12s", ...
0
311,937
status_t CameraClient::connect(const sp<ICameraClient>& client) { int callingPid = getCallingPid(); LOG1("connect E (pid %d)", callingPid); Mutex::Autolock lock(mLock); if (mClientPid != 0 && checkPid() != NO_ERROR) { ALOGW("Tried to connect to a locked camera (old pid %d, new pid %d)", ...
0
119,572
static void * u_zalloc(void * q, unsigned n, unsigned m) { (void)q; return o_malloc((size_t) n * m); }
0
18,693
static int dissect_h245_RequestChannelCloseRejectCause ( tvbuff_t * tvb _U_ , int offset _U_ , asn1_ctx_t * actx _U_ , proto_tree * tree _U_ , int hf_index _U_ ) { offset = dissect_per_choice ( tvb , offset , actx , tree , hf_index , ett_h245_RequestChannelCloseRejectCause , RequestChannelCloseRejectCause_choice , NUL...
0
31,475
ModResult OnUserRegister(LocalUser *user) { SaslAuthenticator *sasl_ = authExt.get(user); if (sasl_) { sasl_->Abort(); authExt.unset(user); } return MOD_RES_PASSTHRU; }
0
505,138
static int srp_Verify_N_and_g(const BIGNUM *N, const BIGNUM *g) { BN_CTX *bn_ctx = BN_CTX_new(); BIGNUM *p = BN_new(); BIGNUM *r = BN_new(); int ret = g != NULL && N != NULL && bn_ctx != NULL && BN_is_odd(N) && BN_is_prime_ex(N, SRP_NUMBER_ITERATIONS_FOR_PRIME, bn_ctx, NULL) && p != NULL && BN_rshift1(p, N) ...
0
495,489
njs_string_instance_length(njs_vm_t *vm, njs_object_prop_t *prop, njs_value_t *value, njs_value_t *setval, njs_value_t *retval) { size_t size; uintptr_t length; njs_object_t *proto; njs_object_value_t *ov; /* * This getter can be called for string primitive, ...
0
90,006
static inline bool d_is_autodir(const struct dentry *dentry) { return __d_entry_type(dentry) == DCACHE_AUTODIR_TYPE; }
0
399,385
static int kthread(void *_create) { /* Copy data: it's on kthread's stack */ struct kthread_create_info *create = _create; int (*threadfn)(void *data) = create->threadfn; void *data = create->data; struct completion *done; struct kthread *self; int ret; self = kmalloc(sizeof(*self), GFP_KERNEL); set_kthread_s...
0
273,234
static journal_t *ext4_get_journal(struct super_block *sb, unsigned int journal_inum) { struct inode *journal_inode; journal_t *journal; BUG_ON(!EXT4_HAS_COMPAT_FEATURE(sb, EXT4_FEATURE_COMPAT_HAS_JOURNAL)); /* First, test for the existence of a valid inode on disk. Bad * things happen if we iget() an u...
0
63,891
bool sql_slave_killed(THD* thd, Relay_log_info* rli) { bool ret= FALSE; bool is_parallel_warn= FALSE; DBUG_ENTER("sql_slave_killed"); DBUG_ASSERT(rli->info_thd == thd); DBUG_ASSERT(rli->slave_running == 1); if (abort_loop || thd->killed || rli->abort_slave) { is_parallel_warn= (rli->is_parallel_exec...
0
426,563
ZEND_INI_MH(OnUpdateEncode) { if (new_value && ZSTR_LEN(new_value)) { const zend_encoding **return_list; size_t return_size; if (FAILURE == zend_multibyte_parse_encoding_list(ZSTR_VAL(new_value), ZSTR_LEN(new_value), &return_list, &return_size, 0)) { php_error_docref(NULL, E_WARNING, "Illegal encoding ignore...
0
301,178
do_core_note(struct magic_set *ms, unsigned char *nbuf, uint32_t type, int swap, uint32_t namesz, uint32_t descsz, size_t noff, size_t doff, int *flags, size_t size, int clazz) { #ifdef ELFCORE int os_style = -1; /* * Sigh. The 2.0.36 kernel in Debian 2.1, at * least, doesn't correctly implement name *...
0
289,560
static int dissect_mac_fdd_pch ( tvbuff_t * tvb , packet_info * pinfo , proto_tree * tree , void * data ) { proto_tree * pch_tree = NULL ; proto_item * channel_type ; col_set_str ( pinfo -> cinfo , COL_PROTOCOL , "MAC" ) ; col_set_str ( pinfo -> cinfo , COL_INFO , "PCCH" ) ; if ( tree ) { proto_item * ti ; ti = ...
0
493,738
int fuse_fs_releasedir(struct fuse_fs *fs, const char *path, struct fuse_file_info *fi) { fuse_get_context()->private_data = fs->user_data; if (fs->op.releasedir) return fs->op.releasedir(path, fi); else return 0; }
0
249,508
void RenderViewImpl::OnSetEditableSelectionOffsets(int start, int end) { base::AutoReset<bool> handling_select_range(&handling_select_range_, true); DCHECK(!handling_ime_event_); handling_ime_event_ = true; webview()->setEditableSelectionOffsets(start, end); handling_ime_event_ = false; UpdateTextInputState...
0
163,999
void RenderBox::computeBlockDirectionMargins(RenderBlock* containingBlock) { if (isTableCell()) { setMarginBefore(0); setMarginAfter(0); return; } int cw = containingBlockLogicalWidthForContent(); RenderStyle* containingBlockStyle = containingBlock->style(); containingBlock...
0
388,229
static noinline int btrfs_mksubvol(struct path *parent, char *name, int namelen, struct btrfs_root *snap_src, u64 *async_transid, bool readonly, struct btrfs_qgroup_inherit *inherit) { struct inode *dir = d_inode(parent->dentry); struct dentry *dentry; int error; error = mutex_lock_kil...
0
388,090
gdm_session_handle_client_cancel (GdmDBusUserVerifier *user_verifier_interface, GDBusMethodInvocation *invocation, GdmSession *self) { gdm_dbus_user_verifier_complete_cancel (user_verifier_interface, ...
0
71,790
frame_diff(u16 left, u16 right) { return ((unsigned) (left - right)) % (USB_MAX_FRAME_NUMBER + 1); }
0
249,155
void PasswordAutofillManager::ClearPreviewedForm() { password_manager_driver_->ClearPreviewedForm(); }
0
195,106
BackgroundLoaderOffliner* BackgroundLoaderOffliner::FromWebContents( content::WebContents* contents) { Offliner* offliner = OfflinerUserData::OfflinerFromWebContents(contents); if (offliner) return static_cast<BackgroundLoaderOffliner*>(offliner); return nullptr; }
0
77,130
static uint8_t pfkey_proto_from_xfrm(uint8_t proto) { return proto ? proto : IPSEC_PROTO_ANY; }
0
352,230
static void test_strncspn(void) { size_t len; len = c_shquote_strncspn(NULL, 0, "a"); c_assert(len == 0); len = c_shquote_strncspn("a", 1, ""); c_assert(len == 1); len = c_shquote_strncspn("ab", 2, "ac"); c_assert(len == 0); len = c_shquote_strncspn("a...
1
383,996
gnutls_x509_crt_get_verify_algorithm(gnutls_x509_crt_t crt, const gnutls_datum_t * signature, gnutls_digest_algorithm_t * hash) { gnutls_pk_params_st issuer_params; int ret; if (crt == NULL) { gnutls_assert(); return GNUTLS_E_INVALID_REQUEST; } ret = _gnutls_x509_crt_get_mpis(crt, &issuer_p...
0
262,457
error_t mqttSnClientProcessEvents(MqttSnClientContext *context, systime_t timeout) { error_t error; systime_t d; systime_t startTime; systime_t currentTime; IpAddr ipAddr; uint16_t port; //Flush buffer context->message.length = 0; //Save current time currentTime = osGetSystemTime(); ...
0
235,755
CreateFileResult() : m_failed(false) , m_code(0) { }
0
351,919
if (sz + idx > maxSz) { return WS_BUFFER_E; }
1
128,489
static StackAllocator& instance() { // Avoid using true dynamic memory allocation to be portable to bare metal. static char inst_memory[sizeof(StackAllocator)]; static StackAllocator* inst = new (inst_memory) StackAllocator; return *inst; }
0
186,392
EmbeddedWorkerContextClient::~EmbeddedWorkerContextClient() { DCHECK(g_worker_client_tls.Pointer()->Get() != NULL); g_worker_client_tls.Pointer()->Set(NULL); }
0
402,340
static void xhci_xfer_unmap(XHCITransfer *xfer) { usb_packet_unmap(&xfer->packet, &xfer->sgl); qemu_sglist_destroy(&xfer->sgl); }
0
518,154
void Item_string::print(String *str, enum_query_type query_type) { const bool print_introducer= !(query_type & QT_WITHOUT_INTRODUCERS) && is_cs_specified(); if (print_introducer) { str->append('_'); str->append(collation.collation->csname); } str->append('\''); if (query_type & QT_TO_SYSTEM_CH...
0
165,149
dtls1_copy_record(SSL *s, pitem *item) { DTLS1_RECORD_DATA *rdata; rdata = (DTLS1_RECORD_DATA *)item->data; if (s->s3->rbuf.buf != NULL) OPENSSL_free(s->s3->rbuf.buf); s->packet = rdata->packet; s->packet_length = rdata->packet_length; memcpy(&(s->s3->rbuf), &(rdata->rbuf)...
0
234,935
void ContainerNode::attach(const AttachContext& context) { attachChildren(context); clearChildNeedsStyleRecalc(); Node::attach(context); }
0
253,087
BackingStore* RenderWidgetHostViewGuest::AllocBackingStore( const gfx::Size& size) { NOTIMPLEMENTED(); return NULL; }
0
474,529
libxlDomainDefNamespaceFormatXML(virBuffer *buf, void *nsdata) { libxlDomainXmlNsDef *cmd = nsdata; size_t i; if (!cmd->num_args) return 0; virBufferAddLit(buf, "<xen:commandline>\n"); virBufferAdjustIndent(buf, 2); for (i = 0; i < cmd->num_args; i++) ...
0
184,915
void LoginDisplayHostWebUI::OnStartSignInScreen( const LoginScreenContext& context) { DisableKeyboardOverscroll(); restore_path_ = RESTORE_SIGN_IN; is_showing_login_ = true; if (features::IsAshInBrowserProcess()) finalize_animation_type_ = ANIMATION_WORKSPACE; if (waiting_for_wallpaper_load_ && !ini...
0
255,026
fp_set_per_packet_inf_from_conv(umts_fp_conversation_info_t *p_conv_data, tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree _U_) { fp_info *fpi; guint8 tfi, c_t; int offset = 0, i=0, j=0, num_tbs, chan, tb_size, tb_bit_off; gboo...
1
373,817
TEST(BSONValidateFast, Simple2 ) { char buf[64]; for ( int i=1; i<=JSTypeMax; i++ ) { BSONObjBuilder b; sprintf( buf, "foo%d", i ); b.appendMinForType( buf, i ); sprintf( buf, "bar%d", i ); b.appendMaxForType( buf, i ); BSONObj ...
0
18,962
static gsize label_fill ( char * label_str , gsize pos , const header_field_info * hfinfo , const char * text ) { gsize name_pos ; name_pos = pos = label_concat ( label_str , pos , hfinfo -> name ) ; pos = label_concat ( label_str , pos , ": " ) ; pos = label_concat ( label_str , pos , text ? text : "(null)" ) ; i...
0
82,415
int dcb_setapp(struct net_device *dev, struct dcb_app *new) { struct dcb_app_type *itr; struct dcb_app_type event; int err = 0; event.ifindex = dev->ifindex; memcpy(&event.app, new, sizeof(event.app)); if (dev->dcbnl_ops->getdcbx) event.dcbx = dev->dcbnl_ops->getdcbx(dev); spin_lock(&dcb_lock); /* Search fo...
0
219,312
void setPictographFontFamilyWrapper(WebSettings* settings, const string16& font, UScriptCode script) { settings->setPictographFontFamily(font, script); }
0