HomeSort by relevance Sort by last modified time
    Searched refs:Code (Results 51 - 75 of 274) sorted by null

1 23 4 5 6 7 8 91011

  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 58 cl::desc("Do not print per-code histogram"));
116 /// GetCodeName - Return a symbolic code name if known, otherwise return
304 /// CodeFreq - Keep track of the number of times we see each code.
372 // Read the code for this record.
413 unsigned Code = Stream.ReadRecord(AbbrevID, Record, BlobStart, BlobLen);
417 // Increment the # occurrences of this code.
418 if (BlockStats.CodeFreq.size() <= Code)
419 BlockStats.CodeFreq.resize(Code+1);
420 BlockStats.CodeFreq[Code].NumInstances++;
421 BlockStats.CodeFreq[Code].TotalBits +
    [all...]
  /dalvik/dx/junit-tests/
HelloWorldMaker.java 18 import com.android.dx.gen.Code;
24 import com.android.dx.rop.code.AccessFlags;
39 * This code generates Dalvik bytecode equivalent to the following
61 Code code = generator.declare(hello, AccessFlags.ACC_STATIC | AccessFlags.ACC_PUBLIC); local
62 Local<Integer> a = code.newLocal(Type.INT);
63 Local<Integer> b = code.newLocal(Type.INT);
64 Local<Integer> c = code.newLocal(Type.INT);
65 Local<String> s = code.newLocal(Type.STRING);
66 Local<PrintStream> localSystemOut = code.newLocal(PRINT_STREAM)
    [all...]
  /dalvik/dx/src/com/android/dx/io/
