Home
last modified time | relevance | path

Searched refs:value (Results 15376 - 15400 of 31473) sorted by relevance

1...<<611612613614615616617618619620>>...1259

/third_party/openssl/crypto/ocsp/
H A Docsp_local.h105 } value; member
132 } value; member
172 * Note 1: The value for "signature" is specified in the OCSP rfc2560 as
173 * follows: "The value for the signature SHALL be computed on the hash of
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageTexture.cpp104 static inline deUint32 minify (deUint32 value, deUint32 mipmapLevel) in minify() argument
106 return deMax32(value >> mipmapLevel, 1); in minify()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/
H A DvktImageTexture.cpp104 static inline deUint32 minify (deUint32 value, deUint32 mipmapLevel) in minify() argument
106 return deMax32(value >> mipmapLevel, 1); in minify()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DDevice.cpp104 Error Device::getAttribute(EGLint attribute, EGLAttrib *value) in getAttribute() argument
109 *value = reinterpret_cast<EGLAttrib>(nativeAttribute); in getAttribute()
H A DCLProgram.h43 cl_int getInfo(ProgramInfo name, size_t valueSize, void *value, size_t *valueSizeRet) const;
48 void *value,
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/
H A DWindowSurfaceWGL.cpp121 egl::Error WindowSurfaceWGL::querySurfacePointerANGLE(EGLint attribute, void **value) in querySurfacePointerANGLE() argument
123 *value = nullptr; in querySurfacePointerANGLE()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/
H A DDebugSink.h107 DebugSink &operator<<(const T &value) in operator <<() argument
110 mParent << value; in operator <<() local
/third_party/skia/third_party/externals/angle2/src/common/
H A DFixedVector_unittest.cpp129 for (int value : vec) in TEST()
131 EXPECT_EQ(vistedCount, value); in TEST()
H A Dgen_uniform_type_table.py108 def cpp_bool(value):
109 return "true" if value else "false"
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/glx/
H A DFunctionsGLX.h58 int getFBConfigAttrib(glx::FBConfig config, int attribute, int *value) const;
64 void queryDrawable(glx::Drawable drawable, int attribute, unsigned int *value) const;
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cShaderViewportLayerArrayTests.hpp71 void adaptShaderToPipeline(std::string& shader, const std::string& varKey, int value);
72 void adaptShaderToPipeline(std::string& shader, const std::string& varKey, const std::string& value);
105 /** Test verifies functionality of defining viewport by changing value of gl_ViewportIndex in
164 /** Test verifies functionality of defining rendering layer by changing value of gl_Layer in
180 /** Test verifies that defining rendering layer by changing value of gl_Layer in
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Djsgenerator.py41 value = undefquote(dict[key])
43 value = 'undefined'
44 write(f'{enquote(key)} : {value},', file=self.outFile)
H A Dpygenerator.py34 value = enquote(dict[key])
36 value = 'None'
37 write(f'{enquote(key)} : {value},', file=self.outFile)
H A Drubygenerator.py42 value = nilquote(dict[key])
44 value = 'nil'
45 write(f'{enquote(key)} => {value},', file=self.outFile)
/third_party/vk-gl-cts/external/vulkan-docs/src/xml/
H A Dgenerate-core-block.rb49 attributes['value'] = element.attribute('offset').content.to_i + extension_enum_offset
54 attributes.each_pair do |key, value|
55 core_block << ' ' + key + '="' + value.to_s + '"'
73 alias_block << "\t"*4 + '<alias name="' + old_name + '" value="' + new_name + '"/>' + "\n"
/third_party/skia/src/gpu/mtl/
H A DGrMtlCommandBuffer.h71 void encodeSignalEvent(sk_sp<GrMtlEvent>, uint64_t value);
72 void encodeWaitForEvent(sk_sp<GrMtlEvent>, uint64_t value);
/third_party/skia/src/gpu/tessellate/shaders/
H A DGrStrokeTessellationShader.h49 // Used by GrFixedCountTessellator to configure the uniform value that tells the shader how many
51 void setFixedCountNumTotalEdges(int value) { in setFixedCountNumTotalEdges() argument
53 fFixedCountNumTotalEdges = value; in setFixedCountNumTotalEdges()
80 // This is a uniform value used when fMode is kFixedCount that tells the shader how many total
/third_party/skia/src/core/
H A DSkRecord.h119 std::enable_if_t<std::is_empty<T>::value, T*> allocCommand() { in allocCommand()
125 std::enable_if_t<!std::is_empty<T>::value, T*> allocCommand() { return this->alloc<T>(); } in allocCommand()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DLLVMReactorDebugInfo.hpp85 // Binds the value to its symbol in the source file.
87 void EmitVariable(Value *value);
120 llvm::Value *value = nullptr; member
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DBlitter.hpp63 static_assert(is_memcmparable<State>::value, "Cannot memcmp State"); in operator ==()
110 static bool ApplyScaleAndClamp(Float4 &value, const State &state, bool preScaled = false);
/third_party/openssl/crypto/x509/
H A Dv3_tlsf.c105 if (val->value) in v2i_TLS_FEATURE()
106 extval = val->value; in v2i_TLS_FEATURE()
H A Dv3_pmaps.c82 if (!val->value || !val->name) {
88 obj2 = OBJ_txt2obj(val->value, 0);
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/
H A DFeatureTag.java173 public static FeatureTag forTagValue(int value) { in forTagValue() argument
182 return tagMap.get(value); in forTagValue()
H A DLookupTable.java31 private int getValue(int value) { in getValue() argument
32 return bit & value; in getValue()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/sfnttool/
H A DGlyphCoverage.java76 if (cmap.format() == CMapFormat.Format12.value()) { in getBestCMap()
81 if (cmap.format() == CMapFormat.Format4.value()) { in getBestCMap()

Completed in 25 milliseconds

1...<<611612613614615616617618619620>>...1259