HomeSort by relevance Sort by last modified time
    Searched defs:backend (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/mesa3d/src/gbm/main/
backend.c 34 #include "backend.h"
50 load_backend(const struct backend_desc *backend)
54 if (backend == NULL)
57 if (backend->builtin) {
58 init = backend->builtin;
67 const struct backend_desc *backend = NULL; local
72 backend = &backends[i];
77 return backend;
83 const struct gbm_backend *backend = NULL; local
90 backend = load_backend(find_backend(b))
    [all...]
  /external/selinux/libselinux/utils/
selabel_lookup.c 12 "usage: %s -b backend [-v] [-r] -k key [-t type] [-f file]\n\n"
14 "-b The backend - \"file\", \"media\", \"x\", \"db\" or "
18 "-k Lookup key - Depends on backend.\n\t"
19 "-t Lookup type - Optional as depends on backend.\n\t"
25 " \"file\" backend for path \"/run\" with mode = 0\n\t"
27 " lookup_raw the \"X\" backend for type SELABEL_X_EVENT\n\t"
35 int raw = 0, type = 0, backend = 0, rc, opt; local
51 backend = SELABEL_CTX_FILE;
53 backend = SELABEL_CTX_MEDIA;
55 backend = SELABEL_CTX_X
    [all...]
selabel_digest.c 14 "usage: %s -b backend [-d] [-v] [-B] [-i] [-f file]\n\n"
16 "-b The backend - \"file\", \"media\", \"x\", \"db\" or "
62 int backend = 0, rc, opt, validate = 0; local
86 backend = SELABEL_CTX_FILE;
88 backend = SELABEL_CTX_MEDIA;
90 backend = SELABEL_CTX_X;
92 backend = SELABEL_CTX_DB;
94 backend = SELABEL_CTX_ANDROID_PROP;
96 backend = SELABEL_CTX_ANDROID_SERVICE;
98 fprintf(stderr, "Unknown backend: %s\n"
    [all...]
  /external/skia/tests/
TestConfigParsing.cpp 288 "samples=54" // No backend.
337 const char* backend; member in struct:__anon34339
346 REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(expectedConfigs[i].backend));
370 const char* backend; member in struct:__anon34340
384 // backend.
388 REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(expectedConfigs[i].backend));
  /external/skqp/tests/
TestConfigParsing.cpp 296 "samples=54" // No backend.
345 const char* backend; member in struct:__anon35010
354 REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(expectedConfigs[i].backend));
378 const char* backend; member in struct:__anon35011
392 // backend.
396 REPORTER_ASSERT(reporter, configs[i]->getBackend().equals(expectedConfigs[i].backend));
  /external/wpa_supplicant_8/src/utils/