DexBuffer.java 127 * Creates a new dex buffer that reads from {@code data}. It is an error to
128 * modify {@code data} after using it to create a dex buffer.
137 * Creates a new dex buffer of the dex in {@code in}, and closes {@code in}.
144 * Creates a new dex buffer from the dex file {@code file}.
295 public Code readCode(ClassData.Method method) {
433 private Code readCode() {
441 Code.Try[] tries = new Code.Try[triesSize];
442 Code.CatchHandler[] catchHandlers = new Code.CatchHandler[0]
    [all...]
  /external/v8/test/cctest/
test-assembler-mips.cc 6 // * Redistributions of source code must retain the above copyright
76 Object* code = HEAP->CreateCode( local
78 Code::ComputeFlags(Code::STUB),
80 CHECK(code->IsCode());
81 F2 f = FUNCTION_CAST<F2>(Code::cast(code)->entry());
114 Object* code = HEAP->CreateCode( local
116 Code::ComputeFlags(Code::STUB)
254 Object* code = HEAP->CreateCode( local
320 Object* code = HEAP->CreateCode( local
386 Object* code = HEAP->CreateCode( local
455 Object* code = HEAP->CreateCode( local
528 Object* code = HEAP->CreateCode( local
602 Object* code = HEAP->CreateCode( local
701 Object* code = HEAP->CreateCode( local
748 Object* code = HEAP->CreateCode( local
809 Object* code = HEAP->CreateCode( local
941 Object* code = HEAP->CreateCode( local
1045 Object* code = HEAP->CreateCode( local
1104 Object* code = HEAP->CreateCode( local
1230 Object* code = HEAP->CreateCode( local
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 24 // Support Code for the Semantic Actions.
293 // Parser Code
602 /// Type ::= CODE // code type
612 case tgtok::Code: Lex.Lex(); return CodeRecTy::get();
730 UnOpInit::UnaryOp Code;
734 default: assert(0 && "Unhandled code!");
737 Code = UnOpInit::CAST;
749 Code = UnOpInit::HEAD;
753 Code = UnOpInit::TAIL
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp 407 unsigned Code = Stream.ReadCode();
408 if (Code == bitc::END_BLOCK) {
414 if (Code == bitc::ENTER_SUBBLOCK) {
422 if (Code == bitc::DEFINE_ABBREV) {
429 switch (Stream.ReadRecord(Code, Record)) {
436 // FIXME : Remove this autoupgrade code in LLVM 3.0.
514 unsigned Code = Stream.ReadCode();
515 if (Code == bitc::END_BLOCK) {
523 if (Code == bitc::ENTER_SUBBLOCK) {
531 if (Code == bitc::DEFINE_ABBREV)
    [all...]
  /external/llvm/lib/MC/
MCObjectStreamer.cpp 190 SmallString<128> Code;
191 raw_svector_ostream VecOS(Code);
194 IF->getCode().append(Code.begin(), Code.end());
MCAsmStreamer.cpp 237 virtual void EmitWin64EHPushFrame(bool Code);
633 assert(Directive && "Invalid size for machine code value!");
693 default: llvm_unreachable("Invalid size for machine code value!");
720 default: llvm_unreachable("Invalid size for machine code value!");
    [all...]
MCELFStreamer.cpp 336 SmallString<256> Code;
337 raw_svector_ostream VecOS(Code);
349 DF->getContents().append(Code.begin(), Code.end());
MCMachOStreamer.cpp 136 // FIXME: Cleanup this code, these bits should be emitted based on semantic
227 // FIXME: Cleanup this code, these bits should be emitted based on semantic
367 SmallString<256> Code;
368 raw_svector_ostream VecOS(Code);
377 DF->getContents().append(Code.begin(), Code.end());
  /external/v8/src/
codegen.cc 6 // * Redistributions of source code must retain the above copyright
92 PrintF("*** Generate code for %s function: ", ftype);
115 Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm,
116 Code::Flags flags,
120 // Allocate and install the code.
123 Handle<Code> code = local
126 if (!code.is_null()) {
128 code->instruction_size());
130 return code;
    [all...]
type-info.h 6 // * Redistributions of source code must retain the above copyright
201 return "Unreachable code";
239 TypeFeedbackOracle(Handle<Code> code, Handle<Context> global_context);
268 Code::Flags flags);
272 void PopulateMap(Handle<Code> code);
274 void CollectPositions(Code* code,
runtime-profiler.cc 6 // * Redistributions of source code must retain the above copyright
33 #include "code-stubs.h"
179 // If the code is not optimizable or references context slots, don't try OSR.
180 if (!shared->code()->optimizable() || !shared->allows_lazy_compilation()) {
185 // allocated arguments object. The optimized code would bypass it for
189 // We're using on-stack replacement: patch the unoptimized code so that
198 // Get the stack check stub code object to match against. We aren't
204 Code* replacement_code =
206 Code* unoptimized_code = shared->code();
    [all...]
liveedit.cc 6 // * Redistributions of source code must retain the above copyright
516 // Compile the code.
519 ASSERT(!info.code().is_null());
520 tracker.RecordRootFunctionInfo(info.code());
590 // from JavaScript. It contains Code object, which is kept wrapped
606 void SetFunctionCode(Handle<Code> function_code,
624 Handle<Code> GetFunctionCode() {
627 return Handle<Code>::cast(raw_result);
725 // Saves only function code, because for a script function we
727 void FunctionCode(Handle<Code> function_code)
1016 Handle<Code> code = compile_info_wrapper.GetFunctionCode(); local
1437 Handle<Code> code = Isolate::Current()->builtins()->FrameDropper_LiveEdit(); local
    [all...]
code-stubs.h 6 // * Redistributions of source code must retain the above copyright
36 // List of code stubs used on all platforms. The order in this list is important
69 // List of code stubs only used on ARM platforms.
81 // List of code stubs only used on MIPS platforms.
89 // Combined list of code stubs.
111 // Retrieve the code for the stub. Generate the code if needed.
112 Handle<Code> GetCode();
114 // Retrieve the code for the stub if already generated. Do not
115 // generate the code if not already generated and instead return
    [all...]
factory.cc 6 // * Redistributions of source code must retain the above copyright
608 Handle<Code> code,
613 // Setup the code pointer in both the shared function info and in
615 function->shared()->set_code(*code);
616 function->set_code(*code);
639 Handle<Code> code,
644 // Setup the code pointer in both the shared function info and in
646 function->shared()->set_code(*code);
996 Handle<Code> code = isolate()->builtins()->HandleApiCall(); local
    [all...]
regexp-macro-assembler.h 6 // * Redistributions of source code must retain the above copyright
166 // Controls the generation of large inlined constants in the code.
175 #ifndef V8_INTERPRETED_REGEXP // Avoid compiling unused code.
179 // Type of input string to generate code for.
182 // Result of calling generated native RegExp code.
197 static Result Match(Handle<Code> regexp,
205 // Called from generated RegExp code.
223 // Used by generated RegExp code.
230 static Result Execute(Code* code,
    [all...]
safepoint-table.h 6 // * Redistributions of source code must retain the above copyright
87 // Reserve 13 bits for the gap code size. On ARM a constant pool can be
88 // emitted when generating the gap code. The size of the const pool is less
116 explicit SafepointTable(Code* code);
165 Code* code_;
212 // Get the offset of the emitted safepoint table in the code.
221 // Update the last safepoint with the size of the code generated until the
229 // Get the end pc offset of the last safepoint, including the code generated
  /hardware/qcom/media/mm-core/
Android.mk 2 #Copyright (c) 2009, Code Aurora Forum. All rights reserved.
6 # * Redistributions of source code must retain the above copyright
11 # * Neither the name of Code Aurora nor
  /hardware/qcom/media/mm-video/
Android.mk 2 #Copyright (c) 2009, Code Aurora Forum. All rights reserved.
6 # * Redistributions of source code must retain the above copyright
11 # * Neither the name of Code Aurora nor
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 432 unsigned Code = Stream.ReadCode();
433 if (Code == bitc::END_BLOCK) {
439 if (Code == bitc::ENTER_SUBBLOCK) {
447 if (Code == bitc::DEFINE_ABBREV) {
454 switch (Stream.ReadRecord(Code, Record)) {
461 // FIXME : Remove this autoupgrade code in LLVM 3.0.
539 unsigned Code = Stream.ReadCode();
540 if (Code == bitc::END_BLOCK) {
548 if (Code == bitc::ENTER_SUBBLOCK) {
556 if (Code == bitc::DEFINE_ABBREV)
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 120 // state. e.g. .code 16, .code 32.
222 OS << '\n'; // Indent code with newline.
383 const char *Code) const {
384 if (!strcmp(Code, "private")) {
386 } else if (!strcmp(Code, "comment")) {
388 } else if (!strcmp(Code, "uid")) {
402 Msg << "Unknown special formatter '" << Code
  /external/giflib/
dgif_lib.c 42 #define COMMENT_EXT_FUNC_CODE 0xfe /* Extension function code for
55 static int DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode);
56 static int DGifDecompressInput(GifFileType *GifFile, int *Code);
636 * Get the image code in compressed form. This routine can be called if the
661 * Continue to get the image code in compressed form. This routine should be
704 READ(GifFile, &CodeSize, 1); /* Read Code size from file. */
712 Private->RunningBits = BitsPerPixel + 1; /* Number of bits per code. */
713 Private->MaxCode1 = 1 << Private->RunningBits; /* Max. code + 1. */
767 * decoding as soon as we got all the pixel, or EOF code will
783 /* Its regular code - if in pixel range simply add it to outpu
    [all...]
  /dalvik/dx/junit-tests/com/android/dx/gen/
DexGeneratorTest.java 19 import static com.android.dx.rop.code.AccessFlags.ACC_CONSTRUCTOR;
20 import static com.android.dx.rop.code.AccessFlags.ACC_FINAL;
21 import static com.android.dx.rop.code.AccessFlags.ACC_PRIVATE;
22 import static com.android.dx.rop.code.AccessFlags.ACC_PROTECTED;
23 import static com.android.dx.rop.code.AccessFlags.ACC_PUBLIC;
24 import static com.android.dx.rop.code.AccessFlags.ACC_STATIC;
77 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
78 Local<Long> localA = code.getParameter(0, Type.LONG);
79 Local<Boolean> localB = code.getParameter(1, Type.BOOLEAN)
108 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
132 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
170 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
230 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
250 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
270 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
287 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
363 Code code = generator.declare(constructor, ACC_PUBLIC | ACC_CONSTRUCTOR); local
399 Code code = generator.declare(GENERATED.getMethod(returnType, "call"), local
459 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
594 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
624 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
665 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
820 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
904 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
987 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1003 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1028 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1054 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1099 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1144 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1187 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1232 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1308 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1354 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1375 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1432 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1449 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1499 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1541 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1588 Code code = generator.declare(methodId, ACC_PUBLIC | ACC_STATIC); local
1606 Code code = generator.declare(GENERATED.getConstructor(), ACC_PUBLIC | ACC_CONSTRUCTOR); local
    [all...]
  /build/tools/droiddoc/templates-sdk/
sampleindex.cs 14 <a href="<?cs var:toroot ?>resources/browser.html?tag=sample">Sample Code</a> >

Completed in 1378 milliseconds

1 23 4 5 6 7 8 91011