HomeSort by relevance Sort by last modified time
    Searched defs:name (Results 226 - 250 of 13238) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/spirv-llvm/lib/SPIRV/Mangler/
FunctionDescriptor.h 30 /// The name of the function (stripped).
31 std::string name; member in struct:SPIR::FunctionDescriptor
  /external/strace/
sysctl.c 16 * 3. The name of the author may not be used to endorse or promote products
50 int *name; local
57 name = (size / sizeof(int) != (unsigned long) info.nlen) ? NULL : malloc(size);
58 if (name == NULL ||
59 umoven(tcp, (unsigned long) info.name, size, name) < 0) {
60 free(name);
63 info.name, info.nlen, info.oldval,
75 printxval(sysctl_root, name[0], "CTL_???");
80 switch (name[0])
    [all...]
  /external/strace/tests/
prctl-name.c 16 * 3. The name of the author may not be used to endorse or promote products
48 char *name = tail_memdup(str, sizeof(str)); local
56 rc = prctl(PR_SET_NAME, name + len - i);
64 *name = -1;
65 ++name;
66 memcpy(name, str, len);
69 rc = prctl(PR_SET_NAME, name + len - i);
72 name + len - i, sprintrc(rc));
82 rc = prctl(PR_GET_NAME, name + len - i);
84 name + len - i, sprintrc(rc))
    [all...]
  /external/strace/tests-m32/
prctl-name.c 16 * 3. The name of the author may not be used to endorse or promote products
48 char *name = tail_memdup(str, sizeof(str)); local
56 rc = prctl(PR_SET_NAME, name + len - i);
64 *name = -1;
65 ++name;
66 memcpy(name, str, len);
69 rc = prctl(PR_SET_NAME, name + len - i);
72 name + len - i, sprintrc(rc));
82 rc = prctl(PR_GET_NAME, name + len - i);
84 name + len - i, sprintrc(rc))
    [all...]
  /external/strace/tests-mx32/
prctl-name.c 16 * 3. The name of the author may not be used to endorse or promote products
48 char *name = tail_memdup(str, sizeof(str)); local
56 rc = prctl(PR_SET_NAME, name + len - i);
64 *name = -1;
65 ++name;
66 memcpy(name, str, len);
69 rc = prctl(PR_SET_NAME, name + len - i);
72 name + len - i, sprintrc(rc));
82 rc = prctl(PR_GET_NAME, name + len - i);
84 name + len - i, sprintrc(rc))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Object/
Error.cpp 23 virtual const char* name() const;
29 const char *_object_error_category::name() const { function in class:_object_error_category
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
regcclass.h 21 * 3. Neither the name of the University nor the names of its contributors
45 const char *name; member in struct:cclass
  /external/syslinux/gnu-efi/gnu-efi-3.0/apps/
printenv.c 8 CHAR16 name[256], *val, fmt[20]; local
14 name[0] = 0;
17 Print(L"GUID Variable Name Value\n");
22 size = sizeof(name);
23 status = uefi_call_wrapper(RT->GetNextVariableName, 3, &size, name, &vendor);
27 val = LibGetVariable(name, &vendor);
28 Print(fmt, &vendor, name, val);
  /external/syslinux/gpxe/src/include/gpxe/
command.h 10 /** Name of the command */
11 const char *name; member in struct:command
  /external/tensorflow/tensorflow/compiler/xla/service/
user_computation.h 62 // Creates an empty computation with the given name and computation handle.
63 explicit UserComputation(const string& name, const ComputationHandle& handle);
249 // Returns the user-provided name of this user computation, which is provided
251 const string& name() const { return name_; } function in class:xla::UserComputation
381 // Name of the computation.
  /external/tensorflow/tensorflow/contrib/kernel_methods/python/mappers/
dense_kernel_mapper.py 52 def name(self): member in class:DenseKernelMapper
53 """Returns the name of the kernel mapper."""
random_fourier_features.py 62 def __init__(self, input_dim, output_dim, stddev=1.0, seed=1, name=None):
76 name: name for the mapper object.
87 self._name = name
90 def name(self): member in class:RandomFourierFeatureMapper
91 """Returns a name for the `RandomFourierFeatureMapper` instance.
93 If the name provided in the constructor is `None`, then the object's unique
97 A name for the `RandomFourierFeatureMapper` instance.
  /external/tensorflow/tensorflow/contrib/lite/testing/
nnapi_example.cc 75 string name = ent->d_name; local
76 if (name.rfind(".txt") == name.length() - 4) {
77 printf("%s: ", name.c_str());
78 if (Interpret((base_dir + "/" + name).c_str(), use_nnapi)) {
  /external/tensorflow/tensorflow/core/common_runtime/sycl/
sycl_device_factory.cc 38 string name = strings::StrCat(name_prefix, "/device:SYCL:", i); variable
40 options, name, Bytes(256 << 20), DeviceLocality(),
  /external/tensorflow/tensorflow/core/lib/monitoring/
metric_def_test.cc 30 EXPECT_EQ("/tensorflow/metric0", metric_def0.name());
31 EXPECT_EQ("/tensorflow/metric1", metric_def1.name());
46 string name = "/tensorflow/metric0"; local
50 name, description, label_description);
53 name[4] = 'A';
57 EXPECT_NE(name, metric_def.name());
  /external/tensorflow/tensorflow/core/util/
saved_tensor_slice_util_test.cc 29 // Testing serialization of tensor name and tensor slice in the ordered code
35 string name; local
37 TF_CHECK_OK(DecodeTensorNameSlice(buffer, &name, &s));
38 EXPECT_EQ("foo", name);
  /external/testng/src/main/java/org/testng/xml/dom/
Tag.java 12 String name(); method in interface:Tag
TagContent.java 12 String name(); method in interface:TagContent
  /external/toybox/toys/android/
setprop.c 12 usage: setprop NAME VALUE
24 char *name = toys.optargs[0], *value = toys.optargs[1]; local
26 size_t name_len = strlen(name), value_len = strlen(value);
36 if (*name == '.' || name[name_len - 1] == '.')
38 if (strstr(name, ".."))
39 error_exit("'..' is not allowed in a property name");
40 for (p = name; *p; ++p)
42 error_exit("invalid character '%c' in name '%s'", *p, name);
    [all...]
  /external/tpm2/
ReadPublic_fp.h 16 TPM2B_NAME name; member in struct:__anon40484
  /external/valgrind/memcheck/tests/
buflen_check.c 7 struct sockaddr name; local
19 res3 = getsockname(res1, &name, NULL); /* NULL is bogus */
  /external/vogar/src/vogar/android/
UninstallApkTask.java 24 private final String name; field in class:UninstallApkTask
26 public UninstallApkTask(AndroidSdk androidSdk, String name) {
27 super("uninstall " + name);
29 this.name = name;
33 androidSdk.uninstall(name);
  /external/walt/pywalt/
setup.py 6 name='pywalt', variable
  /external/wpa_supplicant_8/src/utils/
ext_password_i.h 15 const char *name; member in struct:ext_password_backend
18 struct wpabuf * (*get)(void *ctx, const char *name);
  /external/xmlrpcpp/src/
XmlRpcServerMethod.h 27 XmlRpcServerMethod(std::string const& name, XmlRpcServer* server = 0);
31 //! Returns the name of the method
32 std::string& name() { return _name; } function in class:XmlRpc::XmlRpcServerMethod

Completed in 1726 milliseconds

1 2 3 4 5 6 7 8 91011>>