/external/chromium/chrome/browser/metrics/ |
metrics_service.cc | 145 // the PrefServices. This ensures that IF we crash, we won't start up and 475 void MetricsService::Start() { 668 // case, the log transmissions should have stopped. Here we start them up 1243 size_t start = 0; local [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
safe_browsing_service.cc | 177 Start(); 269 const base::TimeTicks start = base::TimeTicks::Now(); local 274 check.start = start; 287 UMA_HISTOGRAM_TIMES("SB2.FilterCheck", base::TimeTicks::Now() - start); 390 // |start| is set before calling |GetFullHash()|, which should be 392 DCHECK(!check->start.is_null()); 394 base::TimeTicks::Now() - check->start); 479 Start(); 497 // could start using it on the IO thread and then have the second reques [all...] |
/external/chromium/net/base/ |
host_resolver_impl.cc | 78 // Some routers (or resolvers) appear to start to provide host-not-found if 386 void Start() { 653 void Start() { [all...] |
/external/chromium/net/disk_cache/ |
entry_impl.cc | 87 // sent to disk. The buffer can start at any offset, but if we try to write to 125 int Start() { return offset_; } 144 // We don't want to write before our current start. 244 int start = offset - offset_; 245 int available = Size() - start; 246 DCHECK_GE(start, 0); 249 memcpy(buf->data() + clean_bytes, &buffer_[start], len); 358 TimeTicks start = TimeTicks::Now(); 361 ReportIOTime(kSparseRead, start); 372 TimeTicks start = TimeTicks::Now() 1024 TimeTicks start = TimeTicks::Now(); local [all...] |
/external/chromium/net/http/ |
http_cache_transaction.cc | 213 int HttpCache::Transaction::Start(const HttpRequestInfo* request, 230 // We have to wait until the backend is initialized so we start the SM. 235 // determine if we are still inside Start. 292 // Clear the intermediate response since we are going to start over. 636 rv = network_trans_->Start(request_, &io_callback_, net_log_); 922 // o if we are a reader for the transaction, then we can start reading the 1034 // is willing to resume the operation. Now we go back and start serving [all...] |
/external/chromium/net/ocsp/ |
nss_ocsp.cc | 175 void Start() { 385 request_->Start(); 721 req->Start();
|
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
PathDiagnostic.h | 239 PathDiagnosticLocation Start, End; 241 PathDiagnosticLocationPair(const PathDiagnosticLocation &start, 243 : Start(start), End(end) {} 245 const PathDiagnosticLocation &getStart() const { return Start; } 249 Start.flatten(); 254 Start.Profile(ID);
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
toy.cpp | 169 ExprAST *Start, *End, *Step, *Body; 171 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 173 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 342 ExprAST *Start = ParseExpression(); 343 if (Start == 0) return 0; 345 return Error("expected ',' after for start value"); 366 return new ForExprAST(IdName, Start, End, Step, Body); 668 // start = startexpr 671 // variable = phi [start, loopheader], [nextvariable, loopend [all...] |
/external/llvm/examples/Kaleidoscope/Chapter7/ |
toy.cpp | 174 ExprAST *Start, *End, *Step, *Body; 176 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 178 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 360 ExprAST *Start = ParseExpression(); 361 if (Start == 0) return 0; 363 return Error("expected ',' after for start value"); 384 return new ForExprAST(IdName, Start, End, Step, Body); 765 // start = startexpr 766 // store start -> va [all...] |
/external/llvm/lib/Analysis/ |
ScalarEvolution.cpp | [all...] |
ScalarEvolutionExpander.cpp | 260 // In an AddRec, check if both start and step are divisible. 268 const SCEV *Start = A->getStart(); 269 if (!FactorOutConstant(Start, Remainder, Factor, SE, TD)) 272 S = SE.getAddRecExpr(Start, Step, A->getLoop(), SCEV::FlagAnyWrap); 307 /// SplitAddRecs - Flatten a list of add operands, moving addrec start values 319 const SCEV *Start = A->getStart(); 320 if (Start->isZero()) break; 327 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Start)) { 332 Ops[i] = Start; [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
DwarfCompileUnit.cpp | 255 /// addComplexAddress - Start with the address based on the location provided, 309 The following function does just that. We start by getting 339 DW_OP_deref -- optional, if we start with a pointer 346 /// addBlockByrefAddress - Start with the address based on the location 392 // Decode the original location, and use that as the start of the byref 493 int Start = (LittleEndian ? 0 : NumBytes - 1); 497 for (; Start != Stop; Start += Incr) 499 (unsigned char)0xFF & FltPtr[Start]); 535 int Start = (LittleEndian ? 0 : NumBytes - 1) [all...] |
/external/llvm/lib/TableGen/ |
TGParser.cpp | 494 int64_t Start = Lex.getCurIntVal(); 497 if (Start < 0) 502 Ranges.push_back(Start); 520 if (Start < End) { 521 for (; Start <= End; ++Start) 522 Ranges.push_back(Start); 524 for (; Start >= End; --Start) 525 Ranges.push_back(Start); [all...] |
/external/llvm/lib/Target/X86/AsmParser/ |
X86AsmParser.cpp | 144 X86Operand(KindTy K, SMLoc Start, SMLoc End) 145 : Kind(K), StartLoc(Start), EndLoc(End) {} 506 SMLoc Start, End; 507 if (ParseRegister(RegNo, Start, End)) return 0; 509 Error(Start, "%eiz and %riz can only be used as index registers", 510 SMRange(Start, End)); 514 // If this is a segment register followed by a ':', then this is the start 517 return X86Operand::CreateReg(RegNo, Start, End); 521 return ParseMemOperand(RegNo, Start); 525 SMLoc Start = Parser.getTok().getLoc(), End [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
compose.h | 127 StateId Start() { 129 StateId start = ComputeStart(); local 130 if (start != kNoStateId) { 131 SetStart(start); 134 return CacheImpl<A>::Start(); 536 StateId sf = sa; // Start of current failure transition. 558 // Sub-case 1b: failure transitions lead to start 560 // transition. Therefore, we generate a loop in start 623 StateId s1 = ComposeFstImplBase<A>::fst1_->Start(); 624 StateId s2 = ComposeFstImplBase<A>::fst2_->Start(); [all...] |
/external/v8/src/ |
platform-cygwin.cc | 266 uintptr_t start, end; local 269 if (fscanf(fp, "%" V8PRIxPTR "-%" V8PRIxPTR, &start, &end) != 2) break; 295 "%08" V8PRIxPTR "-%08" V8PRIxPTR, start, end); 297 LOG(isolate, SharedLibraryEvent(lib_name, start, end)); 414 void Thread::Start() { 642 instance_->Start(); 763 void Sampler::Start() {
|
platform-freebsd.cc | 287 unsigned start = StringToLong(addr_buffer); local 310 LOG(i::Isolate::Current(), SharedLibraryEvent(start_of_path, start, end)); 325 int frames_count = backtrace(addresses.start(), frames_size); 327 char** symbols = backtrace_symbols(addresses.start(), frames_count); 465 void Thread::Start() { 702 // Start a thread that sends SIGPROF signal to VM threads. 704 instance_->Start(); 835 void Sampler::Start() {
|
platform-macos.cc | 269 const uintptr_t start = reinterpret_cast<uintptr_t>(code_ptr) + slide; local 271 SharedLibraryEvent(_dyld_get_image_name(i), start, start + size)); local 328 int frames_count = backtrace(addresses.start(), frames_size); 330 char** symbols = backtrace_symbols(addresses.start(), frames_count); 459 void Thread::Start() { 681 instance_->Start(); 815 void Sampler::Start() {
|
platform-solaris.cc | 424 void Thread::Start() { 712 void Sampler::Start() { 726 // Start a thread that sends SIGPROF signal to VM thread.
|
/external/valgrind/main/drd/tests/ |
tsan_thread_wrappers_pthread.h | 354 void Start() { CHECK(0 == pthread_create(&t_, NULL, (worker_t)ThreadBody, this));} 503 //! Create n_threads threads, but do not start. 512 //! Start all threads. 515 workers_[i]->Start();
|
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_feature_detection.cpp | 401 movq mm2,mm6 /*3 Start with 1* in front two steps*/ 418 movq mm2,mm4 /*19 Start with 1* in front two steps*/ 439 movq mm2,mm6 /*35 Start with 1* in front two steps*/ 458 movq mm0,mm6 /*50b Start with 1* in front two steps*/ [all...] |
/external/clang/lib/AST/ |
Expr.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CGClass.cpp | 28 CastExpr::path_const_iterator Start, 34 for (CastExpr::path_const_iterator I = Start; I != End; ++I) { 143 CastExpr::path_const_iterator Start = PathBegin; 147 if ((*Start)->isVirtual()) { 149 cast<CXXRecordDecl>((*Start)->getType()->getAs<RecordType>()->getDecl()); 150 ++Start; 155 Start, PathEnd); 466 // Start the loop with a block that tests the condition. [all...] |
/external/clang/lib/Frontend/ |
ASTUnit.cpp | 60 TimeRecord Start; 66 Start = TimeRecord::getCurrentTime(); 77 Elapsed -= Start; 2429 void ASTUnit::ConcurrencyState::start() { function in class:ASTUnit::ConcurrencyState 2442 void ASTUnit::ConcurrencyState::start() {} function in class:ASTUnit::ConcurrencyState [all...] |
/external/clang/lib/Serialization/ |
ASTReaderStmt.cpp | 432 SourceLocation Start = ReadSourceLocation(Record, Idx); 436 E->setComponent(I, Node(Start, Record[Idx++], End)); 440 E->setComponent(I, Node(Start, ReadDeclAs<FieldDecl>(Record, Idx), End)); 445 Node(Start, [all...] |