/external/chromium_org/third_party/smhasher/src/ |
main.cpp | 104 HashInfo * info = & g_hashes[i]; local 106 pass &= VerificationTest(info->hash,info->hashbits,info->verification,false); 115 HashInfo * info = & g_hashes[i]; local 117 printf("%16s - ",info->name); 118 pass &= VerificationTest(info->hash,info->hashbits,info->verification,true); 128 void test ( hashfunc<hashtype> hash, HashInfo * info ) [all...] |
/external/chromium_org/third_party/sqlite/src/src/ |
test3.c | 525 Tcl_CmdInfo info; local 536 if( 1!=Tcl_GetCommandInfo(interp, argv[1], &info) ){ 544 db = *((sqlite3 **)info.objClientData);
|
test_mutex.c | 363 Tcl_CmdInfo info; local 365 if( Tcl_GetCommandInfo(pInterp, zCmd, &info) ){ 366 db = *((sqlite3 **)info.objClientData);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
pagemap.h | 34 // a pointer that contains info about that page. We use two 254 MEMORY_BASIC_INFORMATION info = {0}; local 255 size_t result = VirtualQuery(start, &info, sizeof(info)); 257 ASSERT(0 == (info.State & MEM_COMMIT)); // It starts with uncommitted. 258 ASSERT(info.RegionSize >= length); // Entire length is uncommitted. 265 result = VirtualQuery(start, &info, sizeof(info)); 267 ASSERT(0 != (info.State & MEM_COMMIT)); // Now it is committed. 268 ASSERT(info.RegionSize >= length); // Entire length is committed [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/ |
port.cc | 295 MEMORY_BASIC_INFORMATION info; local 297 size_t resultSize = VirtualQuery(ptr, &info, sizeof(info)); 298 assert(resultSize == sizeof(info)); 299 size_t decommitSize = std::min<size_t>(info.RegionSize, end - ptr); 317 MEMORY_BASIC_INFORMATION info; local 319 size_t resultSize = VirtualQuery(ptr, &info, sizeof(info)); 320 assert(resultSize == sizeof(info)); 322 size_t commitSize = std::min<size_t>(info.RegionSize, end - ptr) [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
heap-profile-table.cc | 258 AllocInfo* info) const { 261 info->object_size = alloc_value->bytes; 262 info->call_stack = alloc_value->bucket()->stack; 263 info->stack_depth = alloc_value->bucket()->depth; 402 AllocContextInfo info; local 404 *static_cast<Stats*>(&info) = *static_cast<Stats*>(list[i]); 405 info.stack_depth = list[i]->depth; 406 info.call_stack = list[i]->stack; 407 callback(info); 417 // buckets than leave out the /proc/self/maps info. To ensure that [all...] |
heap-profile-table.h | 74 // Info we can return about an allocation. 83 // Info we return about an allocation context. 121 // Same as FindAlloc, but fills all of *info. 122 bool FindAllocDetails(const void* ptr, AllocInfo* info) const; 147 typedef void (*AllocIterator)(const void* ptr, const AllocInfo& info); 156 typedef void (*AllocContextIterator)(const AllocContextInfo& info); 213 // Info stored in the address map 294 AllocInfo info; local 295 info.object_size = v->bytes; 296 info.call_stack = v->bucket()->stack [all...] |
/external/chromium_org/third_party/usrsctp/usrsctplib/ |
user_recv_thread.c | 581 struct in6_pktinfo * info; local 583 info = (struct in6_pktinfo *)CMSG_DATA(cmsgptr); 584 memcpy((void *)&dst.sin6_addr, (const void *) &(info->ipi6_addr), sizeof(struct in6_addr)); 772 struct in_pktinfo *info; local 778 info = (struct in_pktinfo *)CMSG_DATA(cmsgptr); 779 memcpy((void *)&dst.sin_addr, (const void *)&(info->ipi_addr), sizeof(struct in_addr)); 979 struct in6_pktinfo *info; local 985 info = (struct in6_pktinfo *)CMSG_DATA(cmsgptr); 987 memcpy((void *)&dst.sin6_addr, (const void *)&(info->ipi6_addr), sizeof(struct in6_addr)); [all...] |
/external/chromium_org/third_party/webrtc/base/ |
win32.cc | 423 OSVERSIONINFO info = {0}; local 424 info.dwOSVersionInfoSize = sizeof(info); 425 if (GetVersionEx(&info)) { 426 if (major) *major = info.dwMajorVersion; 427 if (minor) *minor = info.dwMinorVersion; 428 if (build) *build = info.dwBuildNumber;
|
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/ |
rtp_utility.h | 160 RTPPayloadUnion info; member in struct:webrtc::ModuleRTPUtility::RTPPayload
|
/external/chromium_org/third_party/webrtc/modules/video_capture/android/ |
device_info_android.cc | 62 // Camera info; populated during DeviceInfoAndroid::Initialize() and immutable 125 AndroidCameraInfo info; local 126 info.name = camera["name"].asString(); 127 info.front_facing = camera["front_facing"].asBool(); 128 info.orientation = camera["orientation"].asInt(); 132 info.resolutions.push_back(std::make_pair( 138 info.mfpsRanges.push_back(std::make_pair(mfpsRange["min_mfps"].asInt(), 141 g_camera_info->push_back(info); 187 const AndroidCameraInfo& info = g_camera_info->at(deviceNumber); local 188 if (info.name.length() + 1 > deviceNameLength | 200 const AndroidCameraInfo* info = FindCameraInfoByName(deviceUniqueIdUTF8); local 223 const AndroidCameraInfo* info = FindCameraInfoByName(deviceUniqueIdUTF8); local 234 const AndroidCameraInfo* info = FindCameraInfoByName(deviceUniqueIdUTF8); local [all...] |
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/ |
normal_async_test.cc | 549 webrtc::CodecSpecificInfo* info = new webrtc::CodecSpecificInfo; local 550 *info = *codecSpecificInfo; 551 return info;
|
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/ |
video_sender_unittest.cc | 115 Vp8StreamInfo info; local 117 info.framerate_fps[tl] = FramerateFpsWithinTemporalLayer(tl); 118 info.bitrate_kbps[tl] = BitrateKbpsWithinTemporalLayer(tl); 120 return info;
|
/external/chromium_org/tools/clang/blink_gc_plugin/ |
RecordInfo.cpp | 159 if (it->second.info()->IsStackAllocated()) { 269 if (it->second.info()->InheritsTrace()) 279 if (CXXMethodDecl* trace = it->second.info()->InheritsNonVirtualTrace()) 312 RecordInfo* info = cache_->Lookup(spec.getType()); local 313 if (!info) 315 CXXRecordDecl* base = info->record(); 316 TracingStatus status = info->InheritsTrace() 319 bases->insert(std::make_pair(base, BasePoint(spec, info, status))); 388 if (CXXMethodDecl* dispatch = it->second.info()->GetTraceDispatchMethod()) { 393 it->second.info()->GetFinalizeDispatchMethod()) 443 RecordInfo* info = cache_->Lookup(type); local [all...] |
RecordInfo.h | 6 // information about a class. Accumulated information is memoized and the info 37 RecordInfo* info, 39 : spec_(spec), info_(info), status_(status) {} 42 RecordInfo* info() { return info_; } function in class:BasePoint
|
/external/chromium_org/tools/strict_enum_value_checker/ |
strict_enum_value_checker_test.py | 17 def info(self, message): member in class:MockLogging
|
/external/chromium_org/tools/win/link_limiter/ |
limiter.cc | 128 SYSTEM_LOGICAL_PROCESSOR_INFORMATION& info = pproc_info[i]; local 129 if (info.Relationship == RelationProcessorCore) {
|
/external/chromium_org/ui/gfx/win/ |
window_impl.cc | 60 RegisteredClass(const ClassInfo& info, ATOM atom); 62 // Info used to create the class. 63 ClassInfo info; member in struct:gfx::ClassRegistrar::RegisteredClass 95 if (class_info.Equals(i->info)) 125 ClassRegistrar::RegisteredClass::RegisteredClass(const ClassInfo& info, 127 : info(info),
|
/external/chromium_org/v8/src/ |
allocation-tracker.cc | 60 AllocationTracker::FunctionInfo* info = local 62 OS::Print("%s #%u", info->name, id_); 191 void AllocationTracker::DeleteFunctionInfo(FunctionInfo** info) { 192 delete *info; 202 FunctionInfo* info = new FunctionInfo(); local 203 info->name = "(root)"; 204 function_info_list_.Add(info); 271 FunctionInfo* info = new FunctionInfo(); local 272 info->name = names_->GetFunctionName(shared->DebugName()); 273 info->function_id = id 298 FunctionInfo* info = new FunctionInfo(); local [all...] |
global-handles.h | 40 : info(NULL), length(length) { 46 v8::RetainedObjectInfo* info; member in struct:v8::internal::ObjectGroup 85 ObjectGroupRetainerInfo(UniqueId id, RetainedObjectInfo* info) 86 : id(id), info(info) {} 97 RetainedObjectInfo* info; member in struct:v8::internal::ObjectGroupRetainerInfo 208 v8::RetainedObjectInfo* info); 218 void SetRetainedObjectInfo(UniqueId id, RetainedObjectInfo* info);
|
platform-qnx.cc | 183 procfs_debuginfo info; member in struct:v8::internal::__anon21108 219 map.info.vaddr = mapinfo->vaddr; 224 map.info.path, mapinfo->vaddr, mapinfo->vaddr + mapinfo->size));
|
type-info.cc | 13 #include "src/type-info.h" 31 // the type feedback info contained therein. 105 Handle<Object> info = GetInfo(slot); local 107 ? info->IsJSFunction() 108 : info->IsAllocationSite() || info->IsJSFunction(); 134 Handle<Object> info = GetInfo(slot); local 135 if (info->IsAllocationSite()) { 139 return Handle<JSFunction>::cast(info); 144 Handle<Object> info = GetInfo(slot) local 155 Handle<Object> info = GetInfo(slot); local 164 Handle<Object> info = GetInfo(slot); local 192 Handle<Object> info = GetInfo(id); local 440 RelocInfo* info = &(*infos)[i]; local [all...] |
/external/chromium_org/webkit/browser/appcache/ |
appcache_host.cc | 23 AppCacheStatus status, AppCacheInfo* info) { 24 info->manifest_url = manifest_url; 25 info->status = status; 30 info->cache_id = cache->cache_id(); 36 info->is_complete = true; 37 info->group_id = cache->owning_group()->group_id(); 38 info->last_update_time = cache->update_time(); 39 info->creation_time = cache->owning_group()->creation_time(); 40 info->size = cache->cache_size(); 456 AppCacheInfo info; local 538 AppCacheInfo info; local [all...] |
/external/chromium_org/webkit/browser/quota/ |
usage_tracker.cc | 112 AccumulateInfo* info = new AccumulateInfo; 116 // all clients (because info->pending_clients may reach 0 120 info->pending_clients = client_tracker_map_.size() + 1; 123 weak_factory_.GetWeakPtr(), base::Owned(info)); 138 AccumulateInfo* info = new AccumulateInfo; 142 // all clients (because info->pending_clients may reach 0 146 info->pending_clients = client_tracker_map_.size() + 1; 149 base::Owned(info)); 165 AccumulateInfo* info = new AccumulateInfo; 169 // all clients (because info->pending_clients may reach 310 AccumulateInfo* info = new AccumulateInfo; local 466 AccumulateInfo* info = new AccumulateInfo; local 514 AccumulateInfo* info = new AccumulateInfo; local [all...] |
/external/clang/lib/ARCMigrate/ |
TransAutoreleasePool.cpp | 90 PoolVarInfo &info = I->second; local 94 clearRefsIn(info.Dcl, info.Refs); 96 scpI = info.Scopes.begin(), 97 scpE = info.Scopes.end(); scpI != scpE; ++scpI) { 99 clearRefsIn(*scope.Begin, info.Refs); 100 clearRefsIn(*scope.End, info.Refs); 101 clearRefsIn(scope.Releases.begin(), scope.Releases.end(), info.Refs); 106 if (info.Refs.empty()) 111 PoolVarInfo &info = PoolVars[VarsToHandle[i]] local 174 PoolVarInfo &info = PoolVars[VD]; local [all...] |