Searched defs:Format (Results 26 - 50 of 124) sorted by relevance

12345

/external/dtc/Documentation/
H A Ddtc-paper.tex152 \subsection{Format of the device tree blob}
/external/gemmlowp/internal/
H A Dkernel_neon.h37 Format; typedef in struct:gemmlowp::NEON_32_Kernel12x4Depth2
271 Format; typedef in struct:gemmlowp::NEON_32_Kernel12x4Depth2Assuming12BitProducts
650 Format; typedef in struct:gemmlowp::NEON_64_Kernel12x8Depth2
993 Format; typedef in struct:gemmlowp::NEONKernel4Nx1Depth2
H A Dcompute.h32 typedef KernelFormat<KernelLhsFormat, KernelRhsFormat> Format; typedef in class:gemmlowp::ComputeImpl
69 start_row, start_col, Format::kRows, Format::kCols);
77 assert(rows % Format::kRows == 0);
78 assert(cols % Format::kCols == 0);
79 assert(depth % Format::kDepth == 0);
81 for (int c = 0; c < cols; c += Format::kCols) {
82 for (int r = 0; r < rows; r += Format::kRows) {
/external/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp209 /// \param Format Encoding format for the profile file.
213 SampleProfileWriter::create(StringRef Filename, SampleProfileFormat Format) { argument
216 if (Format == SPF_Binary)
223 return create(OS, Format);
232 /// \param Format Encoding format for the profile file.
237 SampleProfileFormat Format) {
241 if (Format == SPF_Binary)
243 else if (Format == SPF_Text)
245 else if (Format == SPF_GCC)
236 create(std::unique_ptr<raw_ostream> &OS, SampleProfileFormat Format) argument
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_parse.py104 class Format: class in inherits:
232 Channel and Format classes above.'''
301 format = Format(name, layout, block_width, block_height, channels, swizzles, colorspace)
/external/pdfium/core/fpdfdoc/
H A Dcpdf_aaction.h30 Format, enumerator in enum:CPDF_AAction::AActionType
/external/skia/src/gpu/gl/
H A DGrGLStencilAttachment.h19 struct Format { struct in class:GrGLStencilAttachment
35 const Format& format)
46 const Format& format() const { return fFormat; }
58 Format fFormat;
/external/skia/src/sfnt/
H A DSkOTTable_post.h23 struct Format { struct in struct:SkOTTablePostScript
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DGCOV.cpp30 /// isGCDAFile - Return true if Format identifies a .gcda file.
31 static bool isGCDAFile(GCOVFormat Format) { argument
32 return Format == GCDA_402 || Format == GCDA_404;
35 /// isGCNOFile - Return true if Format identifies a .gcno file.
36 static bool isGCNOFile(GCOVFormat Format) { argument
37 return Format == GCNO_402 || Format == GCNO_404;
42 GCOVFormat Format = Buffer.readGCOVFormat(); local
43 if (Format
90 read(GCOVBuffer &Buff, GCOVFormat Format) argument
[all...]
/external/webrtc/webrtc/base/
H A Dwindow.h51 static uint64_t Format(const WindowT& id) { function in class:rtc::WindowId
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DOpcode.java44 NOP(0x00, "nop", ReferenceType.NONE, Format.Format10x, Opcode.CAN_CONTINUE),
45 MOVE(0x01, "move", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
46 MOVE_FROM16(0x02, "move/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
47 MOVE_16(0x03, "move/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
48 MOVE_WIDE(0x04, "move-wide", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
49 MOVE_WIDE_FROM16(0x05, "move-wide/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
50 MOVE_WIDE_16(0x06, "move-wide/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
51 MOVE_OBJECT(0x07, "move-object", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
52 MOVE_OBJECT_FROM16(0x08, "move-object/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
53 MOVE_OBJECT_16(0x09, "move-object/16", ReferenceType.NONE, Format
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/
H A Dlegacy_html_output_formatter.py157 def Format(self, page_test_results): member in class:LegacyHtmlOutputFormatter
/external/compiler-rt/lib/scudo/
H A Dscudo_utils.cpp36 void dieWithMessage(const char *Format, ...) { argument
40 va_start(Args, Format);
41 __sanitizer::VSNPrintf(Message, sizeof(Message), Format, Args);
/external/llvm/unittests/ProfileData/
H A DSampleProfTest.cpp54 void createWriter(SampleProfileFormat Format) { argument
55 auto WriterOrErr = SampleProfileWriter::create(OS, Format);
66 void testRoundTrip(SampleProfileFormat Format) { argument
67 createWriter(Format);
/external/protobuf/src/google/protobuf/io/
H A Dgzip_stream.h57 // Format key for constructor
58 enum Format { enum in class:google::protobuf::io::GzipInputStream
72 Format format = AUTO,
91 Format format_;
112 // Format key for constructor
113 enum Format { enum in class:google::protobuf::io::GzipOutputStream
123 Format format;
/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dindex_sub_table.h30 struct Format { struct in class:sfntly::IndexSubTable
/external/skia/include/core/
H A DSkMask.h22 enum Format { enum in struct:SkMask
37 Format fFormat;
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
H A DInstructionMethodItem.java29 package org.jf.baksmali.Adaptors.Format;
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/
H A DPVRTShader.cpp116 @Input Format shader binary format
125 const GLenum Format,
133 // and if (more then 0) find given Format among them
144 if(listFormats[i] == (int) Format) {
145 glShaderBinary(1, pObject, Format, ShaderData, (GLint)Size);
167 @Input Format shader binary format, or 0 for source shader
180 const GLenum Format,
195 if(Format && pszBinFile && uiDefArraySize == 0)
200 if(PVRTShaderLoadBinaryFromMemory(ShaderFile.DataPtr(), ShaderFile.Size(), Type, Format, pObject, pReturnError) == PVR_SUCCESS)
122 PVRTShaderLoadBinaryFromMemory( const void* const ShaderData, const size_t Size, const GLenum Type, const GLenum Format, GLuint* const pObject, CPVRTString* const pReturnError) argument
177 PVRTShaderLoadFromFile( const char* const pszBinFile, const char* const pszSrcFile, const GLenum Type, const GLenum Format, GLuint* const pObject, CPVRTString* const pReturnError, const SPVRTContext* const pContext, const char* const* aszDefineArray, GLuint uiDefArraySize) argument
/external/clang/lib/Format/
H A DFormatToken.cpp1 //===--- FormatToken.cpp - Format C++ code --------------------------------===//
18 #include "clang/Format/Format.h"
95 const ColumnFormat *Format = getColumnFormat(RemainingCodePoints); local
99 if (!Format)
102 // Format the entire list.
113 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item];
119 if (Column == Format->Columns || State.NextToken->MustBreakBefore) {
236 ColumnFormat Format; local
237 Format
[all...]
/external/deqp/framework/common/
H A DtcuFormatUtil.hpp34 namespace Format namespace in namespace:tcu
67 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex)
83 #define TCU_BIT_DESC(BIT) tcu::Format::BitDesc(BIT, #BIT)
241 } // Format
247 /** Format value as hexadecimal number. */
249 inline Format::Hex<NumDigits> toHex (T value)
251 return Format::Hex<NumDigits>(toUint64(value));
254 /** Format value as hexadecimal number. */
256 inline Format::Hex<sizeof(T)*2> toHex (T value)
258 return Format
[all...]
/external/libmojo/mojo/public/tools/bindings/generators/
H A Dmojom_cpp_generator.py52 def Format(self, separator, prefixed=False, internal=False, member in class:_NameFormatter
65 return self.Format(
71 return self.Format(".", add_same_module_namespaces=True)
/external/llvm/lib/TableGen/
H A DSetTheory.cpp16 #include "llvm/Support/Format.h"
166 // (sequence "Format", From, To) Generate a sequence of records by name.
172 PrintFatalError(Loc, "Bad args to (sequence \"Format\", From, To): " +
182 std::string Format; variable
184 Format = SI->getValue();
186 PrintFatalError(Loc, "Format must be a string: " + Expr->getAsString());
214 OS << format(Format.c_str(), unsigned(From));
/external/piex/src/
H A Dpiex_types.h37 enum Format { enum in struct:piex::Image
46 Format format = kJpegCompressed;
/external/protobuf/csharp/src/Google.Protobuf/
H A DJsonFormatter.cs144 public string Format(IMessage message) method in class:Google.Protobuf.JsonFormatter
147 Format(message, writer);
157 public void Format(IMessage message, TextWriter writer) method in class:Google.Protobuf.JsonFormatter
177 /// This differs from calling <see cref="Format(IMessage)"/> on the default JSON
192 return diagnosticFormatter.Format(message);

Completed in 1528 milliseconds

12345