Home
last modified time | relevance | path

Searched refs:name (Results 7851 - 7875 of 25911) sorted by relevance

1...<<311312313314315316317318319320>>...1037

/device/soc/rockchip/rk3568/hardware/codec/src/
H A Dhdi_mpp.c119 static MppCtxType GetMppCtxType(const char* name) in GetMppCtxType() argument
121 char *pos = strstr(name, "decoder"); in GetMppCtxType()
126 pos = strstr(name, "encoder"); in GetMppCtxType()
135 static MppCodingType GetMppCodingType(const char* name) in GetMppCodingType() argument
137 char *pos = strstr(name, "avc"); in GetMppCodingType()
142 pos = strstr(name, "hevc"); in GetMppCodingType()
147 pos = strstr(name, "mpeg4"); in GetMppCodingType()
152 pos = strstr(name, "mpeg2"); in GetMppCodingType()
157 pos = strstr(name, "vp8"); in GetMppCodingType()
162 pos = strstr(name, "vp in GetMppCodingType()
181 CodecCreate(const char* name, CODEC_HANDLETYPE *handle) CodecCreate() argument
[all...]
/device/soc/rockchip/rk3588/hardware/codec/src/
H A Dhdi_mpp.c119 static MppCtxType GetMppCtxType(const char* name) in GetMppCtxType() argument
121 char *pos = strstr(name, "decoder"); in GetMppCtxType()
126 pos = strstr(name, "encoder"); in GetMppCtxType()
135 static MppCodingType GetMppCodingType(const char* name) in GetMppCodingType() argument
137 char *pos = strstr(name, "avc"); in GetMppCodingType()
142 pos = strstr(name, "hevc"); in GetMppCodingType()
147 pos = strstr(name, "mpeg4"); in GetMppCodingType()
152 pos = strstr(name, "mpeg2"); in GetMppCodingType()
157 pos = strstr(name, "vp8"); in GetMppCodingType()
162 pos = strstr(name, "vp in GetMppCodingType()
181 CodecCreate(const char* name, CODEC_HANDLETYPE *handle) CodecCreate() argument
[all...]
/device/soc/rockchip/common/sdk_linux/drivers/dma-buf/
H A Ddma-buf.c70 char name[DMA_BUF_NAME_LEN]; in dmabuffs_dname() local
75 if (dmabuf->name) { in dmabuffs_dname()
76 ret = strlcpy(name, dmabuf->name, DMA_BUF_NAME_LEN); in dmabuffs_dname()
80 return dynamic_dname(dentry, buffer, buflen, "/%s:%s", dentry->d_name.name, ret > 0 ? name : ""); in dmabuffs_dname()
113 kfree(dmabuf->name); in dma_buf_release()
154 .name = "dmabuf",
422 * dma_buf_set_name - Set a name to a specific dma_buf to track the usage.
423 * The name o
438 char *name = strndup_user(buf, DMA_BUF_NAME_LEN); dma_buf_set_name() local
[all...]
/drivers/hdf_core/adapter/khdf/linux/model/usb/host/src/
H A Dusb_net_adapter.c800 HARCH_NET_INFO_PRINT("name = %s, flags = %d, usbFlags = %x mtu = %d, hardHeaderLen = %d,\ in UsbnetAdapterChangeMtu()
802 usbNet->usbnetInfo.name,usbNet->usbnetInfo.flags,usbNet->usbnetInfo.usbFlags,\ in UsbnetAdapterChangeMtu()
964 .name = "wlan",
968 .name = "wwan",
983 HARCH_NET_INFO_PRINT("name = %s, flags = %d, usbFlags = %x, mtu = %d, \ in UsbnetAdapterSetUsbNet()
986 usbNet->usbnetInfo.name, usbNet->usbnetInfo.flags, in UsbnetAdapterSetUsbNet()
1041 //3. name and mtu in UsbnetAdapterSetNetDevice()
1042 strcpy_s (net->name, sizeof(net->name)/sizeof(net->name[ in UsbnetAdapterSetNetDevice()
[all...]
/drivers/peripheral/wlan/test/fuzztest/
H A Dwpa_common_fuzzer.cpp137 const char *name = reinterpret_cast<const char *>(rawData); in FuzzWpaInterfaceSetNetwork() local
141 interface->SetNetwork(interface, ifName, networkId, name, value); in FuzzWpaInterfaceSetNetwork()
448 const char *name = reinterpret_cast<const char *>(rawData); in FuzzWpaInterfaceP2pSetSsidPostfixName() local
450 interface->P2pSetSsidPostfixName(interface, ifName, name); in FuzzWpaInterfaceP2pSetSsidPostfixName()
542 const char *name = reinterpret_cast<const char *>(rawData); in FuzzWpaInterfaceP2pSetDeviceName() local
544 interface->P2pSetDeviceName(interface, ifName, name); in FuzzWpaInterfaceP2pSetDeviceName()
629 info.name = static_cast<uint8_t *>(OsalMemCalloc(sizeof(uint8_t) * nameLen)); in FuzzWpaInterfaceP2pAddService()
632 if (info.name == nullptr || info.query == nullptr || info.resp == nullptr) { in FuzzWpaInterfaceP2pAddService()
636 strcpy_s((char *)info.name, sizeof(info.name), "p2p in FuzzWpaInterfaceP2pAddService()
710 const char *name = reinterpret_cast<const char *>(rawData); FuzzWpaInterfaceP2pSetGroupConfig() local
[all...]
/foundation/arkui/ace_engine_lite/frameworks/src/core/base/
H A Djs_fwk_common.cpp53 void JerrySetNamedProperty(jerry_value_t object, const char * const name, jerry_value_t propValue) in JerrySetNamedProperty() argument
55 jerry_release_value(jerryx_set_property_str(object, name, propValue)); in JerrySetNamedProperty()
58 void JerrySetNumberProperty(jerry_value_t object, const char * const name, double value) in JerrySetNumberProperty() argument
61 JerrySetNamedProperty(object, name, numValue); in JerrySetNumberProperty()
65 void JerrySetStringProperty(jerry_value_t object, const char * const name, const char * const value) in JerrySetStringProperty() argument
68 JerrySetNamedProperty(object, name, strValue); in JerrySetStringProperty()
72 void JerrySetStringProperty(jerry_value_t object, const char * const name, const char * const value, uint32_t length) in JerrySetStringProperty() argument
75 JerrySetNamedProperty(object, name, strValue); in JerrySetStringProperty()
79 char *JerryMallocStringProperty(const jerry_value_t object, const char * const name, uint16_t &length) in JerryMallocStringProperty() argument
81 jerry_value_t propValue = jerryx_get_property_str(object, name); in JerryMallocStringProperty()
87 JerryGetIntegerProperty(jerry_value_t object, const char * const name) JerryGetIntegerProperty() argument
95 JerryGetBoolProperty(jerry_value_t object, const char * const name, bool &outValue) JerryGetBoolProperty() argument
108 JerrySetFuncProperty(jerry_value_t object, const char * const name, jerry_external_handler_t handler) JerrySetFuncProperty() argument
[all...]
/test/xts/acts/global_lite/i18n_lite/resource_parse_load/src/
H A Dresource_manager_test.cpp55 int GetResId(std::string name, ResType resType) const;
57 void TestStringByName(const char *name, const char *cmp) const;
59 void TestStringById(const char *name, const char *cmp) const;
68 int ResourceManagerTest::GetResId(std::string name, ResType resType) const in GetResId() argument
70 auto idv = ((ResourceManagerImpl *)rm)->hapManager_->GetResourceListByName(name.c_str(), resType); in GetResId()
82 void ResourceManagerTest::TestStringByName(const char *name, const char *cmp) const in TestStringByName() argument
86 rState = rm->GetStringByName(name, outValue); in TestStringByName()
88 HILOG_DEBUG("%s : %s", name, outValue.c_str()); in TestStringByName()
92 void ResourceManagerTest::TestStringById(const char *name, const char *cmp) const in TestStringById() argument
96 int id = GetResId(name, ResTyp in TestStringById()
138 const char *name = "eat_apple"; TestPluralStringByName() local
485 const char *name = "app_name"; HWTEST_F() local
517 const char *name = "app_name"; HWTEST_F() local
1687 std::string name; HWTEST_F() local
[all...]
/third_party/alsa-lib/src/pcm/
H A Dpcm_meter.c53 char *name; member
163 free(scope->name); in snd_pcm_scope_remove()
560 * \param name Name of PCM
569 int snd_pcm_meter_open(snd_pcm_t **pcmp, const char *name, unsigned int frequency, in snd_pcm_meter_open() argument
585 err = snd_pcm_new(&pcm, SND_PCM_TYPE_METER, name, slave->stream, slave->mode); in snd_pcm_meter_open()
609 static int snd_pcm_meter_add_scope_conf(snd_pcm_t *pcm, const char *name, in snd_pcm_meter_add_scope_conf() argument
692 err = open_func(pcm, name, root, conf); in snd_pcm_meter_add_scope_conf()
713 pcm_scope.name {
718 pcm.name {
720 slave STR # Slave name
758 _snd_pcm_meter_open(snd_pcm_t **pcmp, const char *name, snd_config_t *root, snd_config_t *conf, snd_pcm_stream_t stream, int mode) _snd_pcm_meter_open() argument
863 snd_pcm_meter_search_scope(snd_pcm_t *pcm, const char *name) snd_pcm_meter_search_scope() argument
1181 snd_pcm_scope_s16_open(snd_pcm_t *pcm, const char *name, snd_pcm_scope_t **scopep) snd_pcm_scope_s16_open() argument
[all...]
/third_party/backends/backend/
H A Dibm.c119 if (strcmp (dev->sane.name, devnam) == 0) in attach()
247 dev->sane.name = strdup (devnam); in attach()
261 DBG (5, "dev->sane.name = %s\n", dev->sane.name); in attach()
380 s->opt[OPT_MODE].name = SANE_NAME_SCAN_MODE; in init_options()
390 s->opt[OPT_X_RESOLUTION].name = "X" SANE_NAME_SCAN_RESOLUTION; in init_options()
406 s->opt[OPT_Y_RESOLUTION].name = "Y" SANE_NAME_SCAN_RESOLUTION; in init_options()
416 s->opt[OPT_ADF].name = "adf"; in init_options()
432 s->opt[OPT_PAPER].name = "paper"; in init_options()
442 s->opt[OPT_TL_X].name in init_options()
[all...]
H A Dhpljm1005.c273 dev->optiond[0].name = ""; in attach()
282 dev->optiond[RES_OFFSET].name = "resolution"; in attach()
295 dev->optiond[X1_OFFSET].name = "tl-x"; in attach()
306 dev->optiond[Y1_OFFSET].name = "tl-y"; in attach()
317 dev->optiond[X2_OFFSET].name = "br-x"; in attach()
328 dev->optiond[Y2_OFFSET].name = "br-y"; in attach()
340 dev->optiond[BRIGH_OFFSET].name = "brightness"; in attach()
353 dev->optiond[CONTR_OFFSET].name = "contrast"; in attach()
366 dev->optiond[COLOR_OFFSET].name = SANE_NAME_SCAN_MODE; in attach()
486 devlist[i]->name in sane_get_devices()
497 sane_open(SANE_String_Const name, SANE_Handle * h) sane_open() argument
[all...]
/third_party/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h14 // * Neither the name of Google Inc. nor the names of its
1046 // This relatively ugly name is intentional. It prevents clashes with
1070 // This relatively ugly name is intentional. It prevents clashes with
1412 // We cannot name this class MutexLock because the ctor declaration would
1701 // We cannot name this class MutexLock because the ctor declaration would
1859 // We cannot name this class MutexLock because the ctor declaration would
1954 // standard functions as macros, the wrapper cannot have the same name
1959 // Functions with a different name on Windows.
2047 inline const char* GetEnv(const char* name) { in GetEnv() argument
2050 static_cast<void>(name); // T in GetEnv()
[all...]
/third_party/node/deps/v8/src/objects/
H A Djs-function.cc260 // Setup the "name" property based on the "name" of the {target}. in CopyNameAndLength()
261 // If the target's name is the default JSFunction accessor, we can keep the in CopyNameAndLength()
264 // underlying internal name. in CopyNameAndLength()
277 Handle<String> name; in CopyNameAndLength() local
280 isolate, name, in CopyNameAndLength()
285 isolate, name, isolate->factory()->NewConsString(prefix, name), in CopyNameAndLength()
289 name = isolate->factory()->empty_string(); in CopyNameAndLength()
291 name in CopyNameAndLength()
321 Handle<String> name; GetName() local
329 Handle<String> name = JSFunction::GetName(isolate, target); GetName() local
1152 Handle<Object> name = GetDebugName() local
1159 SetName(Handle<JSFunction> function, Handle<Name> name, Handle<String> prefix) SetName() argument
[all...]
/third_party/node/deps/openssl/openssl/crypto/pkcs7/
H A Dpk7_doit.c61 char name[OSSL_MAX_NAME_SIZE]; in pkcs7_bio_add_digest() local
70 OBJ_obj2txt(name, sizeof(name), alg->algorithm, 0); in pkcs7_bio_add_digest()
73 fetched = EVP_MD_fetch(ossl_pkcs7_ctx_get0_libctx(ctx), name, in pkcs7_bio_add_digest()
78 md = EVP_get_digestbyname(name); in pkcs7_bio_add_digest()
412 char name[OSSL_MAX_NAME_SIZE]; in PKCS7_dataDecode() local
456 OBJ_obj2txt(name, sizeof(name), enc_alg->algorithm, 0); in PKCS7_dataDecode()
459 evp_cipher = EVP_CIPHER_fetch(libctx, name, propq); in PKCS7_dataDecode()
463 cipher = EVP_get_cipherbyname(name); in PKCS7_dataDecode()
[all...]
/third_party/rust/crates/bindgen/bindgen/
H A Dclang.rs20 name: &'static [u8],
28 name: b"warn_unused_result",
36 name: b"_Noreturn",
43 name: b"noreturn",
99 /// Get this cursor's referent's display name.
107 /// Get the mangled name of this cursor's referent.
136 file.name().is_none() in is_builtin()
695 // `attr.name` and` attr.token_kind` are checked against unexposed attributes only.
700 t.spelling() == attr.name
865 /// Obtain the real path name o
1649 pub fn name(&self) -> Option<String> { name() functions
[all...]
/third_party/openssl/crypto/pkcs7/
H A Dpk7_doit.c61 char name[OSSL_MAX_NAME_SIZE]; in pkcs7_bio_add_digest() local
70 OBJ_obj2txt(name, sizeof(name), alg->algorithm, 0); in pkcs7_bio_add_digest()
73 fetched = EVP_MD_fetch(ossl_pkcs7_ctx_get0_libctx(ctx), name, in pkcs7_bio_add_digest()
78 md = EVP_get_digestbyname(name); in pkcs7_bio_add_digest()
412 char name[OSSL_MAX_NAME_SIZE]; in PKCS7_dataDecode() local
456 OBJ_obj2txt(name, sizeof(name), enc_alg->algorithm, 0); in PKCS7_dataDecode()
459 evp_cipher = EVP_CIPHER_fetch(libctx, name, propq); in PKCS7_dataDecode()
463 cipher = EVP_get_cipherbyname(name); in PKCS7_dataDecode()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
H A DvktImageSubresourceLayoutTests.cpp186 ImageSubresourceLayoutCase (tcu::TestContext& testCtx, const std::string& name, const TestParams& params);
212 ImageSubresourceLayoutCase::ImageSubresourceLayoutCase (tcu::TestContext& testCtx, const std::string& name, const TestParams& params) in ImageSubresourceLayoutCase() argument
213 : vkt::TestCase (testCtx, name) in ImageSubresourceLayoutCase()
755 ImageSubresourceLayoutInvarianceCase (tcu::TestContext& testCtx, const std::string& name, const TestParams& params);
762 ImageSubresourceLayoutInvarianceCase::ImageSubresourceLayoutInvarianceCase(tcu::TestContext& testCtx, const std::string& name, const TestParams& params) in ImageSubresourceLayoutInvarianceCase() argument
763 : ImageSubresourceLayoutCase(testCtx, name, params) in ImageSubresourceLayoutInvarianceCase()
788 const char* name; in createImageSubresourceLayoutTests() member
802 const char* name; in createImageSubresourceLayoutTests() member
967 de::MovePtr<tcu::TestCaseGroup> classGroup (new tcu::TestCaseGroup(testCtx, imgClass.name)); in createImageSubresourceLayoutTests()
972 de::MovePtr<tcu::TestCaseGroup> mipGroup (new tcu::TestCaseGroup(testCtx, mipLevel.name)); in createImageSubresourceLayoutTests()
978 const auto name = de::toLower(fmtName.substr(prefixLen)); // Remove VK_FORMAT_ prefix. createImageSubresourceLayoutTests() local
1018 std::string name = getFormatName(params.imageFormat); createImageSubresourceLayoutTests() local
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/glesext/texture_cube_map_array/
H A DesextcTextureCubeMapArrayImageTextureSize.cpp62 * @param name Test case's name
66 const char* name, const char* description) in TextureCubeMapArrayTextureSizeBase()
67 : TestCaseBase(context, extParams, name, description), m_po_id(0), m_to_std_id(0), m_to_shw_id(0), m_vao_id(0) in TextureCubeMapArrayTextureSizeBase()
390 * @param name Test case's name
395 const char* name, const char* description) in TextureCubeMapArrayTextureSizeTFBase()
396 : TextureCubeMapArrayTextureSizeBase(context, extParams, name, description), m_tf_bo_id(0) in TextureCubeMapArrayTextureSizeTFBase()
522 * @param name Test case's name
65 TextureCubeMapArrayTextureSizeBase(Context& context, const ExtParameters& extParams, const char* name, const char* description) TextureCubeMapArrayTextureSizeBase() argument
393 TextureCubeMapArrayTextureSizeTFBase(Context& context, const ExtParameters& extParams, const char* name, const char* description) TextureCubeMapArrayTextureSizeTFBase() argument
525 TextureCubeMapArrayTextureSizeTFVertexShader( Context& context, const ExtParameters& extParams, const char* name, const char* description) TextureCubeMapArrayTextureSizeTFVertexShader() argument
642 TextureCubeMapArrayTextureSizeTFGeometryShader( Context& context, const ExtParameters& extParams, const char* name, const char* description) TextureCubeMapArrayTextureSizeTFGeometryShader() argument
794 TextureCubeMapArrayTextureSizeTFTessControlShader( Context& context, const ExtParameters& extParams, const char* name, const char* description) TextureCubeMapArrayTextureSizeTFTessControlShader() argument
996 TextureCubeMapArrayTextureSizeTFTessEvaluationShader( Context& context, const ExtParameters& extParams, const char* name, const char* description) TextureCubeMapArrayTextureSizeTFTessEvaluationShader() argument
1064 TextureCubeMapArrayTextureSizeRTBase(Context& context, const ExtParameters& extParams, const char* name, const char* description) TextureCubeMapArrayTextureSizeRTBase() argument
1282 TextureCubeMapArrayTextureSizeRTFragmentShader( Context& context, const ExtParameters& extParams, const char* name, const char* description) TextureCubeMapArrayTextureSizeRTFragmentShader() argument
1449 TextureCubeMapArrayTextureSizeRTComputeShader( Context& context, const ExtParameters& extParams, const char* name, const char* description) TextureCubeMapArrayTextureSizeRTComputeShader() argument
[all...]
/third_party/skia/third_party/externals/libpng/
H A Dpngset.c329 /* TODO: validate format of calibration name and unit name */ in png_set_pCAL()
689 png_const_charp name, int compression_type, in png_set_iCCP()
698 if (png_ptr == NULL || info_ptr == NULL || name == NULL || profile == NULL) in png_set_iCCP()
711 int result = png_colorspace_set_ICC(png_ptr, &info_ptr->colorspace, name, in png_set_iCCP()
725 length = strlen(name)+1; in png_set_iCCP()
735 memcpy(new_iccp_name, name, length); in png_set_iCCP()
1104 if (entries->name == NULL || entries->entries == NULL) in png_set_sPLT()
1117 length = strlen(entries->name) + 1; in png_set_sPLT()
1118 np->name in png_set_sPLT()
688 png_set_iCCP(png_const_structrp png_ptr, png_inforp info_ptr, png_const_charp name, int compression_type, png_const_bytep profile, png_uint_32 proflen) png_set_iCCP() argument
[all...]
/third_party/python/Lib/test/
H A Dtest_operator.py52 for name in vars(operator):
53 if name.startswith('__'):
55 value = getattr(operator, name)
57 computed_all.add(name)
352 a.name = 'arthur'
353 f = operator.attrgetter('name')
372 def __getattr__(self, name):
378 a.name = 'arthur'
380 a.child.name = 'thomas'
381 f = operator.attrgetter('child.name')
[all...]
/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_file.cc15 // * Neither the name of Google Inc. nor the names of its
73 return val.name(); in GetSortKey()
108 variables_["filename"] = file_->name(); in FileGenerator()
157 if (file_->name() != "net/proto2/compiler/proto/plugin.proto" && in GenerateMacroUndefs()
158 file_->name() != "google/protobuf/compiler/plugin.proto") { in GenerateMacroUndefs()
165 const std::string& name = fields[i]->name(); in GenerateMacroUndefs() local
168 if (name == kMacroNames[i]) { in GenerateMacroUndefs()
169 names_to_undef.push_back(name); in GenerateMacroUndefs()
265 StripProto(file_->name())); in GenerateProtoHeader()
361 std::string name = basename; CreateHeaderInclude() local
[all...]
/third_party/python/Modules/clinic/
H A D_winapi.c.h173 " max_size_high, max_size_low, name, /)\n"
184 DWORD max_size_low, LPCWSTR name);
195 LPCWSTR name = NULL; in _winapi_CreateFileMapping() local
199 &file_handle, &security_attributes, &protect, &max_size_high, &max_size_low, _PyUnicode_WideCharString_Converter, &name)) { in _winapi_CreateFileMapping()
202 _return_value = _winapi_CreateFileMapping_impl(module, file_handle, security_attributes, protect, max_size_high, max_size_low, name); in _winapi_CreateFileMapping()
212 /* Cleanup for name */ in _winapi_CreateFileMapping()
214 PyMem_Free((void *)name); in _winapi_CreateFileMapping()
282 "CreateNamedPipe($module, name, open_mode, pipe_mode, max_instances,\n"
292 _winapi_CreateNamedPipe_impl(PyObject *module, LPCTSTR name, DWORD open_mode,
302 LPCTSTR name; in _winapi_CreateNamedPipe() local
778 LPCWSTR name = NULL; _winapi_OpenFileMapping() local
1043 LPCTSTR name; _winapi_WaitNamedPipe() local
[all...]
/third_party/node/lib/internal/util/
H A Dinspect.js472 // "name": intentionally not styling
594 descriptor.value.name !== '' &&
598 !builtInObjects.has(descriptor.value.name))) {
602 return String(descriptor.value.name);
653 builtInObjects.has(descriptor.value.name)) {
724 assert(isNativeError(err) && err.name === 'ReferenceError' &&
1157 const hasName = ObjectPrototypeHasOwnProperty(value, 'name');
1158 const name = (hasName && value.name) || '(anonymous)';
1159 let base = `class ${name}`;
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ubo/
H A DvktUniformBlockCase.cpp130 void StructType::addMember (const std::string& name, const VarType& type, deUint32 flags) in addMember() argument
132 m_members.push_back(StructMember(name, type, flags)); in addMember()
137 Uniform::Uniform (const std::string& name, const VarType& type, deUint32 flags) in Uniform() argument
138 : m_name (name) in Uniform()
155 stream << entry.name << " { name = " << entry.name in operator <<()
172 stream << entry.name << " { type = " << glu::getDataTypeName(entry.type) in operator <<()
183 int UniformLayout::getUniformLayoutIndex (int blockNdx, const std::string& name) const in getUniformLayoutIndex()
188 uniforms[ndx].name in getUniformLayoutIndex()
217 allocStruct(const std::string& name) allocStruct() argument
225 std::string name; global() member
244 allocBlock(const std::string& name) allocBlock() argument
998 generateDeclaration(std::ostringstream& src, const VarType& type, const std::string& name, int indentLevel, deUint32 unusedHints, deUint32 flagsMask, deUint32 offset) generateDeclaration() argument
1024 src << " " << name; generateDeclaration() local
1032 src << " " << name; generateDeclaration() local
1056 std::ostringstream name; getBlockMemberOffset() local
2193 UniformBlockCase(tcu::TestContext& testCtx, const std::string& name, BufferMode bufferMode, MatrixLoadFlags matrixLoadFlag, bool shuffleUniformMembers) UniformBlockCase() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/ubo/
H A DvktUniformBlockCase.cpp130 void StructType::addMember (const std::string& name, const VarType& type, deUint32 flags) in addMember() argument
132 m_members.push_back(StructMember(name, type, flags)); in addMember()
137 Uniform::Uniform (const std::string& name, const VarType& type, deUint32 flags) in Uniform() argument
138 : m_name (name) in Uniform()
155 stream << entry.name << " { name = " << entry.name in operator <<()
172 stream << entry.name << " { type = " << glu::getDataTypeName(entry.type) in operator <<()
183 int UniformLayout::getUniformLayoutIndex (int blockNdx, const std::string& name) const in getUniformLayoutIndex()
188 uniforms[ndx].name in getUniformLayoutIndex()
217 allocStruct(const std::string& name) allocStruct() argument
225 std::string name; global() member
244 allocBlock(const std::string& name) allocBlock() argument
998 generateDeclaration(std::ostringstream& src, const VarType& type, const std::string& name, int indentLevel, deUint32 unusedHints, deUint32 flagsMask, deUint32 offset) generateDeclaration() argument
1024 src << " " << name; generateDeclaration() local
1032 src << " " << name; generateDeclaration() local
1056 std::ostringstream name; getBlockMemberOffset() local
2193 UniformBlockCase(tcu::TestContext& testCtx, const std::string& name, const std::string& description, BufferMode bufferMode, MatrixLoadFlags matrixLoadFlag, bool shuffleUniformMembers) UniformBlockCase() argument
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fFboRenderTest.cpp286 std::string name = ""; in getName() local
292 case GL_TEXTURE_2D: name += "tex2d_"; break; in getName()
293 case GL_TEXTURE_CUBE_MAP: name += "texcube_"; break; in getName()
294 case GL_RENDERBUFFER: name += "rbo_"; break; in getName()
297 name += getFormatName(colorbufferFormat); in getName()
303 if (name.length() > 0) in getName()
304 name += "_"; in getName()
305 name += getFormatName(depthbufferFormat); in getName()
311 if (name.length() > 0) in getName()
312 name in getName()
379 isExtensionSupported(sglr::Context& context, const char* name) isExtensionSupported() argument
493 createRbo(deUint32& name, GLenum format, int width, int height) createRbo() argument
501 destroyBuffer(deUint32 name, GLenum type) destroyBuffer() argument
511 createMetaballsTex2D(sglr::Context& context, deUint32 name, GLenum format, GLenum dataType, int width, int height) createMetaballsTex2D() argument
523 createQuadsTex2D(sglr::Context& context, deUint32 name, GLenum format, GLenum dataType, int width, int height) createQuadsTex2D() argument
552 FboRenderCase(Context& context, const char* name, const char* description, const FboConfig& config) FboRenderCase() argument
2145 createChildGroup(deqp::gles2::TestCaseGroup* parent, const char* name, const char* description) createChildGroup() argument
2153 createRecreateBuffersGroup(deqp::gles2::TestCaseGroup* parent, const char* name, const char* description) createRecreateBuffersGroup() argument
[all...]

Completed in 49 milliseconds

1...<<311312313314315316317318319320>>...1037