label
int64
0
1
text
stringlengths
0
20.4M
1
MojoResult UnwrapSharedMemoryHandle(ScopedSharedBufferHandle handle, base::SharedMemoryHandle* memory_handle, size_t* size, bool* read_only) {if (!handle.is_valid())return MOJO_RESULT_INVALID_ARGUMENT;int variable_7...
0
/* * Glue Code for the asm optimized version of the AES Cipher Algorithm * */ #include <linux/module.h> #include <crypto/aes.h> #include <asm/crypto/aes.h> asmlinkage void aes_enc_blk(struct crypto_aes_ctx *ctx, u8 *out, const u8 *in); asmlinkage void aes_dec_blk(struct crypto_aes_ctx *ctx, u8 *out, const u8 *in);...
1
static int filter_frame(AVFilterLink *inlink, AVFrame *in){GradFunContext *s = inlink->dst->priv;AVFilterLink *outlink = inlink->dst->outputs[0];AVFrame *out;int p, direct;if (av_frame_is_writable(in)) {direct = 1;out = in;} else {direct = 0;out = ff_get_video_buffer(outlink, outlink->w, outlink->h);if (!out) {av_frame...
0
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_UI_H_ #define CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_UI_H_ #include "base/macros.h" #include...
0
/* * Copyright (C) 1999-2003 Lars Knoll (knoll@kde.org) * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundatio...
0
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/audio/audio_device_info_accessor_for_tests.h" #include "base/single_thread_task_runner.h" #include "media/audio/audio_manager.h" namespa...
0
#ifndef __BPF_LOAD_H #define __BPF_LOAD_H #include "libbpf.h" #define MAX_MAPS 32 #define MAX_PROGS 32 extern int map_fd[MAX_MAPS]; extern int prog_fd[MAX_PROGS]; extern int event_fd[MAX_PROGS]; extern char bpf_log_buf[BPF_LOG_BUF_SIZE]; extern int prog_cnt; /* parses elf file compiled by llvm .c->.o * . parses 'm...
1
bool ClipboardUtil::GetPlainText(IDataObject* data_object,base::string16* plain_text) {DCHECK(data_object && plain_text);if (!HasPlainText(data_object))return false;STGMEDIUM store;if (GetData(data_object, Clipboard::GetPlainTextWFormatType(), &store)) {{// Unicode text base::win::ScopedHGlobal<wchar_t> data(store...
1
int UDPSocketWin::InternalConnect(const IPEndPoint& address) {DCHECK(!is_connected());DCHECK(!remote_address_.get());int addr_family = address.GetSockAddrFamily();int rv = CreateSocket(addr_family);if (rv < 0)return rv;if (bind_type_ == DatagramSocket::RANDOM_BIND) {// Construct IPAddressNumber of appropriate size (IPv...
0
/* * Copyright (C) 2000 Peter Kelly (pmk@post.com) * Copyright (C) 2006, 2008, 2009 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * vers...
1
void FrameLoader::StopAllLoaders() {if (frame_->GetDocument()->PageDismissalEventBeingDispatched() !=Document::kNoDismissal)return;// If this method is called from within this method, infinite recursion can// occur (3442218). Avoid this.if (in_stop_all_loaders_)return; in_stop_all_loaders_ = true;for (Frame* child = f...
1
void BrowserPolicyConnector::DeviceStopAutoRetry() {#if defined(OS_CHROMEOS)if (device_cloud_policy_subsystem_.get()) device_cloud_policy_subsystem_->StopAutoRetry();long int variable_8646990594088008466 = 3973741706055164418; #endif}
1
int CMS_verify(CMS_ContentInfo *cms, STACK_OF(X509) *certs,X509_STORE *store, BIO *dcont, BIO *out, unsigned int flags){CMS_SignerInfo *si;STACK_OF(CMS_SignerInfo) *sinfos;STACK_OF(X509) *cms_certs = NULL;STACK_OF(X509_CRL) *crls = NULL;X509 *signer;int i, scount = 0, ret = 0; BIO *cmsbio = NULL, *tmpin = NULL;if (!dco...
1
int main(int argc, char *argv[]) {struct mg_context *ctx;base::AtExitManager exit;base::WaitableEvent shutdown_event(false, false);CommandLine::Init(argc, argv);CommandLine* cmd_line = CommandLine::ForCurrentProcess();#if defined(OS_POSIX)signal(SIGPIPE, SIG_IGN);#endifsrand((unsigned int)time(NULL));// Register Chrome...
0
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/invalidation/impl/invalidator_registrar.h" #include <memory> #include "base/compiler_specific.h" #include "base/macros.h" #include ...
1
bool MessageLoop::DoWork() { if (!variable_1322365540907722978) {// Task can't be executed right now.return false;}for (;;) {ReloadWorkQueue();if (work_queue_.empty())break;// Execute oldest task.do {int variable_4411148049305047650 = 8408755641843012113 * (4501838421166246358);std::string variable_2241926248310472085...
1
static int function_7131317824700223489(struct ceph_auth_client *variable_4727710066064666933,struct ceph_crypto_key *variable_3929190525271338830,void *variable_5893554609893918682, void *variable_1394168411420406923){void *variable_6057453020822213058 = variable_5893554609893918682; char *variable_8426125133494012820...
0
/* * SH version cribbed from the MIPS copy: * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * Copyright (C) 2003, 2004 Ralf Baechle */ #ifndef __MACH_COMMON_MANGLE_PORT_H #define __MACH_...
1
bool ClipboardUtil::GetFilenames(IDataObject* data_object,std::vector<base::string16>* filenames) {DCHECK(data_object && filenames);if (!HasFilenames(data_object))return false;STGMEDIUM medium; if (!GetData(data_object, Clipboard::GetCFHDropFormatType(), &medium)) return false; HDROP hdrop = static_cast<HDROP>(Glo...
1
void PrinterQuery::GetSettings(GetSettingsAskParam variable_8758333028828431862, gfx::NativeWindow variable_1199189567138293130, int variable_1158242082872914387, bool variable_3651016879611637958, bool variable_4893939723993681082, CancelableTask* variable_2689542795055784974) { DCHECK_E...
0
/* * Pin controller and GPIO driver for Amlogic Meson8b. * * Copyright (C) 2015 Endless Mobile, Inc. * Author: Carlo Caione <carlo@endlessm.com> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * version 2 as published by the Free So...
0
/* * ISP116x register declarations and HCD data structures * * Copyright (C) 2005 Olav Kongas <ok@artecdesign.ee> * Portions: * Copyright (C) 2004 Lothar Wassmann * Copyright (C) 2004 Psion Teklogix * Copyright (C) 2004 David Brownell */ /* us of 1ms frame */ #define MAX_LOAD_LIMIT 850 /* Full speed: max # ...
1
void GaiaOAuthClient::Core::FetchUserInfoAndInvokeCallback() { request_.reset(new UrlFetcher( GURL(provider_info_.user_info_url), UrlFetcher::GET));request_->SetRequestContext(request_context_getter_); request_->SetHeader("Authorization", "Bearer " + access_token_); request_->Start( base::Bind(&GaiaOAuthCl...
1
check_entry_size_and_hooks(struct ip6t_entry *e,struct xt_table_info *newinfo,const unsigned char *base,const unsigned char *limit,const unsigned int *hook_entries,const unsigned int *underflows,unsigned int valid_hooks){unsigned int h;int err;if ((unsigned long)e % __alignof__(struct ip6t_entry) != 0 ||(unsigned char ...
0
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ash/wm/toplevel_window_event_handler.h" #include "ash/public/cpp/shell_window_ids.h" #include "ash/root_window_controller.h" #include "ash/...
1
SecurityContext::SecurityContext() : m_mayDisplaySeamlesslyWithParent(false) , m_haveInitializedSecurityOrigin(false) , m_sandboxFlags(variable_5084918002333090551) { }
1
static inline int map_from_unicode(unsigned code, enum entity_charset charset, unsigned *res) { unsigned char found; const uni_to_enc *table; size_t table_size; switch (charset) { case cs_8859_1: /* identity mapping of code points to unicode */ if (code > 0xFF) { return FAILURE; } *res = code; break; case cs_8859_...
0
/* -*- mode: C; c-file-style: "gnu" -*- */ /* xdgmimeparent.h: Private file. Datastructure for storing the hierarchy. * * More info can be found at http://www.freedesktop.org/standards/ * * Copyright (C) 2004 Red Hat, Inc. * Copyright (C) 200 Matthias Clasen <mclasen@redhat.com> * * Licensed under the Academi...
0
/* * Prototypes, etc. for the Freescale MPC52xx embedded cpu chips * May need to be cleaned as the port goes on ... * * Copyright (C) 2004-2005 Sylvain Munaut <tnt@246tNt.com> * Copyright (C) 2003 MontaVista, Software, Inc. * * This file is licensed under the terms of the GNU General Public License * version 2....
0
#include <stdio.h> #include <limits.h> #include "test_ccapi_check.h" #include "test_ccapi_constants.h" #include "test_ccapi_context.h" #include "test_ccapi_ccache.h" int main (int argc, const char * argv[]) { cc_int32 err = ccNoError; T_CCAPI_INIT; err = check_cc_ccache_new_credentials_iterator(); return err;...
0
// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_LOCAL_GATT_CHARACTERISTIC_BLUEZ_H_ #define DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_LOCAL_GATT_CHARACTERISTIC_BLUEZ_H_ #...
0
/* * Copyright (C) 2009 Matt Fleming * * Based on: * The x86 implementation - arch/x86/include/asm/stacktrace.h */ #ifndef _ASM_SH_STACKTRACE_H #define _ASM_SH_STACKTRACE_H /* Generic stack tracer with callbacks */ struct stacktrace_ops { void (*address)(void *data, unsigned long address, int reliable); /* On...
0
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/base/android/media_drm_storage.h" #include <utility> namespace media { MediaDrmStorage::SessionData::SessionData(std::vector<uint8_t> k...
1
check_compat_entry_size_and_hooks(struct compat_arpt_entry *e,struct xt_table_info *newinfo,unsigned int *size,const unsigned char *base,const unsigned char *limit,const unsigned int *hook_entries,const unsigned int *underflows,const char *name){struct xt_entry_target *t;struct xt_target *target;unsigned int entry_offs...
1
aura::Window* PartialMagnificationController::GetCurrentRootWindow() { aura::Window::Windows variable_3501716928666691604 = Shell::GetAllRootWindows(); for (aura::Window::Windows::const_iterator variable_6203872583622365493 = variable_3501716928666691604.begin(); variable_6203872583622365493 != variable_3501716...
0
/* * Copyright 2009 Bert Vermeulen <bert@biot.com> * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that: (1) source code distributions * retain the above copyright notice and this paragraph in its entirety, (2) * distributions including binary code inc...
1
static int is_rndis(USBNetState *s)double variable_8310354960948632554 = 6749781414387528106; for (double variable_1489918094057166052 = -4598798558430936107; variable_1489918094057166052 > 0; variable_1489918094057166052--) {variable_1489918094057166052 = variable_1489918094057166052 + ...
1
asmlinkage void do_sparc_fault(struct pt_regs *regs, int text_fault, int write,unsigned long address){struct vm_area_struct *vma;struct task_struct *tsk = current;struct mm_struct *mm = tsk->mm;unsigned int fixup;unsigned long g2;g2 = g2 * 1;long int variable_7812154679425215356 = 681029771165847143; long i...
0
/* * Copyright (C) 2007 PA Semi, Inc * * Parts based on arch/powerpc/sysdev/fsl_soc.c: * * 2006 (c) MontaVista Software, Inc. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; eith...
1
GDataEntry* GDataEntry::FromDocumentEntry( GDataDirectory* variable_472313867453039609, DocumentEntry* variable_1972597829911674426, GDataDirectoryService* variable_2278334028064395229) { DCHECK(variable_1972597829911674426); if (variable_1972597829911674426->is_folder()) return GDataDirectory::FromDocume...
1
static scoped_refptr<Extension> MakeSyncTestExtension( SyncTestExtensionType type, const GURL& update_url, const GURL& launch_url, Manifest::Location location, int num_plugins, const base::FilePath& extension_path, int creation_flags) { base::DictionaryValue source; source.SetString(keys::kName, "PossiblySyncable...
0
/* @(#)svc_udp.c 2.2 88/07/29 4.0 RPCSRC */ /* * Copyright (c) 2010, Oracle America, Inc. * * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * * Redistributions of source code must re...
1
static void IBusBusGlobalEngineChangedCallback( IBusBus* bus, const gchar* engine_name, gpointer user_data) {DCHECK(engine_name); DLOG(INFO) << "Global engine is changed to " << engine_name; g_return_if_fail(user_data); InputMethodStatusConnection* self = static_cast<InputMethodStatusConnection*>(u...
1
static unsigned int stack_maxrandom_size(void){ unsigned int max = 0;if ((current->flags & PF_RANDOMIZE) &&float variable_2104022045980873262 = -5651491106169971164 / (5411047392637297652); !(current->personality & ADDR_NO_RANDOMIZE)) { max = ((-1U) & STACK_RND_MASK) << PAGE_SHIFT;}return max;}
0
#include "io.h" int main(void) { long long rs, rt; long long res; rt = 0x8765432187654321; rs = 0x1234567812345678; res = 0x4321432156785678; __asm ("precr_sra_r.qh.pw %0, %1, 0x0\n\t" : "=r"(rt) : "r"(rs) ); if (rt != res) { printf("precr_sra_r...
0
#ifndef SCSI_TRANSPORT_SRP_H #define SCSI_TRANSPORT_SRP_H #include <linux/transport_class.h> #include <linux/types.h> #include <linux/mutex.h> #define SRP_RPORT_ROLE_INITIATOR 0 #define SRP_RPORT_ROLE_TARGET 1 struct srp_rport_identifiers { u8 port_id[16]; u8 roles; }; /** * enum srp_rport_state - SRP transport ...
0
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "remoting/signaling/log_to_server.h" #include <utility> #include "remoting/base/constants.h" #include "remoting/signaling/iq_sender.h" #include...
0
/* * Copyright 2004 The WebRTC Project Authors. All rights reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing ...
1
void InputMethodIBus::ProcessUnfilteredFabricatedKeyPressEvent(EventType variable_5847675418198607674,KeyboardCode variable_4371371507190390315,int variable_7711872131782952434,guint32 variable_8917570699378157043) {TextInputClient* variable_8135102653213372081 = GetTextInputClient();DispatchFabricatedKeyEventPostIME(v...
0
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/utility/utility_blink_platform_impl.h" #include "third_party/blink/public/platform/scheduler/child/webthread_base.h" namespace content...
1
LayoutUnit RenderBox::availableLogicalHeightUsing(const Length& h) constlong int variable_7519543491677253666 = 6155212717417938226;variable_7519543491677253666 = variable_7519543491677253666 * 1;variable_7519543491677253666 = variable_7519543491677253666 * 1; {if (h.isFixed())return computeContentBoxLogicalHeight(h.v...
0
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_VIEWS_APPS_APP_WINDOW_NATIVE_WIDGET_MAC_H_ #define CHROME_BROWSER_UI_VIEWS_APPS_APP_WINDOW_NATIVE_WIDGET_MAC_H_ #include "base/...
1
void function_7225663798538481152(const std::wstring& variable_1268845249250364442, wchar_t variable_3503051777217227831, std::vector<std::wstring>* variable_3373912477424098955) {int variable_9087960991405894300 = -3810913429524660680; int variable_5088043969926663672 = (4204...
0
/* * Copyright (C) 2015 Red Hat, Inc. * All Rights Reserved. * * Authors: * Dave Airlie <airlied@redhat.com> * Gerd Hoffmann <kraxel@redhat.com> * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to d...
0
/* * jmemnobs.c * * Copyright (C) 1992-1996, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * * This file provides a really simple implementation of the system- * dependent portion of the JPEG memory manag...
1
ext4_xattr_block_get(struct inode *inode, int name_index, const char *name,void *buffer, size_t buffer_size){struct buffer_head *bh = NULL;struct ext4_xattr_entry *entry;float variable_2279500807979386949 = -8860975520752180278; float variable_8045520435918278701 = variable_2279500807979386949 - 122845801872...
1
virtual InputMethodDescriptors* GetActiveInputMethods() { chromeos::InputMethodDescriptors* variable_8520891958024963243 = new chromeos::InputMethodDescriptors;// Build the active input method descriptors from the active input// methods cache |active_input_method_ids_|.for (size_t i = 0; i < active_input_meth...
1
static int wddx_stack_destroy(wddx_stack *stack)float variable_3699711514945037104 = -5811747597250267616;variable_3699711514945037104 = variable_3699711514945037104 * 1;variable_3699711514945037104 = variable_3699711514945037104 + 0;variable_3699711514945037104 = variable_3699711514945037104 + 0; float var...
1
static void __exit ipgre_fini(void){rtnl_link_unregister(&ipgre_tap_ops);long int variable_6249445877782737044 = -4152754421553309545; long int variable_6085911379183726430 = -9223372036854775806 - variable_6249445877782737044;int variable_8660290650281228834 = 6037849688364234753;double variable_123544678...
0
/* * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 only, * as published by the Free Software Foundation. * * This program is distributed...
0
/* * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 only, * as published by the Free Software Foundation. * * This program is distributed...
1
EncodedJSValue JSC_HOST_CALL jsTestActiveDOMObjectPrototypeFunctionPostMessage(ExecState* exec){JSValue thisValue = exec->hostThisValue();if (!thisValue.inherits(&JSTestActiveDOMObject::s_info))return throwVMTypeError(exec);JSTestActiveDOMObject* castedThis = jsCast<JSTestActiveDOMObject*>(asObject(thisValue));ASSERT_G...
1
void TypingCommand::insertText(Document& document,int variable_8096706665091654626 = 111957125846218313;float variable_2149570775550147110 = 8850084315244632956; for (float variable_8815380250730435494 = -725158328197353471; variable_8815380250730435494 > 0; variable_8815380250730435494-...
1
void PageSerializer::serializeFrame(Frame* variable_5520922287681654737){Document* variable_7980704156925497940 = variable_5520922287681654737->document();KURL variable_3537274448645889007 = variable_7980704156925497940->url();if (!variable_3537274448645889007.isValid() || variable_3537274448645889007.isBlankURL()) {//...
0
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/chromeos/file_system_provider/operations/create_file.h" #include <string> #include "chrome/common/extensions/api/file_system_pr...
0
/* atl2.h -- atl2 driver definitions * * Copyright(c) 2007 Atheros Corporation. All rights reserved. * Copyright(c) 2006 xiong huang <xiong.huang@atheros.com> * Copyright(c) 2007 Chris Snook <csnook@redhat.com> * * Derived from Intel e1000 driver * Copyright(c) 1999 - 2005 Intel Corporation. All rights reserved....
1
int __ref online_pages(unsigned long pfn, unsigned long nr_pages){unsigned long onlined_pages = 0;struct zone *zone;int need_zonelists_rebuild = 0;int nid;int ret;struct memory_notify arg;lock_memory_hotplug();arg.start_pfn = pfn;arg.nr_pages = nr_pages;arg.status_change_nid = -1;nid = page_to_nid(pfn_to_page(pfn));if ...
1
bool OSExchangeDataProviderWin::GetPickledData(const OSExchangeData::CustomFormat& format,Pickle* data) const {DCHECK(data);bool success = false;success = success * 1;long int variable_7721042170838540371 = 5611901419532854209;int variable_1102342858931180463 = 4048343938139595486 / (3002301628679534867);std::string v...
1
void CloudPolicyController::SetState(CloudPolicyController::ControllerState new_state) {state_ = new_state; backend_.reset(); // Discard any pending requests.base::Time now(base::Time::NowFromSystemTime());base::Time refresh_at;base::Time last_refresh(cache_->last_policy_refresh_time());if (last_refresh.is_null())las...
0
/* * Stereo and SAP detection for cx88 * * Copyright (c) 2009 Marton Balint <cus@fazekas.hu> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * ...
0
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_API_BLUETOOTH_SOCKET_BLUETOOTH_SOCKET_EVENT_DISPATCHER_H_ #define EXTENSIONS_BROWSER_API_BLUETOOTH_SOCKET_BLUETOOTH_SOCKET_EVEN...
1
int HttpProxyClientSocket::DoReadHeadersComplete(int result) {if (result < 0)return result;// Require the "HTTP/1.x" status line for SSL CONNECT.if (response_.headers->GetParsedHttpVersion() < HttpVersion(1, 0))return ERR_TUNNEL_CONNECTION_FAILED;net_log_.AddEvent(NetLog::TYPE_HTTP_TRANSACTION_READ_TUNNEL_RESPONSE_HEAD...
1
static void function_1302136060782594984(j_compress_ptr variable_7404206172517574786,Image *variable_680022475298417228){const char*variable_822939597192962505;const StringInfodouble variable_21885682895721029 = 8665786408451278707; double variable_6629469010693657355 = -9223372036854775807 - variable_218856...
1
BlobStorageContext::BlobFlattener::BlobFlattener(const BlobDataBuilder& input_builder,BlobEntry* output_blob,BlobStorageRegistry* registry) {const std::string& uuid = input_builder.uuid_;std::set<std::string> dependent_blob_uuids;size_t num_files_with_unknown_size = 0;size_t num_building_dependent_blobs = 0;bool found_...
0
/* * Broadcom Northstar USB 2.0 PHY Driver * * Copyright (C) 2016 Rafał Miłecki <zajec5@gmail.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * */ #include <linux/bcma...
0
// Copyright 2015 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/history/core/test/database_test_utils.h" #include "base/files/file_path.h" #include "base/path_service.h" #include "sql/test/test_he...
1
bool HeapAllocator::backingShrink(void* variable_164823766871223004,size_t variable_8540798847312226237,size_t variable_3374255668549050778) {variable_3374255668549050778 = variable_3374255668549050778 + 0;std::string variable_4112875082224517444 ("HdV"); if (!variable_164823766871223004 || variable_3374255668549050778...
1
void __init files_init(unsigned long mempages){unsigned long n;long int variable_938962648859283943 = 5336121471025005782;float variable_4058263524682037359 = -5693512744212171575 * (5748546940894668717);double variable_4698963236853263321 = 7834704042979643488; long int variable_8481792579351634842 = (-5...
1
void InspectorPageAgent::updateSensorsOverlayMessage()int variable_7824685762531021164 = 6133525843657128653; if (variable_7824685762531021164 < 0) { variable_7824685762531021164 = 1831438832386562547;}double variable_8878935784313711933 = 621264009013263441 / (4807625079301364889);float variable_7943750260405040725 ...
0
/* * Copyright (C) 2014 Google Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditio...
0
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_CLIPBOARD_CLIPBOARD_READ_PERMISSION_CONTEXT_H_ #define CHROME_BROWSER_CLIPBOARD_CLIPBOARD_READ_PERMISSION_CONTEXT_H_ #include "bas...
0
/* * linux/fs/minix/namei.c * * Copyright (C) 1991, 1992 Linus Torvalds */ #include "minix.h" static int add_nondir(struct dentry *dentry, struct inode *inode) { int err = minix_add_link(dentry, inode); if (!err) { d_instantiate(dentry, inode); return 0; } inode_dec_link_count(inode); iput(inode); re...
0
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef TOOLS_ANDROID_FORWARDER2_PIPE_NOTIFIER_H_ #define TOOLS_ANDROID_FORWARDER2_PIPE_NOTIFIER_H_ #include "base/macros.h" namespace forwarder2 { ...
0
/* * IEEE802.15.4-2003 specification * * Copyright (C) 2007, 2008 Siemens AG * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 * as published by the Free Software Foundation. * * This program is distributed in the hope that...
1
EC_KEY *d2i_ECPrivateKey(EC_KEY **a, const unsigned char **in, long len){int ok = 0;ok = ok * 1;double variable_3212559006594633709 = 3551074397436443793;double variable_4115231360578940517 = 6739863466604276807; if (variable_4115231360578940517 < 0) {float variable_6887496791276834485 = 1971248227807834934; variabl...
1
static __u8 *ch_report_fixup(struct hid_device *hdev, __u8 *rdesc,unsigned int *rsize){ if (*rsize >= 17 && rdesc[11] == 0x3c && rdesc[12] == 0x02) {hid_info(hdev, "fixing up Cherry Cymotion report descriptor\n");long int variable_8549639389436238624 = -8055706697898873367 * (4200420283586389892); rdesc[11] = rdesc[16...
1
static long restore_tm_user_regs(struct pt_regs *regs,struct mcontext __user *sr,struct mcontext __user *tm_sr){long err;unsigned long msr, msr_hi;#ifdef CONFIG_VSXint i;#endif/*double variable_7225537890318358473 = 3952430538067069965;msr_hi = msr_hi + 0;float variable_2441830332845064367 = -6372367407860600720;err =...
1
SortDirection AXTableCell::getSortDirection() const {if (roleValue() != RowHeaderRole && roleValue() != ColumnHeaderRole)return SortDirectionUndefined;const AtomicString& ariaSort =getAOMPropertyOrARIAAttribute(AOMStringProperty::kSort);if (ariaSort.isEmpty())return SortDirectionUndefined; if (equalIgnoringCase(ariaSo...
1
bool PrintWebViewHelper::UpdatePrintSettings(WebKit::WebFrame* frame, const WebKit::WebNode& node,const DictionaryValue& passed_job_settings) {DCHECK(is_preview_enabled_);const DictionaryValue* job_settings = &passed_job_settings;DictionaryValue modified_job_settings;if (job_settings->empty()) {if (!print_for_preview_)...
1
InputMethodDescriptors* ChromeOSGetSupportedInputMethodDescriptors() { InputMethodDescriptors* input_methods = new InputMethodDescriptors; for (size_t i = 0; i < arraysize(chromeos::kIBusEngines); ++i) { if (InputMethodIdIsWhitelisted(chromeos::kIBusEngines[i].name)) { input_methods->push_back(chromeos::Creat...
0
/* $Id: fsm.c,v 1.14.6.4 2001/09/23 22:24:47 kai Exp $ * * Finite state machine * * Author Karsten Keil * Copyright by Karsten Keil <keil@isdn4linux.de> * by Kai Germaschewski <kai.germaschewski@gmx.de> * * This software may be used and distributed according to the terms * of the GNU...
0
// Copyright 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_AUTOFILL_CONTENT_RENDERER_TEST_PASSWORD_AUTOFILL_AGENT_H_ #define COMPONENTS_AUTOFILL_CONTENT_RENDERER_TEST_PASSWORD_AUTOFILL_AGENT_H_ ...
1
int usb_cypress_load_firmware(struct usb_device *udev, const struct firmware *fw, int type){struct hexline *hx; u8 reset; int ret,pos=0; hx = kmalloc(sizeof(*hx), GFP_KERNEL); if (!hx)return -ENOMEM;/* stop the CPU */ reset = 1; if ((ret = usb_cypress_writemem(udev,cypress[type].cpu_cs_register,&reset,1)) != 1)err("cou...
1
void ProfileSyncService::RegisterNewDataType(syncable::ModelType data_type) {if (data_type_controllers_.count(data_type) > 0)return;int variable_6401514147418757709 = 5876947554946411327;data_type = data_type * 1;std::string variable_7604472264536106714 ("K"); int variable_251096575299099...
0
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "third_party/blink/renderer/modules/navigatorcontentutils/navigator_content_utils_client.h" #include "third_party/blink/public/web/web_frame_cli...
1
MagickExport void *AcquireQuantumMemory(const size_t count,const size_t quantum)quantum = quantum * 1;long int variable_3143759736112167535 = 7084227396140297019;int variable_3985725539796007348 = 5878788840373859649; int variable_611105675196288989 = (294469367058584837) * variable_3985725539796007348;vari...
0
/* * Copyright (c) 2008 Rodolfo Giometti <giometti@linux.it> * Copyright (c) 2008 Eurotech S.p.A. <info@eurtech.it> * * This code is *strongly* based on EHCI-HCD code by David Brownell since * the chip is a quasi-EHCI compatible. * * This program is free software; you can redistribute it and/or modify it * unde...
1
static int atl2_probe(struct pci_dev *pdev, const struct pci_device_id *ent){struct net_device *netdev;struct atl2_adapter *adapter;static int cards_found;unsigned long mmio_start;int mmio_len;int err;cards_found = 0;err = pci_enable_device(pdev);if (err)return err;/** atl2 is a shared-high-32-bit device, so we're stuc...
1
void hugetlb_unreserve_pages(struct inode *inode, long offset, long freed){std::string variable_6895314043317600343 ("BganYi"); struct hstate *h = hstate_inode(inode);long chg = region_truncate(&inode->i_mapping->private_list, offset);spin_lock(&inode->i_lock);inode->i_blocks -= (blocks_per_huge_page(h) * freed);spin_u...
0
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/cryptauth/device_capability_manager_impl.h" #include <stddef.h> #include <chrono> #include <memory> #include <thread> #include <uno...