Searched defs:format (Results 151 - 175 of 1912) sorted by relevance

1234567891011>>

/external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
H A DDeltaDescriptor.java23 * Describes all of the information needed to apply a single delta operation - the format of the
29 * The format of the delta.
31 private final PatchConstants.DeltaFormat format; field in class:DeltaDescriptor
50 * @param format the format of the delta
56 DeltaFormat format,
60 this.format = format;
67 * Returns the format of the delta.
71 return format;
55 DeltaDescriptor( DeltaFormat format, TypedRange<Void> deltaFriendlyOldFileRange, TypedRange<Void> deltaFriendlyNewFileRange, long deltaLength) argument
[all...]
/external/autotest/client/deps/glbench/src/
H A Dmain.h124 inline void dbg_printf(const char* format, ...) { argument
128 va_start(args, format);
129 vprintf(format, args);
/external/bison/lib/
H A Dobstack_printf.c36 obstack_printf (struct obstack *obs, const char *format, ...) argument
41 va_start (args, format);
42 result = obstack_vprintf (obs, format, args);
54 obstack_vprintf (struct obstack *obs, const char *format, va_list args) argument
71 str = vasnprintf (base, &len, format, args);
/external/boringssl/src/crypto/bio/
H A Dprintf.c70 int BIO_printf(BIO *bio, const char *format, ...) { argument
75 va_start(args, format);
76 out_len = vsnprintf(buf, sizeof(buf), format, args);
83 va_start(args, format);
84 out_len = _vscprintf(format, args);
105 va_start(args, format);
106 out_len = vsnprintf(out, requested_len + 1, format, args);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseAlgorithmParameters.java10 protected boolean isASN1FormatString(String format) argument
12 return format == null || format.equals("ASN.1");
H A DIvAlgorithmParameters.java26 String format)
29 if (isASN1FormatString(format))
34 if (format.equals("RAW"))
86 String format)
89 if (isASN1FormatString(format))
105 if (format.equals("RAW"))
111 throw new IOException("Unknown parameters format in IV parameters object");
25 engineGetEncoded( String format) argument
84 engineInit( byte[] params, String format) argument
/external/clang/unittests/Format/
H A DFormatTestJava.cpp15 #define DEBUG_TYPE "format-test"
18 namespace format { namespace in namespace:clang
22 static std::string format(llvm::StringRef Code, unsigned Offset, function in class:clang::format::FormatTestJava
35 format(llvm::StringRef Code, function in class:clang::format::FormatTestJava
37 return format(Code, 0, Code.size(), Style);
49 EXPECT_EQ(Code.str(), format(test::messUp(Code), Style));
502 format("\"some text other\";", getStyleWithColumns(14)));
511 format(" /*\n"
H A DFormatTestProto.cpp15 #define DEBUG_TYPE "format-test"
18 namespace format { namespace in namespace:clang
22 static std::string format(llvm::StringRef Code, unsigned Offset, function in class:clang::format::FormatTestProto
34 static std::string format(llvm::StringRef Code) { function in class:clang::format::FormatTestProto
37 return format(Code, 0, Code.size(), Style);
41 EXPECT_EQ(Code.str(), format(test::messUp(Code)));
144 format("option java_package = "
205 // Missing semicolons should not confuse clang-format.
H A DFormatTestSelective.cpp15 #define DEBUG_TYPE "format-test"
18 namespace format { namespace in namespace:clang
23 std::string format(llvm::StringRef Code, unsigned Offset, unsigned Length) { function in class:clang::format::__anon3335::FormatTestSelective
41 EXPECT_EQ("int a;\nint b;", format("int a; \nint b;", 0, 0));
42 EXPECT_EQ("int a;", format("int a; ", 0, 0));
43 EXPECT_EQ("int a;\n", format("int a; \n \n \n ", 0, 0));
44 EXPECT_EQ("int a;\nint b; ", format("int a; \nint b; ", 0, 0));
51 format("{int b;\n int a;}", 8, 0));
55 format("{int b;\n int a;}", 7, 0));
61 format("#defin
[all...]
H A DSortImportsTestJS.cpp15 #define DEBUG_TYPE "format-test"
18 namespace format { namespace in namespace:clang
268 } // end namespace format
H A DSortIncludesTest.cpp15 #define DEBUG_TYPE "format-test"
18 namespace format { namespace in namespace:clang
71 "// clang-format off\n"
75 "// clang-format on\n",
79 "// clang-format off\n"
83 "// clang-format on\n"));
290 } // end namespace format
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
H A DDependencyRequestFormatter.java51 // TODO(cgruber): Sweep this class for TypeMirror.toString() usage and do some preventive format.
53 @Override public String format(final DependencyRequest request) { method in class:DependencyRequestFormatter
H A DMethodSignatureFormatter.java49 @Override public String format(ExecutableElement method) { method in class:MethodSignatureFormatter
50 return format(method, Optional.<DeclaredType>absent());
57 public String format(ExecutableElement method, Optional<DeclaredType> container) { method in class:MethodSignatureFormatter
74 builder.append(ErrorMessages.format(annotationIterator.next()));
101 builder.append(ErrorMessages.format(qualifier.get())).append(' ');
/external/deqp/external/vulkancts/framework/vulkan/
H A DvkImageUtil.cpp32 bool isFloatFormat (VkFormat format) argument
34 return tcu::getTextureChannelClass(mapVkFormat(format).type) == tcu::TEXTURECHANNELCLASS_FLOATING_POINT;
37 bool isUnormFormat (VkFormat format) argument
39 return tcu::getTextureChannelClass(mapVkFormat(format).type) == tcu::TEXTURECHANNELCLASS_UNSIGNED_FIXED_POINT;
42 bool isSnormFormat (VkFormat format) argument
44 return tcu::getTextureChannelClass(mapVkFormat(format).type) == tcu::TEXTURECHANNELCLASS_SIGNED_FIXED_POINT;
47 bool isIntFormat (VkFormat format) argument
49 return tcu::getTextureChannelClass(mapVkFormat(format).type) == tcu::TEXTURECHANNELCLASS_SIGNED_INTEGER;
52 bool isUintFormat (VkFormat format) argument
54 return tcu::getTextureChannelClass(mapVkFormat(format)
57 isDepthStencilFormat(VkFormat format) argument
66 isSrgbFormat(VkFormat format) argument
83 isCompressedFormat(VkFormat format) argument
159 isSupportedByFramework(VkFormat format) argument
204 mapTextureFormat(const tcu::TextureFormat& format) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/image/
H A DvktImageLoadStoreUtil.hpp48 inline float computeStoreColorBias (const vk::VkFormat format) argument
50 return isSnormFormat(format) ? -1.0f : 0.0f;
53 inline bool isIntegerFormat (const vk::VkFormat format) argument
55 return isIntFormat(format) || isUintFormat(format);
58 inline bool colorScaleAndBiasAreValid (const vk::VkFormat format, const float colorScale, const float colorBias) argument
61 const bool integerOrFloatFormat = isIntFormat(format) || isUintFormat(format) || isFloatFormat(format);
65 float computeStoreColorScale (const vk::VkFormat format, cons
[all...]
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesShaderIntrinsics.cpp85 const tcu::TextureFormat& format = formats[formatNdx]; local
86 de::MovePtr<tcu::TestCaseGroup> formatGroup(new tcu::TestCaseGroup(testCtx, getShaderImageFormatQualifier(format).c_str(), ""));
111 formatGroup->addChild(new SparseCaseOpImageSparseFetch(testCtx, stream.str(), function, imageType, imageSize, format));
114 formatGroup->addChild(new SparseCaseOpImageSparseRead(testCtx, stream.str(), function, imageType, imageSize, format));
117 formatGroup->addChild(new SparseCaseOpImageSparseSampleExplicitLod(testCtx, stream.str(), function, imageType, imageSize, format));
120 formatGroup->addChild(new SparseCaseOpImageSparseSampleImplicitLod(testCtx, stream.str(), function, imageType, imageSize, format));
123 formatGroup->addChild(new SparseCaseOpImageSparseGather(testCtx, stream.str(), function, imageType, imageSize, format));
H A DvktSparseResourcesShaderIntrinsicsSampled.hpp41 const tcu::TextureFormat& format)
42 : SparseShaderIntrinsicsCaseBase (testCtx, name, function, imageType, imageSize, format) {}
61 const tcu::TextureFormat& format)
62 : SparseShaderIntrinsicsCaseSampledBase (testCtx, name, function, imageType, imageSize, format) {}
75 const tcu::TextureFormat& format)
76 : SparseShaderIntrinsicsCaseSampledExplicit (testCtx, name, function, imageType, imageSize, format) {}
93 const tcu::TextureFormat& format)
94 : SparseShaderIntrinsicsCaseSampledBase (testCtx, name, function, imageType, imageSize, format) {}
107 const tcu::TextureFormat& format)
108 : SparseShaderIntrinsicsCaseSampledImplicit (testCtx, name, function, imageType, imageSize, format) {}
36 SparseShaderIntrinsicsCaseSampledBase(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const tcu::TextureFormat& format) argument
56 SparseShaderIntrinsicsCaseSampledExplicit(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const tcu::TextureFormat& format) argument
70 SparseCaseOpImageSparseSampleExplicitLod(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const tcu::TextureFormat& format) argument
88 SparseShaderIntrinsicsCaseSampledImplicit(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const tcu::TextureFormat& format) argument
102 SparseCaseOpImageSparseSampleImplicitLod(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const tcu::TextureFormat& format) argument
120 SparseCaseOpImageSparseGather(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const tcu::TextureFormat& format) argument
[all...]
H A DvktSparseResourcesShaderIntrinsicsStorage.hpp41 const tcu::TextureFormat& format)
42 : SparseShaderIntrinsicsCaseBase (testCtx, name, function, imageType, imageSize, format) {}
64 const tcu::TextureFormat& format)
65 : SparseShaderIntrinsicsCaseStorage (testCtx, name, function, imageType, imageSize, format) {}
87 const tcu::TextureFormat& format)
88 : SparseShaderIntrinsicsCaseStorage (testCtx, name, function, imageType, imageSize, format) {}
36 SparseShaderIntrinsicsCaseStorage(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const tcu::TextureFormat& format) argument
59 SparseCaseOpImageSparseFetch(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const tcu::TextureFormat& format) argument
82 SparseCaseOpImageSparseRead(tcu::TestContext& testCtx, const std::string& name, const SpirVFunction function, const ImageType imageType, const tcu::UVec3& imageSize, const tcu::TextureFormat& format) argument
/external/deqp/framework/delibs/deimage/
H A DdeImage.h41 deImageFormat format; member in struct:deImage_s
45 deImage* deImage_create (int width, int height, deImageFormat format);
58 deImage* deImage_convertFormat (const deImage* image, deImageFormat format);
/external/deqp/modules/gles3/functional/
H A Des3fCompressedTextureTests.cpp46 static const string getASTCFormatShortName (CompressedTexFormat format) argument
48 DE_ASSERT(tcu::isAstcFormat(format));
49 const IVec3 blockSize = tcu::getBlockPixelSize(format);
52 return de::toString(blockSize.x()) + "x" + de::toString(blockSize.y()) + (tcu::isAstcSRGBFormat(format) ? "_srgb" : "");
81 const CompressedTexFormat format = (CompressedTexFormat)formatI; local
83 if (!tcu::isAstcFormat(format))
85 if (tcu::isAstcSRGBFormat(format) && tcu::astc::isBlockTestTypeHDROnly(astcTestType))
88 testTypeGroup->addChild(new ASTCBlockCase2D(m_context, getASTCFormatShortName(format).c_str(), glu::getCompressedTextureFormatName(glu::getGLFormat(format)), astcTestType, format));
100 const CompressedTexFormat format = (CompressedTexFormat)formatI; local
[all...]
/external/drm_gralloc/
H A Dgralloc_drm.h48 static inline int gralloc_drm_get_bpp(int format) argument
52 switch (format) {
80 static inline void gralloc_drm_align_geometry(int format, int *width, int *height) argument
84 switch (format) {
115 struct gralloc_drm_bo_t *gralloc_drm_bo_create(struct gralloc_drm_t *drm, int width, int height, int format, int usage);
/external/drm_hwcomposer/
H A Ddrmhwcgralloc.h58 uint32_t format; /* DRM_FORMAT_* from drm_fourcc.h */ member in struct:hwc_drm_bo
/external/droiddriver/src/io/appium/droiddriver/
H A DUiDevice.java68 * @param format The format of the compressed image
74 boolean takeScreenshot(String path, CompressFormat format, int quality); argument
/external/droiddriver/src/io/appium/droiddriver/util/
H A DLogs.java36 String.format("Invoking %s.%s(%s)", self.getClass().getSimpleName(), method,
59 public static void logfmt(int priority, String format, Object... args) { argument
61 Log.println(priority, TAG, String.format(format, args));
65 public static void logfmt(int priority, Throwable e, String format, Object... args) { argument
67 Log.println(priority, TAG, String.format(format, args) + '\n' + Log.getStackTraceString(e));
/external/elfutils/libebl/
H A Dlibebl.h386 char format; member in struct:__anon6102
391 /* Describe the format of a core file note with the given header and NAME.
401 const char **name, const char **format)

Completed in 496 milliseconds

1234567891011>>