ext_password.c 2 * External password backend
27 const struct ext_password_backend *backend; member in struct:ext_password_data
32 struct ext_password_data * ext_password_init(const char *backend,
43 if (os_strcmp(backends[i]->name, backend) == 0) {
44 data->backend = backends[i];
49 if (!data->backend) {
54 data->priv = data->backend->init(params);
66 if (data && data->backend && data->priv)
67 data->backend->deinit(data->priv);
77 return data->backend->get(data->priv, name)
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
service.h 27 #include "tensorflow/compiler/xla/service/backend.h"
244 // Returns the backend used to execute computations.
245 const Backend& backend() const { return *execute_backend_; } function in class:xla::Service
246 Backend* mutable_backend() { return execute_backend_.get(); }
263 std::unique_ptr<Backend> execute_backend);
265 static StatusOr<std::unique_ptr<Backend>> CreateComputeConstantBackend();
289 std::unique_ptr<HloModuleConfig> module_config, Backend* backend,
298 Backend* backend
    [all...]
hlo_runner.cc 26 #include "tensorflow/compiler/xla/service/backend.h"
107 backend_ = Backend::CreateBackend(backend_options).ConsumeValueOrDie();
119 module, backend().compiler()->RunHloPasses(
120 std::move(module), backend().default_stream_executor(),
125 backend().compiler()->RunBackend(std::move(module),
126 backend().default_stream_executor(),
129 se::Stream stream(backend().default_stream_executor());
133 run_options.set_device_ordinal(backend().default_device_ordinal());
135 run_options.set_allocator(backend().memory_allocator());
136 run_options.set_inter_op_thread_pool(backend().inter_op_thread_pool())
182 Backend& HloRunner::backend() { function in class:xla::HloRunner
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttribute.h 66 inline const GNULDBackend& backend() const { return m_Backend; } function in class:mcld::ELFAttribute
  /packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
ConfigureNotificationSettingsTest.java 81 NotificationBackend backend = mock(NotificationBackend.class); local
82 when(backend.getBlockedAppCount()).thenReturn(0);
85 provider.setBackend(backend);
98 NotificationBackend backend = mock(NotificationBackend.class); local
99 when(backend.getBlockedAppCount()).thenReturn(5);
102 provider.setBackend(backend);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/cloog/
state.h 12 CloogBackend *backend; member in struct:cloogstate
  /external/python/cpython3/Lib/test/
test_dtrace.py 105 backend = None variable in class:TraceTests
110 self.backend.assert_usable()
113 actual_output, expected_output = self.backend.run_case(
153 backend = DTraceBackend() variable in class:DTraceNormalTests
158 backend = DTraceBackend() variable in class:DTraceOptimizedTests
163 backend = SystemTapBackend() variable in class:SystemTapNormalTests
168 backend = SystemTapBackend() variable in class:SystemTapOptimizedTests
  /external/selinux/libselinux/src/
label_internal.h 80 unsigned int backend; member in struct:selabel_handle
97 /* supports backend-specific state information */
  /external/skia/bench/
nanobench.h 26 Benchmark::Backend backend; member in struct:Config
  /external/skia/tools/gpu/
GrContextFactory.cpp 151 GrBackend backend = ContextTypeBackend(type); local
152 switch (backend) {
258 SkASSERT(testCtx && testCtx->backend() == backend);
291 context.fBackend = backend;
  /external/skqp/bench/
nanobench.h 26 Benchmark::Backend backend; member in struct:Config
  /external/skqp/include/gpu/
GrBackendSurface.h 21 // Creates an invalid backend texture.
65 GrBackend backend() const {return fBackend; } function in class:GrBackendTexture
67 // If the backend API is GL, this returns a pointer to the GrGLTextureInfo struct. Otherwise
72 // If the backend API is Vulkan, this returns a pointer to the GrVkImageInfo struct. Otherwise
77 // If the backend API is Mock, this returns a pointer to the GrMockTextureInfo struct. Otherwise
81 // Returns true if the backend texture has been initialized.
112 // Creates an invalid backend texture.
143 GrBackend backend() const {return fBackend; } function in class:GrBackendRenderTarget
145 // If the backend API is GL, this returns a pointer to the GrGLFramebufferInfo struct. Otherwise
150 // If the backend API is Vulkan, this returns a pointer to the GrVkImageInfo struct. Otherwis
    [all...]
  /external/skqp/tools/gpu/
GrContextFactory.cpp 151 GrBackend backend = ContextTypeBackend(type); local
152 switch (backend) {
258 SkASSERT(testCtx && testCtx->backend() == backend);
291 context.fBackend = backend;
  /external/tensorflow/tensorflow/compiler/xla/client/
local_client.cc 22 #include "tensorflow/compiler/xla/service/backend.h"
34 StatusOr<Backend::StreamPtr> BorrowStreamForDevice(int device_ordinal,
35 Backend* backend) {
37 device_ordinal = backend->default_device_ordinal();
39 return backend->BorrowStream(device_ordinal);
44 Backend* backend,
47 backend_(backend),
55 const ExecutableRunOptions& run_options, const Backend& backend)
241 const Backend& LocalClient::backend() const { function in class:xla::LocalClient
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/tests/
hlo_test_base.cc 138 TF_RETURN_IF_ERROR(VerifyHloModule(*reference_runner_.backend().platform(),
153 VerifyHloModule(*test_runner_.backend().platform(), module.get()));
270 Backend& HloTestBase::backend() { return test_runner_.backend(); } function in class:xla::HloTestBase
  /packages/apps/Settings/src/com/android/settings/dream/
DreamSettings.java 117 DreamBackend backend = DreamBackend.getInstance(context); local
118 return getSummaryTextFromBackend(backend, context);
122 static CharSequence getSummaryTextFromBackend(DreamBackend backend, Context context) {
123 if (!backend.isEnabled()) {
126 return backend.getActiveDreamName();
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/net/
HttpHelperFuncTest.java 34 * Make sure that we get a timeout if the backend doesn't respond
43 Backend backend = new Backend(backendDelay, backendTimeout, barrier); local
47 // Kick off the backend and wait for it to get up and running
48 backend.start();
52 final int port = backend.getPort(); // FIXME race condition
54 backend.join(2 * backendTimeout);
55 Throwable e = backend.getException();
56 String msg = "Backend was not initialized properly"
85 Backend backend = new Backend(backendDelay, backendTimeout, barrier); local
    [all...]
  /external/skia/include/gpu/
GrBackendSurface.h 21 // Creates an invalid backend format.
38 GrBackend backend() const {return fBackend; } function in class:GrBackendFormat
40 // If the backend API is GL, these return a pointer to the format and target. Otherwise
46 // If the backend API is Vulkan, this returns a pointer to a VkFormat. Otherwise
51 // If the backend API is Mock, this returns a pointer to a GrPixelConfig. Otherwise
55 // Returns true if the backend format has been initialized.
84 // Creates an invalid backend texture.
128 GrBackend backend() const {return fBackend; } function in class:GrBackendTexture
130 // If the backend API is GL, this returns a pointer to the GrGLTextureInfo struct. Otherwise
135 // If the backend API is Vulkan, this returns a pointer to the GrVkImageInfo struct. Otherwis
208 GrBackend backend() const {return fBackend; } function in class:GrBackendRenderTarget
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/
xla_device.cc 56 // Caches a XlaDeviceAllocator per <backend, device ordinal> pair. A
64 // backend and device_ordinal.
66 const xla::Backend* backend, int device_ordinal);
75 std::unordered_map<std::pair<const xla::Backend*, int>,
77 hash<std::pair<const xla::Backend*, int>>>
92 const xla::Backend* backend, int device_ordinal) {
96 auto it = state.allocators_.find({backend, device_ordinal});
102 xla::MakeUnique<XlaDeviceAllocator>(backend, device_ordinal)
208 xla::Backend* backend = client()->mutable_backend(); local
217 xla::Backend* backend = client()->mutable_backend(); local
    [all...]
  /art/test/common/
runtime_state.cc 114 // Check the backend.
115 constexpr const char* kCompilerBackend = "--compiler-backend=";
116 const char* backend = strstr(cmd_line, kCompilerBackend); local
117 if (backend != nullptr) {
119 backend += strlen(kCompilerBackend);
120 if (strncmp(backend, "Optimizing", strlen("Optimizing")) != 0) {

Completed in 499 milliseconds

1 2 3 4 5