| /external/chromium_org/v8/src/heap/ |
| spaces.cc | 2 // Use of this source code is governed by a BSD-style license that can be 103 // When a target requires the code range feature, we put all code objects 181 // Code range is full or too fragmented. 309 // Code which is part of the code-range does not have its own VirtualMemory. 606 // Allocate executable memory either from code range or from the 809 // We are guarding code pages: the first OS page after the header 821 // We are guarding code pages: the first OS page after the header 828 // We are guarding code pages: the last OS page will be protected a 2700 Code* code = Code::cast(obj); local 3077 Code* code = Code::cast(obj); local [all...] |
| /external/chromium_org/v8/src/ia32/ |
| assembler-ia32.cc | 8 // - Redistributions of source code must retain the above copyright notice, 33 // The original source code covered by the above license above has been modified 100 // code object moves. 111 // Patch the code at the current address with the supplied instructions. 116 // Indicate that code has changed. 121 // Patch the code at the current PC with a call to the target address. 128 // Create a code patcher. 131 // Add a label for checking the size of the code used for returning. 137 // Patch the code. 140 // Check that the size of the code generated is as expected 2274 XMMRegister code = XMMRegister::from_code(level); local [all...] |
| /external/chromium_org/v8/src/ic/ |
| ic.cc | 2 // Use of this source code is governed by a BSD-style license that can be 43 // computed from the original code - not the patched code. Let 44 // these cases fall through to the unreachable code below. 92 Code* new_target = raw_target(); 102 Code* new_target = raw_target(); 108 // the frame's code == builtin(Builtins::kFunctionApply): 115 JavaScriptFrame::PrintFunctionAndOffset(function, function->code(), pc(), 121 if (new_target->kind() == Code::KEYED_STORE_IC) { 143 // To improve the performance of the (much used) IC code, we unfold a fe 204 Code* code = shared->code(); local 803 UpdateMegamorphicCache(*receiver_type(), *name, *code); local 868 Handle<Code> code; local 904 Handle<Code> code = PropertyHandlerCompiler::Find( local 1053 Handle<Code> code = compiler.CompileLoadGlobal( local 1341 Handle<Code> code = stub.GetCode(); local 1416 Handle<Code> code = use_ic ? ComputeHandler(lookup, value) : slow_stub(); local 1504 Handle<Code> code = stub.GetCodeCopyFromTemplate( local 1938 Handle<Code> code = stub.GetCode(); local 2321 Code* code = NULL; local 2394 Code* code = NULL; local 2424 Handle<Code> code; local 2498 Handle<Code> code = stub.GetCode(); local [all...] |
| /external/chromium_org/v8/src/mips/ |
| assembler-mips.h | 8 // - Redistributions of source code must retain the above copyright notice, 31 // The original source code covered by the above license above has been 51 // compatible with int, which has caused code-generation bugs. 63 // code generated for some assembly instructions (because they boil down 64 // to a few constants). If this is a problem, we could change the code 67 // and best performance in optimized code. 93 DCHECK((reg.code() - 2) < (kMaxNumAllocatableRegisters - 1) || 97 reg.code() - 2; // zero_reg and 'at' are skipped. 128 static Register from_code(int code) { 129 Register r = { code }; 135 int code() const { function in struct:v8::internal::Register 257 int code() const { function in struct:v8::internal::FPURegister 339 int code() const { function in struct:v8::internal::FPUControlRegister [all...] |
| simulator-mips.cc | 2 // Use of this source code is governed by a BSD-style license that can be 50 // code. 63 // We set the breakpoint code to 0xfffff to easily recognize it. 105 // Get the stop code. 106 uint32_t code = instr->Bits(25, 6); local 114 if (!watched_stops_[code].desc) { 115 watched_stops_[code].desc = msg; 139 // Get the stop code. 140 uint32_t code = instr->Bits(25, 6); local 145 if (!sim_->watched_stops_[code].desc) 1529 uint32_t code = (func == BREAK) ? instr->Bits(25, 6) : -1; local 1787 uint32_t code = static_cast<uint32_t>(instr->Bits(25, 6)); local [all...] |
| /external/chromium_org/v8/src/mips64/ |
| assembler-mips64.h | 8 // - Redistributions of source code must retain the above copyright notice, 31 // The original source code covered by the above license above has been 50 // compatible with int, which has caused code-generation bugs. 62 // code generated for some assembly instructions (because they boil down 63 // to a few constants). If this is a problem, we could change the code 66 // and best performance in optimized code. 82 DCHECK((reg.code() - 2) < (kMaxNumAllocatableRegisters - 1) || 86 reg.code() - 2; // zero_reg and 'at' are skipped. 117 static Register from_code(int code) { 118 Register r = { code }; 124 int code() const { function in struct:v8::internal::Register 248 int code() const { function in struct:v8::internal::FPURegister 328 int code() const { function in struct:v8::internal::FPUControlRegister [all...] |
| /external/chromium_org/v8/src/ |
| serialize.cc | 2 // Use of this source code is governed by a BSD-style license that can be 11 #include "src/code-stubs.h" 101 entry.code = EncodeExternal(type, id); 103 DCHECK_NE(0, entry.code); 104 // Assert that the code is added in ascending order to rule out duplicates. 105 DCHECK((size() == 0) || (code(size() - 1) < entry.code)); 180 "Code::MakeCodeYoung"); 202 "Code::MarkCodeAsExecuted"); 257 // NOTE: This function was originally 100k of code. It has since bee 1714 Code* code = CloneCodeObject(object_); local [all...] |
| serialize.h | 2 // Use of this source code is governed by a BSD-style license that can be 55 uint32_t code(int i) { return refs_[i].code; } function in class:v8::internal::ExternalReferenceTable 59 int max_id(int code) { return max_id_[code]; } 68 uint32_t code; member in struct:v8::internal::ExternalReferenceTable::ExternalReferenceEntry 160 kBuiltin = 0xd, // Builtin code object. 171 // How to code the pointer to the object. 175 kFromCode = 0x40, // A pointer inlined in code. 189 kInnerPointer = 0x80, // First insn in code object or payload of cell [all...] |
| /external/chromium_org/v8/src/x64/ |
| assembler-x64.cc | 2 // Use of this source code is governed by a BSD-style license that can be 41 // Patch the code at the current PC with a call to the target address. 46 // Create a code patcher. 49 // Add a label for checking the size of the code used for returning. 55 // Patch the code. 60 // Check that the size of the code generated is as expected. 72 // Patch the code at the current address with the supplied instructions. 77 // Indicate that code has changed. 198 int code = reg.code(); local [all...] |
| /external/chromium_org/v8/test/cctest/ |
| test-assembler-arm64.cc | 6 // * Redistributions of source code must retain the above copyright 49 // The testing code should not perform an explicit return once completed. For 135 // but don't actually emit any code. This can be used by tests that need to 11116 Handle<Code> code = isolate->factory()->NewCode(desc, 0, masm.CodeObject()); local [all...] |
| /external/chromium_org/v8/tools/gcmole/ |
| gcmole.cc | 6 // * Redistributions of source code must retain the above copyright 343 SymbolTable::iterator code = symbol_table_.find(name); local 344 if (code == symbol_table_.end()) return false; 345 return live_[code->second]; 361 SymbolTable::iterator code = symbol_table_.find(name); local 363 if (code == symbol_table_.end()) { 369 return code->second; 410 Environment(const Environment& l, int code) 412 live_.set(code); [all...] |
| /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| MemRegion.h | 544 /// FunctionTextRegion - A region that represents code texts of function. 584 /// BlockTextRegion - A region that represents code texts of blocks (closures). 586 /// represent the "code", while BlockDataRegions represent instances of blocks, 587 /// which correspond to "code+data". The distinction is important, because 627 /// represent the "code", while BlockDataRegions represent instances of blocks, 628 /// which correspond to "code+data". The distinction is important, because 1140 MemSpaceRegion *code; member in class:clang::ento::MemRegionManager [all...] |
| /external/cmockery/cmockery_0_1_2/src/ |
| cmockery.c | 44 // Printf formatting for source code locations. 204 DWORD code; member in struct:ExceptionCodeInfo 1413 const DWORD code = exception_record->ExceptionCode; local [all...] |
| /external/emma/core/java12/com/vladium/emma/instr/ |
| InstrVisitor.java | 83 * <code>cls.clone()</code> or by retaining the original definition bytes. 496 final CodeAttribute_info code = new CodeAttribute_info (attribute_name_index, local 502 attributes.add (code); 651 final CodeAttribute_info code = new CodeAttribute_info (attribute_name_index, local 657 code.setCode (buf.getByteArray (), buf.size ()); 659 attributes.add (code); 710 final byte [] code = attribute.getCode (); 713 if (trace2) m_log.trace2 ("visit", "code attribute for method #" + m_methodID + ": size = " + codeSize); 717 // instructionMap.get(ip) is the number of instructions in code[0-ip [all...] |
| /external/freetype/src/base/ |
| ftobjs.c | 53 /* code, and it gets used during development builds only. */ 3391 FT_UInt32 code = (FT_UInt32)charcode; local [all...] |
| /external/gcc-demangle/ |
| cp-demangle.c | 32 /* This code implements a demangler for the g++ V3 ABI. The ABI is 36 This code was written while looking at the demangler written by 39 This code first pulls the mangled name apart into a list of 193 additional unresolved symbols when this code is used in a library. 195 V3 demangler code. 215 /* The code for this substitution. */ 216 char code; member in struct:d_standard_sub_info 2818 const char *code = op->u.s_operator.op->code; local [all...] |
| /external/icu/icu4c/source/i18n/ |
| ucurr.cpp | 240 // Code 287 * Unfortunately, we have to convert the UChar* currency code to char* 317 // code.] 329 UErrorCode ec2 = U_ZERO_ERROR; // local error code: soft failure 756 // If we fail to find a match, use the ISO 4217 code 832 // If we fail to find a match, use the ISO 4217 code 934 ++(*total_currency_symbol_count); // iso code 1007 char* iso = NULL; // currency ISO code 2635 int32_t code = 0; local [all...] |
| /external/icu/icu4c/source/test/cintltst/ |
| cucdtst.c | 384 break; /* done with code points, got a string or -1 */ 1587 uint32_t code; member in struct:__anon1617 [all...] |
| /external/icu/icu4c/source/test/intltest/ |
| collationtest.cpp | 58 // TODO: try to share code with IntlTestCollator; for example, prettify(CollationKey) 200 // and sort in ascending order by set and then code point. 456 // Expected code points. 1173 int32_t code = CollationRuleParser::getReorderCode(name.data()); local [all...] |
| /external/libpcap/pcap/ |
| bpf.h | 5 * This code is derived from the Stanford/CMU enet packet filter, 6 * (net/enet.c) distributed as part of 4.3BSD, and code contributed 13 * 1. Redistributions of source code must retain the above copyright 45 * the stuff needed for the code generator and the userland BPF 51 * At least two programs found by Google Code Search explicitly includes 390 * except for FreeBSD; anybody who wants to compile, on FreeBSD, code 395 * use 18. Code that uses pcap_datalink() to determine the link-layer 398 * capture files; code that doesn't, such as the code in Wireshark, 1309 u_short code; member in struct:bpf_insn [all...] |
| /external/libxml2/ |
| xmlIO.c | 261 * @code: the error number 268 __xmlIOErr(int domain, int code, const char *extra) 272 if (code == 0) { 274 if (errno == 0) code = 0; 276 else if (errno == EACCES) code = XML_IO_EACCES; 279 else if (errno == EAGAIN) code = XML_IO_EAGAIN; 282 else if (errno == EBADF) code = XML_IO_EBADF; 285 else if (errno == EBADMSG) code = XML_IO_EBADMSG; 288 else if (errno == EBUSY) code = XML_IO_EBUSY; 291 else if (errno == ECANCELED) code = XML_IO_ECANCELED 3849 int code; local [all...] |
| /external/lldb/source/Commands/ |
| CommandObjectType.cpp | 446 "We use as reference the following snippet of code:\n" 1050 std::string code = (" " + m_options.m_python_function + "(valobj,internal_dict)"); local 1054 code.c_str())); 1089 std::string code = " " + m_options.m_python_script; local [all...] |
| /external/opencv/cv/include/ |
| cvtypes.h | 19 // * Redistribution's of source code must retain the above copyright notice, 102 char code; member in struct:CvChainPtReader
|
| /external/opencv/cxcore/src/ |
| cxdatastructs.cpp | 19 // * Redistribution's of source code must retain the above copyright notice, 2529 int k = (i+j)>>1, code; local 3520 int code = -1; local [all...] |
| cxdrawing.cpp | 19 // * Redistribution's of source code must retain the above copyright notice, 2500 char code; local [all...] |