Searched refs:Code (Results 151 - 175 of 561) sorted by relevance

1234567891011>>

/external/libmtp/src/
H A Dptp.c192 if ((ptp->Code == PTP_OC_OpenSession) && tries--)
202 return ptp->Code;
417 ptp.Code=PTP_OC_GetDeviceInfo;
439 ptp.Code=PTP_OC_CANON_EOS_GetDeviceInfoEx;
453 * code PTP OP Code
472 ptp.Code=code;
512 ptp.Code=PTP_OC_OpenSession;
558 ptp.Code=PTP_OC_GetStorageIDs;
587 ptp.Code=PTP_OC_GetStorageInfo;
622 ptp.Code
[all...]
/external/llvm/include/llvm/MC/
H A DMCWin64EH.h1 //===- MCWin64EH.h - Machine Code Win64 EH support --------------*- C++ -*-===//
51 MCWin64EHInstruction(OpType Op, MCSymbol *L, bool Code) argument
52 : Operation(Op), Label(L), Offset(Code ? 1 : 0) {
/external/lzma/CPP/7zip/Compress/
H A DBcj2Coder.h56 STDMETHOD(Code)(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
104 STDMETHOD(Code)(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
H A DLzma2Decoder.h50 STDMETHOD(Code)(ISequentialInStream *inStream,
H A DPpmdDecoder.h55 STDMETHOD(Code)(ISequentialInStream *inStream, ISequentialOutStream *outStream,
/external/smack/src/org/xbill/DNS/
H A DClientSubnetOption.java45 super(EDNSOption.Code.CLIENT_SUBNET);
71 super(EDNSOption.Code.CLIENT_SUBNET);
/external/chromium_org/v8/src/
H A Dcode-stubs-hydrogen.cc222 Handle<Code> HydrogenCodeStub::GenerateLightweightMissCode(
244 Code::Flags flags = Code::ComputeFlags(
249 Handle<Code> new_object = factory->NewCode(
256 static Handle<Code> DoGenerateCode(Stub* stub) {
275 Handle<Code> code = chunk->Codegen();
311 Handle<Code> ToNumberStub::GenerateCode() {
324 Handle<Code> NumberToStringStub::GenerateCode() {
394 Handle<Code> FastCloneShallowArrayStub::GenerateCode() {
461 Handle<Code> FastCloneShallowObjectStu
[all...]
H A Ddebug.cc82 static bool IsSourceBreakStub(Code* code) {
90 static bool IsBreakStub(Code* code) {
132 Code* code = Code::GetCodeFromTargetAddress(target);
141 if (code->kind() == Code::STUB) {
371 Handle<Code> target_code(Code::GetCodeFromTargetAddress(target));
372 if (target_code->kind() == Code::STUB) {
387 Handle<Code> target_code(Code
[all...]
H A Dlithium-codegen.h49 void RegisterWeakObjectsInOptimizedCode(Handle<Code> code);
H A Druntime-profiler.cc60 static void GetICCounts(Code* shared_code, int* ic_with_type_info_count,
174 Code* shared_code = shared->code();
186 if (shared_code->kind() != Code::FUNCTION) continue;
190 AttemptOnStackReplacement(function, Code::kMaxLoopNestingMarker);
H A Dfactory.h460 Handle<Code> code,
465 Handle<Code> code);
473 Handle<Code> code,
479 Handle<Code> code,
489 // The reference to the Code object is stored in self_reference.
490 // This allows generated code to reference its own Code object
492 Handle<Code> NewCode(const CodeDesc& desc,
493 Code::Flags flags,
497 int prologue_offset = Code::kPrologueOffsetNotSet,
500 Handle<Code> CopyCod
[all...]
H A Dbuiltins.cc1456 Code::Flags flags;
1481 // Code::Flags names a non-abstract type.
1488 functions[builtin_count].flags = static_cast<Code::Flags>(0);
1496 functions->flags = Code::ComputeFlags(Code::BUILTIN); \
1505 functions->flags = Code::ComputeFlags(Code::kind, \
1516 functions->flags = Code::ComputeHandlerFlags(Code::kind); \
1565 Code
[all...]
H A Dbuiltins.h243 #define DECLARE_BUILTIN_ACCESSOR_C(name, ignore) Handle<Code> name();
245 Handle<Code> name();
246 #define DECLARE_BUILTIN_ACCESSOR_H(name, kind) Handle<Code> name();
254 Code* builtin(Name name) {
255 // Code::cast cannot be used here since we access builtins
257 return reinterpret_cast<Code*>(builtins_[name]);
275 Handle<Code> GetCode(JavaScript id, bool* resolved);
286 // Note: These are always Code objects, but to conform with
H A Dfull-codegen.cc330 Code::Flags flags = Code::ComputeFlags(Code::FUNCTION);
331 Handle<Code> code = CodeGenerator::MakeCodeEpilogue(&masm, flags, info);
378 void FullCodeGenerator::PopulateDeoptimizationData(Handle<Code> code) {
393 void FullCodeGenerator::PopulateTypeFeedbackInfo(Handle<Code> code) {
423 Handle<Code> ic = CodeFactory::LoadIC(isolate(), contextual_mode).code();
429 Handle<Code> ic = CodeFactory::StoreIC(isolate(), strict_mode()).code();
472 uint8_t depth = Min(loop_depth(), Code::kMaxLoopNestingMarker);
1568 Handle<Code> cod
[all...]
H A Dfull-codegen.h568 void CallIC(Handle<Code> code,
633 void PopulateDeoptimizationData(Handle<Code> code);
634 void PopulateTypeFeedbackInfo(Handle<Code> code);
873 BackEdgeTable(Code* code, DisallowHeapAllocation* required) {
874 DCHECK(code->kind() == Code::FUNCTION);
907 static void Patch(Isolate* isolate, Code* unoptimized_code);
910 static void PatchAt(Code* unoptimized_code,
913 Code* replacement_code);
917 Code* unoptimized_code);
921 static void AddStackCheck(Handle<Code> cod
[all...]
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java81 Code code = dexMaker.declare(methodId, PUBLIC | STATIC);
110 Code code = dexMaker.declare(methodId, PUBLIC);
129 Code code = dexMaker.declare(methodId, PUBLIC | STATIC);
148 Code code = dexMaker.declare(methodId, PUBLIC);
174 Code code = dexMaker.declare(methodId, PUBLIC | STATIC);
205 Code directCode = dexMaker.declare(directMethodId, PRIVATE);
212 Code code = dexMaker.declare(methodId, PUBLIC | STATIC);
238 Code superHashCode = dexMaker.declare(
245 Code generatedHashCode = dexMaker.declare(
267 Code cod
[all...]
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dstatus.cc19 Status::Status(Code code, const Slice& msg, const Slice& msg2) {
/external/chromium_org/v8/test/cctest/
H A Dtest-assembler-x64.cc579 Handle<Code> code = isolate->factory()->NewCode(
580 desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
628 Handle<Code> code = isolate->factory()->NewCode(
629 desc, Code::ComputeFlags(Code::STUB), Handle<Code>());
690 Handle<Code> code = isolate->factory()->NewCode(
691 desc, Code
[all...]
H A Dtest-regexp.cc713 static ArchRegExpMacroAssembler::Result Execute(Code* code,
744 Handle<Code> code = Handle<Code>::cast(code_object);
798 Handle<Code> code = Handle<Code>::cast(code_object);
864 Handle<Code> code = Handle<Code>::cast(code_object);
928 Handle<Code> code = Handle<Code>::cast(code_object);
972 Handle<Code> cod
[all...]
/external/clang/include/clang/Tooling/
H A DTooling.h135 /// \brief Runs (and deletes) the tool on 'Code' with the -fsyntax-only flag.
138 /// \param Code C++ code.
139 /// \param FileName The file name which 'Code' will be mapped as.
142 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
145 /// \brief Runs (and deletes) the tool on 'Code' with the -fsyntax-only flag and
149 /// \param Code C++ code.
151 /// \param FileName The file name which 'Code' will be mapped as.
154 bool runToolOnCodeWithArgs(clang::FrontendAction *ToolAction, const Twine &Code,
158 /// \brief Builds an AST for 'Code'.
160 /// \param Code
[all...]
/external/llvm/lib/MC/
H A DWinCOFFStreamer.cpp50 SmallString<256> Code; local
51 raw_svector_ostream VecOS(Code);
61 DF->getContents().append(Code.begin(), Code.end());
/external/chromium_org/v8/src/compiler/
H A Dcode-generator.cc28 Handle<Code> CodeGenerator::GenerateCode() {
63 Code::Kind kind = Code::STUB;
65 kind = Code::OPTIMIZED_FUNCTION;
67 Handle<Code> result = v8::internal::CodeGenerator::MakeCodeEpilogue(
68 masm(), Code::ComputeFlags(kind), info);
179 void CodeGenerator::PopulateDeoptimizationData(Handle<Code> code_object) {
/external/llvm/include/llvm/Bitcode/
H A DBitstreamReader.h285 unsigned Code = ReadCode(); local
286 if (Code == bitc::END_BLOCK) {
293 if (Code == bitc::ENTER_SUBBLOCK)
296 if (Code == bitc::DEFINE_ABBREV &&
304 return BitstreamEntry::getRecord(Code);
/external/giflib/
H A Ddgif_lib.c39 static int DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode);
40 static int DGifDecompressInput(GifFileType *GifFile, int *Code);
751 READ(GifFile, &CodeSize, 1); /* Read Code size from file. */
906 DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode) argument
910 while (Code > ClearCode && i++ <= LZ_MAX_CODE) {
911 if (Code > LZ_MAX_CODE) {
914 Code = Prefix[Code];
916 return Code;
920 Interface for accessing the LZ codes directly. Set Code t
924 DGifGetLZCodes(GifFileType *GifFile, int *Code) argument
963 DGifDecompressInput(GifFileType *GifFile, int *Code) argument
[all...]
/external/chromium_org/v8/tools/
H A Dll_prof.py84 class Code(object): class in inherits:object
85 """Code object."""
94 self.id = Code._id
95 Code._id += 1
106 self.codetype = Code.OPTIMIZED
108 self.codetype = Code.FULL_CODEGEN
110 self.codetype = Code.V8INTERNAL
112 self.codetype = Code.UNKNOWN
249 """Code object map."""
417 code = Code(nam
[all...]

Completed in 530 milliseconds

1234567891011>>