Home
last modified time | relevance | path

Searched refs:name (Results 21626 - 21650 of 62600) sorted by relevance

1...<<861862863864865866867868869870>>...2504

/third_party/mesa3d/src/mesa/main/
H A Ddebug.c50 const char *name; in tex_target_name() member
69 return tex_targets[i].name; in tex_target_name()
148 const char *name; in set_verbose_flags() member
171 if (strstr(str, opts[i].name) || strcmp(str, "all") == 0) in set_verbose_flags()
188 const char *name; in set_debug_flags() member
205 if (strstr(str, opts[i].name)) in set_debug_flags()
/third_party/mesa3d/src/microsoft/compiler/
H A Ddxil_module.h253 dxil_add_global_var(struct dxil_module *m, const char *name,
259 dxil_add_global_ptr_var(struct dxil_module *m, const char *name,
265 dxil_add_function_def(struct dxil_module *m, const char *name,
269 dxil_add_function_decl(struct dxil_module *m, const char *name,
313 const char *name,
412 dxil_add_metadata_named_node(struct dxil_module *m, const char *name,
/third_party/libfuse/example/
H A Dpassthrough_fh.c517 static int xmp_setxattr(const char *path, const char *name, const char *value, in xmp_setxattr() argument
520 int res = lsetxattr(path, name, value, size, flags); in xmp_setxattr()
526 static int xmp_getxattr(const char *path, const char *name, char *value, in xmp_getxattr() argument
529 int res = lgetxattr(path, name, value, size); in xmp_getxattr()
543 static int xmp_removexattr(const char *path, const char *name) in xmp_removexattr() argument
545 int res = lremovexattr(path, name); in xmp_removexattr()
H A Dpassthrough.c410 static int xmp_setxattr(const char *path, const char *name, const char *value, in xmp_setxattr() argument
413 int res = lsetxattr(path, name, value, size, flags); in xmp_setxattr()
419 static int xmp_getxattr(const char *path, const char *name, char *value, in xmp_getxattr() argument
422 int res = lgetxattr(path, name, value, size); in xmp_getxattr()
436 static int xmp_removexattr(const char *path, const char *name) in xmp_removexattr() argument
438 int res = lremovexattr(path, name); in xmp_removexattr()
/third_party/ltp/testcases/kernel/security/tomoyo/
H A Dtomoyo_new_test.c383 const char *name; member
626 set_profile(3, tests[i].name); in main()
629 set_profile(0, tests[i].name); in main()
642 set_profile(mode, tests[i].name); in main()
644 show_result(tests[i].name, 1); in main()
645 set_profile(0, tests[i].name); in main()
/third_party/node/deps/v8/src/d8/
H A Dasync-hooks-wrapper.cc137 #define SET_HOOK_FN(name) \ in CreateHook()
138 Local<Value> name##_v = \ in CreateHook()
139 fn_obj->Get(currentContext, String::NewFromUtf8Literal(isolate, #name)) \ in CreateHook()
141 if (name##_v->IsFunction()) { \ in CreateHook()
142 wrap->set_##name##_function(name##_v.As<Function>()); \ in CreateHook()
/third_party/node/deps/v8/include/v8-include/
H A Dv8-object.h32 * Returns the print name string of the private symbol, or undefined if none.
37 * Create a private symbol. If name is not empty, it will be the description.
40 Local<String> name = Local<String>());
43 * Retrieve a global private symbol. If a symbol with this name has not
47 * Also, there is only one global name space for the names used as keys.
51 static Local<Private> ForApi(Isolate* isolate, Local<String> name);
329 * \note Has() converts the key to a name, which possibly calls back into
350 Local<Context> context, Local<Name> name,
358 void SetAccessorProperty(Local<Name> name, Local<Function> getter,
368 Local<Context> context, Local<Name> name,
[all...]
/third_party/node/deps/v8/include/
H A Dv8-object.h34 * Returns the print name string of the private symbol, or undefined if none.
39 * Create a private symbol. If name is not empty, it will be the description.
42 Local<String> name = Local<String>());
45 * Retrieve a global private symbol. If a symbol with this name has not
49 * Also, there is only one global name space for the names used as keys.
53 static Local<Private> ForApi(Isolate* isolate, Local<String> name);
321 * \note Has() converts the key to a name, which possibly calls back into
342 Local<Context> context, Local<Name> name,
350 void SetAccessorProperty(Local<Name> name, Local<Function> getter,
360 Local<Context> context, Local<Name> name,
[all...]
/third_party/node/deps/v8/src/ast/
H A Dast-value-factory.cc12 // * Neither the name of Google Inc. nor the names of its
299 #define F(name, str) \ in AstStringConstants()
307 name##_string_ = zone_.New<AstRawString>(true, literal, raw_hash_field); \ in AstStringConstants()
310 name##_string_->set_string(isolate->factory()->name##_string()); \ in AstStringConstants()
311 string_table_.InsertNew(name##_string_, name##_string_->Hash()); \ in AstStringConstants()
/third_party/node/deps/v8/src/base/
H A Dlogging.h98 #define CHECK_OP(name, op, lhs, rhs) \
100 if (std::string* _msg = ::v8::base::Check##name##Impl< \
109 #define DCHECK_OP(name, op, lhs, rhs) \
111 if (std::string* _msg = ::v8::base::Check##name##Impl< \
125 #define CHECK_OP(name, op, lhs, rhs) \
127 bool _cmp = ::v8::base::Cmp##name##Impl< \
/third_party/node/deps/v8/src/builtins/
H A Dbuiltins-arraybuffer.cc17 #define CHECK_SHARED(expected, name, method) \
18 if (name->is_shared() != expected) { \
23 name)); \
26 #define CHECK_RESIZABLE(expected, name, method) \
27 if (name->is_resizable() != expected) { \
32 name)); \
/third_party/node/deps/v8/src/objects/
H A Ddictionary-inl.h195 return PropertyCell::cast(object).name(); in Unwrap()
232 return CellAt(cage_base, entry).name(cage_base); in NameAt()
247 DCHECK_EQ(key, PropertyCell::cast(value).name()); in SetEntry()
313 DCHECK(PropertyCell::cast(other).name().IsUniqueName()); in IsMatch()
314 return *key == PropertyCell::cast(other).name(); in IsMatch()
319 return PropertyCell::cast(other).name().hash(); in HashForObject()
/third_party/mesa3d/src/util/
H A Ddriconf.h75 .name = #_name, \
84 .name = #_name, \
94 .name = #_name, \
104 .name = #_name, \
115 .name = #_name, \
124 .name = #_name, \
/third_party/node/deps/openssl/openssl/crypto/ec/asm/
H A Decp_nistp521-ppc64.pl44 my ($name) = @_;
47 .globl ${name}
49 ${name}:
56 my ($name) = @_;
60 .size ${name},.-${name}
/third_party/node/deps/openssl/openssl/apps/
H A Drehash.c238 const X509_NAME *name = NULL; in do_file() local
278 name = X509_get_subject_name(x->x509); in do_file()
286 name = X509_CRL_get_issuer(x->crl); in do_file()
296 if (name != NULL) { in do_file()
300 X509_NAME_hash_ex(name, in do_file()
312 errs += add_entry(type, X509_NAME_hash_old(name), in do_file()
/third_party/node/deps/undici/src/lib/fetch/
H A Dwebidl.js322 header: i.name,
323 message: `Expected ${V} to be an instance of ${i.name}.`
547 // equal to T’s name, then throw a TypeError.
551 V.constructor.name !== T.name
554 prefix: `${T.name}`,
556 types: [T.name]
/third_party/python/Lib/ctypes/test/
H A Dtest_cfuncs.py206 def __getattr__(self, name):
207 if name[:2] == '__' and name[-2:] == '__':
208 raise AttributeError(name)
209 func = self._FuncPtr(("s_" + name, self))
210 setattr(self, name, func)
/third_party/python/Lib/html/
H A Dparser.py35 # and http://www.w3.org/TR/html5/tokenization.html#tag-name-state
41 <[a-zA-Z][^\t\n\r\f />\x00]* # tag name
42 (?:[\s/]* # optional whitespace before attribute name
43 (?:(?<=['"\s/])[^\s/>][^\s/=>]* # attribute name
57 # </ and the tag name, so maybe this should be fixed
202 name = match.group()[2:-1]
203 self.handle_charref(name)
217 name = match.group(1)
218 self.handle_entityref(name)
390 # find the name
[all...]
/third_party/python/Lib/test/
H A Dtest_cgi.py131 Content-Disposition: form-data; name="submit-name"
140 expected = {'submit-name': ['just a string\n']}
146 Content-Disposition: form-data; name="submit-name"
156 expected = {'submit-name': ["\udce2\udc98\udc83"]}
159 result["submit-name"][0].encode('utf8', 'surrogateescape'))
166 fs.list.append(namedtuple('MockFieldStorage', 'name')('fieldvalue'))
258 def __getattr__(self, name):
260 a = getattr(file, name)
[all...]
/third_party/openssl/apps/
H A Drehash.c241 const X509_NAME *name = NULL; in do_file() local
281 name = X509_get_subject_name(x->x509); in do_file()
289 name = X509_CRL_get_issuer(x->crl); in do_file()
299 if (name != NULL) { in do_file()
303 X509_NAME_hash_ex(name, in do_file()
315 errs += add_entry(type, X509_NAME_hash_old(name), in do_file()
/third_party/openssl/crypto/ec/asm/
H A Decp_nistp521-ppc64.pl44 my ($name) = @_;
47 .globl ${name}
49 ${name}:
56 my ($name) = @_;
60 .size ${name},.-${name}
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/protected_memory/
H A DvktProtectedMemAttachmentLoadTests.cpp78 const std::string& name, in AttachmentLoadTestCase()
81 : TestCase (testCtx, name) in AttachmentLoadTestCase()
298 const std::string name = "clear_" + de::toString(ndx + 1); in createAttachmentLoadTests() local
299 loadStaticTests->addChild(new AttachmentLoadTestCase(testCtx, name.c_str(), testData[ndx].clearValue, testData[ndx].data)); in createAttachmentLoadTests()
308 const std::string name = "clear_" + de::toString(ndx + 1); in createAttachmentLoadTests() local
321 loadRandomTests->addChild(new AttachmentLoadTestCase(testCtx, name.c_str(), clearValue, data)); in createAttachmentLoadTests()
77 AttachmentLoadTestCase(tcu::TestContext& testCtx, const std::string& name, vk::VkClearValue clearValue, ValidationData data) AttachmentLoadTestCase() argument
H A DvktProtectedMemClearColorImageTests.cpp78 const std::string& name, in ClearColorImageTestCase()
82 : TestCase (testCtx, name) in ClearColorImageTestCase()
320 const std::string name = "clear_" + de::toString(ndx + 1); in createClearColorImageTests() local
321 clearStaticTests->addChild(new ClearColorImageTestCase(testCtx, name.c_str(), testData[ndx].clearColorValue, testData[ndx].data, cmdBufferType)); in createClearColorImageTests()
330 const std::string name = "clear_" + de::toString(ndx + 1); in createClearColorImageTests() local
343 clearRandomTests->addChild(new ClearColorImageTestCase(testCtx, name.c_str(), clearValue.color, data, cmdBufferType)); in createClearColorImageTests()
77 ClearColorImageTestCase(tcu::TestContext& testCtx, const std::string& name, vk::VkClearColorValue clearColorValue, ValidationData data, CmdBufferType cmdBufferType) ClearColorImageTestCase() argument
H A DvktProtectedMemCopyBufferToImageTests.cpp79 const std::string& name, in CopyBufferToImageTestCase()
83 : TestCase (testCtx, name) in CopyBufferToImageTestCase()
382 const std::string name = "copy_" + de::toString(ndx + 1); in createCopyBufferToImageTests() local
383 copyStaticTests->addChild(new CopyBufferToImageTestCase(testCtx, name.c_str(), testData[ndx].fillValue.uint, testData[ndx].data, cmdBufferType)); in createCopyBufferToImageTests()
392 const std::string name = "copy_" + de::toString(ndx + 1); in createCopyBufferToImageTests() local
410 copyRandomTests->addChild(new CopyBufferToImageTestCase(testCtx, name.c_str(), fillValue.uint, data, cmdBufferType)); in createCopyBufferToImageTests()
78 CopyBufferToImageTestCase(tcu::TestContext& testCtx, const std::string& name, deUint32 fillValue, ValidationData data, CmdBufferType cmdBufferType) CopyBufferToImageTestCase() argument
H A DvktProtectedMemCopyImageToBufferTests.cpp83 const std::string& name, in CopyImageToBufferTestCase()
89 : TestCase (testCtx, name) in CopyImageToBufferTestCase()
390 const std::string name = "copy_" + de::toString(ndx + 1) + (pipelineProtectedAccess[ppa] ? "_protected_access" : "");; in createCopyImageToFloatBufferTests() local
391 copyStaticTests->addChild(new CopyImageToBufferTestCase<tcu::Vec4>(testCtx, name.c_str(), testData[ndx].fillValue, testData[ndx].data, cmdBufferType, vk::VK_FORMAT_R32G32B32A32_SFLOAT, pipelineProtectedAccess[ppa])); in createCopyImageToFloatBufferTests()
402 const std::string name = "copy_" + de::toString(ndx + 1) + (pipelineProtectedAccess[ppa] ? "_protected_access" : ""); in createCopyImageToFloatBufferTests() local
421 copyRandomTests->addChild(new CopyImageToBufferTestCase<tcu::Vec4>(testCtx, name.c_str(), clearValue.color, data, cmdBufferType, vk::VK_FORMAT_R32G32B32A32_SFLOAT, pipelineProtectedAccess[ppa])); in createCopyImageToFloatBufferTests()
82 CopyImageToBufferTestCase(tcu::TestContext& testCtx, const std::string& name, vk::VkClearColorValue fillValue, ValidationData<T> data, CmdBufferType cmdBufferType, vk::VkFormat format, bool pipelineProtectedAccess) CopyImageToBufferTestCase() argument

Completed in 49 milliseconds

1...<<861862863864865866867868869870>>...2504