Home
last modified time | relevance | path

Searched full:runtime (Results 1 – 25 of 7955) sorted by relevance

12345678910>>...319

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/
DAntlr3.Runtime (VS2008).csproj13 <AssemblyName>Antlr3-2.Runtime.DotNet20</AssemblyName>
21 <RootNamespace>Antlr.Runtime</RootNamespace>
49 <RootNamespace>Antlr.Runtime</RootNamespace>
60 <DocumentationFile>bin\Release\net-2.0\Antlr3-2.Runtime.DotNet20.xml</DocumentationFile>
69 <RootNamespace>Antlr.Runtime</RootNamespace>
79 <Compile Include="Antlr.Runtime.Debug\DebugEventListenerConstants.cs" />
80 <Compile Include="Antlr.Runtime.JavaExtensions\Check.cs" />
81 <Compile Include="Antlr.Runtime.JavaExtensions\DictionaryExtensions.cs" />
82 <Compile Include="Antlr.Runtime.JavaExtensions\EnumerableExtensions.cs" />
83 <Compile Include="Antlr.Runtime.JavaExtensions\ExceptionExtensions.cs" />
[all …]
DAntlr3.Runtime (VS2005).csproj13 <AssemblyName>Antlr3.Runtime</AssemblyName>
21 <RootNamespace>Antlr.Runtime</RootNamespace>
46 <RootNamespace>Antlr.Runtime</RootNamespace>
57 <DocumentationFile>bin\Release\net-2.0\Antlr3.Runtime.XML</DocumentationFile>
66 <RootNamespace>Antlr.Runtime</RootNamespace>
74 <Compile Include="Antlr.Runtime\ANTLRFileStream.cs" />
75 <Compile Include="Antlr.Runtime\ANTLRStringStream.cs" />
77 <Compile Include="Antlr.Runtime\BitSet.cs" />
78 <Compile Include="Antlr.Runtime\ICharStream.cs" />
79 <Compile Include="Antlr.Runtime\CharStreamState.cs" />
[all …]
/external/skqp/src/compute/skc/platforms/cl_12/
Druntime_cl_12.c36 skc_block_pool_create(struct skc_runtime * const runtime, cl_command_queue cq) in skc_block_pool_create() argument
39 runtime->block_pool.size = &runtime->config->block_pool; in skc_block_pool_create()
42 skc_extent_pdrw_alloc(runtime, in skc_block_pool_create()
43 &runtime->block_pool.blocks, in skc_block_pool_create()
44 runtime->block_pool.size->pool_size * in skc_block_pool_create()
45 runtime->config->block.bytes); in skc_block_pool_create()
48 skc_extent_pdrw_alloc(runtime, in skc_block_pool_create()
49 &runtime->block_pool.ids, in skc_block_pool_create()
50 runtime->block_pool.size->ring_pow2 * sizeof(skc_uint)); in skc_block_pool_create()
53 skc_extent_phr_pdrw_alloc(runtime, in skc_block_pool_create()
[all …]
Dextent_cl_12.c24 skc_extent_phrw_alloc(struct skc_runtime * const runtime, in skc_extent_phrw_alloc() argument
28 extent->hrw = skc_runtime_host_perm_alloc(runtime,SKC_MEM_FLAGS_READ_WRITE,size); in skc_extent_phrw_alloc()
32 skc_extent_phrw_free(struct skc_runtime * const runtime, in skc_extent_phrw_free() argument
35 skc_runtime_host_perm_free(runtime,extent->hrw); in skc_extent_phrw_free()
43 skc_extent_pdrw_alloc(struct skc_runtime * const runtime, in skc_extent_pdrw_alloc() argument
47 extent->drw = skc_runtime_device_perm_alloc(runtime, in skc_extent_pdrw_alloc()
53 skc_extent_pdrw_free(struct skc_runtime * const runtime, in skc_extent_pdrw_free() argument
56 skc_runtime_device_perm_free(runtime,extent->drw); in skc_extent_pdrw_free()
64 skc_extent_tdrw_alloc(struct skc_runtime * const runtime, in skc_extent_tdrw_alloc() argument
69 extent->drw = skc_runtime_device_temp_alloc(runtime, in skc_extent_tdrw_alloc()
[all …]
Dhandle_pool_cl_12.c33 // The runtime vends handles just in case we decide to exploit shared
72 skc_handle_reclaim_create(struct skc_runtime * const runtime, in skc_handle_reclaim_create() argument
83 reclaim->kernel = skc_device_acquire_kernel(runtime->device,kernel_id); in skc_handle_reclaim_create()
87 cl(SetKernelArg(reclaim->kernel,0,SKC_CL_ARG(runtime->block_pool.ids.drw))); in skc_handle_reclaim_create()
88 cl(SetKernelArg(reclaim->kernel,1,SKC_CL_ARG(runtime->block_pool.blocks.drw))); in skc_handle_reclaim_create()
89 cl(SetKernelArg(reclaim->kernel,2,SKC_CL_ARG(runtime->block_pool.atomics.drw))); in skc_handle_reclaim_create()
90 cl(SetKernelArg(reclaim->kernel,3,SKC_CL_ARG(runtime->config->block_pool.ring_mask))); in skc_handle_reclaim_create()
91 cl(SetKernelArg(reclaim->kernel,4,SKC_CL_ARG(runtime->handle_pool.map.drw))); in skc_handle_reclaim_create()
96 skc_handle_reclaim_dispose(struct skc_runtime * const runtime, in skc_handle_reclaim_dispose() argument
99 struct skc_handle_reclaim * const reclaim = runtime->handle_pool.reclaim + reclaim_type; in skc_handle_reclaim_dispose()
[all …]
Dallocator_device_cl.c22 skc_runtime_device_perm_alloc(struct skc_runtime * const runtime, in skc_runtime_device_perm_alloc() argument
28 cl_mem mem = clCreateBuffer(runtime->cl.context, in skc_runtime_device_perm_alloc()
37 skc_runtime_device_perm_free(struct skc_runtime * const runtime, in skc_runtime_device_perm_free() argument
48 skc_runtime_device_temp_alloc(struct skc_runtime * const runtime, in skc_runtime_device_temp_alloc() argument
66 br.origin = skc_suballocator_subbuf_alloc(&runtime->allocator.device.temp.suballocator, in skc_runtime_device_temp_alloc()
67 runtime->scheduler, in skc_runtime_device_temp_alloc()
75 cl_mem mem = clCreateSubBuffer(runtime->allocator.device.temp.extent, in skc_runtime_device_temp_alloc()
86 skc_runtime_device_temp_free(struct skc_runtime * const runtime, in skc_runtime_device_temp_free() argument
93 skc_suballocator_subbuf_free(&runtime->allocator.device.temp.suballocator,subbuf_id); in skc_runtime_device_temp_free()
103 skc_allocator_device_create(struct skc_runtime * const runtime) in skc_allocator_device_create() argument
[all …]
Draster_builder_cl_12.c162 struct skc_runtime * runtime; member
298 struct skc_runtime * const runtime = impl->runtime; in skc_raster_builder_pfn_release() local
301 skc_runtime_host_perm_free(runtime,impl->raster_builder); in skc_raster_builder_pfn_release()
304 skc_extent_phrwg_thr1s_free(runtime,&impl->path_ids); in skc_raster_builder_pfn_release()
305 skc_extent_phw1g_tdrNs_free(runtime,&impl->transforms); in skc_raster_builder_pfn_release()
306 skc_extent_phw1g_tdrNs_free(runtime,&impl->clips); in skc_raster_builder_pfn_release()
307 skc_extent_phw1g_tdrNs_free(runtime,&impl->fill_cmds); in skc_raster_builder_pfn_release()
308 skc_extent_phrwg_tdrNs_free(runtime,&impl->raster_ids); in skc_raster_builder_pfn_release()
325 skc_runtime_host_perm_free(runtime,impl); in skc_raster_builder_pfn_release()
334 skc_raster_builder_rasters_release(struct skc_runtime * const runtime, in skc_raster_builder_rasters_release() argument
[all …]
/external/antlr/runtime/ActionScript/project/
D.flexLibProperties4 <classEntry path="org.antlr.runtime.BitSet"/>
5 <classEntry path="org.antlr.runtime.tree.CommonErrorNode"/>
6 <classEntry path="org.antlr.runtime.tree.CommonTreeAdaptor"/>
7 <classEntry path="org.antlr.runtime.tree.BaseTree"/>
8 <classEntry path="org.antlr.runtime.MismatchedSetException"/>
9 <classEntry path="org.antlr.runtime.RecognitionException"/>
10 <classEntry path="org.antlr.runtime.NoViableAltException"/>
11 <classEntry path="org.antlr.runtime.Parser"/>
12 <classEntry path="org.antlr.runtime.tree.RewriteRuleNodeStream"/>
13 <classEntry path="org.antlr.runtime.TokenRewriteStream"/>
[all …]
/external/antlr/runtime/JavaScript/build/
Dantlr3.properties10 org/antlr/runtime/RecognizerSharedState.js,\
11 org/antlr/runtime/IndexOutOfBoundsExceptions.js,\
12 org/antlr/runtime/RecognitionException.js,\
13 org/antlr/runtime/MismatchedTokenException.js,\
14 org/antlr/runtime/UnwantedTokenException.js,\
15 org/antlr/runtime/MissingTokenException.js,\
16 org/antlr/runtime/NoViableAltException.js,\
17 org/antlr/runtime/EarlyExitException.js,\
18 org/antlr/runtime/MismatchedSetException.js,\
19 org/antlr/runtime/MismatchedNotSetException.js,\
[all …]
/external/XNNPACK/src/
Druntime.c57 struct xnn_runtime* runtime = NULL; in xnn_create_runtime_v2() local
61 xnn_log_error("failed to create runtime: XNNPACK is not initialized"); in xnn_create_runtime_v2()
69 runtime = xnn_allocate_zero_memory(sizeof(struct xnn_runtime)); in xnn_create_runtime_v2()
70 if (runtime == NULL) { in xnn_create_runtime_v2()
71 … xnn_log_error("failed to allocate %zu bytes for runtime descriptor", sizeof(struct xnn_runtime)); in xnn_create_runtime_v2()
75runtime->opdata = xnn_allocate_zero_memory(sizeof(struct xnn_operator_data) * subgraph->num_nodes); in xnn_create_runtime_v2()
76 if (runtime->opdata == NULL) { in xnn_create_runtime_v2()
81 runtime->num_ops = subgraph->num_nodes; in xnn_create_runtime_v2()
96 &runtime->opdata[i].operator_object); in xnn_create_runtime_v2()
100 runtime->opdata[i].batch_size = product_non_channel_dims(&values[node->inputs[0]].shape); in xnn_create_runtime_v2()
[all …]
/external/deqp-deps/glslang/Test/baseResults/
DruntimeArray.vert.out44 0:46 a: direct index for structure (layout( column_major shared) uniform runtime-sized array…
45 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) …
51 0:47 b: direct index for structure (layout( column_major shared) uniform runtime-sized array…
52 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) …
58 0:48 a: direct index for structure (layout( column_major shared) buffer runtime-sized array …
59 …ock{layout( column_major shared) buffer runtime-sized array of int a, layout( column_major shared)…
65 0:49 b: direct index for structure (layout( column_major shared) buffer runtime-sized array …
66 …ock{layout( column_major shared) buffer runtime-sized array of int a, layout( column_major shared)…
72 0:51 a: direct index for structure (layout( column_major shared) uniform runtime-sized array…
73 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) …
[all …]
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
DruntimeArray.vert.out44 0:46 a: direct index for structure (layout( column_major shared) uniform runtime-sized array…
45 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) …
51 0:47 b: direct index for structure (layout( column_major shared) uniform runtime-sized array…
52 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) …
58 0:48 a: direct index for structure (layout( column_major shared) buffer runtime-sized array …
59 …ock{layout( column_major shared) buffer runtime-sized array of int a, layout( column_major shared)…
65 0:49 b: direct index for structure (layout( column_major shared) buffer runtime-sized array …
66 …ock{layout( column_major shared) buffer runtime-sized array of int a, layout( column_major shared)…
72 0:51 a: direct index for structure (layout( column_major shared) uniform runtime-sized array…
73 …k{layout( column_major shared) uniform runtime-sized array of int a, layout( column_major shared) …
[all …]
/external/tensorflow/third_party/llvm_openmp/
DBUILD18 "runtime/tools/message-converter.pl",
19 "runtime/src/i18n/en_US.txt",
22 …cmd = "perl $(location runtime/tools/message-converter.pl) --os=lin --prefix=kmp_i18n --enum=$@ $…
28 "runtime/tools/message-converter.pl",
29 "runtime/src/i18n/en_US.txt",
32 …cmd = "perl $(location runtime/tools/message-converter.pl) --os=lin --prefix=kmp_i18n --default=$@…
38 srcs = ["runtime/src/exports_so.txt"],
40 cmd = "cp $(location runtime/src/exports_so.txt) $@",
46 "runtime/src/z_Windows_NT-586_asm.asm",
51 cmd = "cp $(location runtime/src/z_Windows_NT-586_asm.asm) $@",
[all …]
/external/antlr/runtime/CSharp2/
DAPI CHANGES.TXT11 Antlr.Runtime.Tree.Tree renamed to Antlr.Runtime.Tree.TreeConstants
13 Antlr.Runtime.BaseRecognizer.Failed() has been turned into a property
14 Antlr.Runtime.BaseRecognizer.NEXT_TOKEN_RULE_NAME renamed to Antlr.Runtime.BaseRecognizer.NextToken…
15 Antlr.Runtime.BaseRecognizer.MEMO_RULE_FAILED renamed to Antlr.Runtime.BaseRecognizer.MemoRuleFailed
16 Antlr.Runtime.BaseRecognizer.MEMO_RULE_UNKNOWN renamed to Antlr.Runtime.BaseRecognizer.MemoRuleUnkn…
17 Antlr.Runtime.BaseRecognizer.INITIAL_FOLLOW_STACK_SIZE renamed to Antlr.Runtime.BaseRecognizer.Init…
18 Antlr.Runtime.BaseRecognizer.DEFAULT_TOKEN_CHANNEL renamed to Antlr.Runtime.BaseRecognizer.DefaultT…
19 Antlr.Runtime.BaseRecognizer.HIDDEN renamed to Antlr.Runtime.BaseRecognizer.Hidden
20 Antlr.Runtime.BaseRecognizer.Input has been removed.
22 Antlr.Runtime.Parser.Input - return type has been changed to ITokenStream
[all …]
DREADME.TXT1 ANTLR v3.1 .NET Runtime Library (for us with the ANTLR C# Code Generator)
10 The ANTLR v3.1 .NET Runtime Library extend the ANTLR language processing
17 We hope you find the ANTLR v3.1 .NET Runtime Library delightful and useful
32 1. Antlr3.Runtime - the ANTLR v3.1 .NET Runtime Library
34 2. Antlr3.Utility - the ANTLR v3.1 .NET Runtime Utility Library
36 3. Antlr3.Runtime.Tests - the ANTLR v3.1 .NET Runtime Library Tests
42 1. Antlr3.Runtime - none
44 2. Antlr3.Utility - Antlr3.Runtime.dll
46 antlr.runtime.dll
48 3. Antlr3.Runtime.Tests - Antlr3.Runtime.dll
[all …]
/external/rust/crates/tokio/src/runtime/
Dhandle.rs1 use crate::runtime::blocking::task::BlockingTask;
2 use crate::runtime::task::{self, JoinHandle};
3 use crate::runtime::{blocking, context, driver, Spawner};
9 /// Handle to the runtime.
12 /// obtained using the [`Runtime::handle`] method.
14 /// [`Runtime::handle`]: crate::runtime::Runtime::handle()
35 /// Runtime context guard.
37 /// Returned by [`Runtime::enter`] and [`Handle::enter`], the context guard exits
38 /// the runtime context on drop.
40 /// [`Runtime::enter`]: fn@crate::runtime::Runtime::enter
[all …]
Dmod.rs1 //! The Tokio runtime.
3 //! Unlike other Rust programs, asynchronous applications require runtime
4 //! support. In particular, the following runtime services are necessary:
11 //! Tokio's [`Runtime`] bundles all of these services as a single type, allowing
13 //! not required to configure a [`Runtime`] manually, and a user may just use the
14 //! [`tokio::main`] attribute macro, which creates a [`Runtime`] under the hood.
58 //! From within the context of the runtime, additional tasks are spawned using
60 //! executed on the same thread pool used by the [`Runtime`].
62 //! A [`Runtime`] instance can also be used directly.
67 //! use tokio::runtime::Runtime;
[all …]
Dbuilder.rs1 use crate::runtime::handle::Handle;
2 use crate::runtime::{blocking, driver, Callback, Runtime, Spawner};
8 /// Builds Tokio Runtime with custom configuration values.
11 /// Runtime is constructed by calling [`build`].
26 /// use tokio::runtime::Builder;
29 /// // build runtime
30 /// let runtime = Builder::new_multi_thread()
37 /// // use runtime ...
41 /// Runtime type
53 /// The number of worker threads, used by Runtime.
[all …]
/external/antlr/runtime/Perl5/
DMANIFEST21 lib/ANTLR/Runtime.pm
22 lib/ANTLR/Runtime/ANTLRFileStream.pm
23 lib/ANTLR/Runtime/ANTLRStringStream.pm
24 lib/ANTLR/Runtime/BaseRecognizer.pm
25 lib/ANTLR/Runtime/BitSet.pm
26 lib/ANTLR/Runtime/CharStream.pm
27 lib/ANTLR/Runtime/CharStreamState.pm
28 lib/ANTLR/Runtime/CommonToken.pm
29 lib/ANTLR/Runtime/CommonTokenStream.pm
30 lib/ANTLR/Runtime/DFA.pm
[all …]
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
DUtils.java43 import org.jruby.runtime.Block;
44 import org.jruby.runtime.ThreadContext;
45 import org.jruby.runtime.builtin.IRubyObject;
64 return context.runtime.newSymbol(typeName.replace("TYPE_", "").toLowerCase()); in fieldTypeToRuby()
69 Ruby runtime = context.runtime; in checkType() local
77 throw runtime.newTypeError("Expected number type for integral field."); in checkType()
90 num2ulong(context.runtime, value); in checkType()
97 throw runtime.newTypeError("Expected number type for float field."); in checkType()
101 throw runtime.newTypeError("Expected number type for double field."); in checkType()
105 throw runtime.newTypeError("Invalid argument for boolean field."); in checkType()
[all …]
/external/toolchain-utils/go/patch/go-1.10.3/
Dgo6.patch17 diff --git src/runtime/crash_cgo_test.go src/runtime/crash_cgo_test.go
19 --- src/runtime/crash_cgo_test.old
20 +++ src/runtime/crash_cgo_test.go
26 - if runtime.GOOS != "linux" || (runtime.GOARCH != "amd64" && runtime.GOARCH != "ppc64le") {
27 - t.Skipf("not yet supported on %s/%s", runtime.GOOS, runtime.GOARCH)
38 - if runtime.GOOS != "linux" || (runtime.GOARCH != "amd64" && runtime.GOARCH != "ppc64le") {
39 - t.Skipf("not yet supported on %s/%s", runtime.GOOS, runtime.GOARCH)
45 diff --git src/runtime/crash_test.go src/runtime/crash_test.go
47 --- src/runtime/crash_test.go
48 +++ src/runtime/crash_test.go
[all …]
/external/toolchain-utils/go/patch/go-1.11.2/
Dgo6.patch9 - if runtime.GOARCH == "wasm" {
20 diff --git src/runtime/crash_cgo_test.go src/runtime/crash_cgo_test.go
22 --- src/runtime/crash_cgo_test.go
23 +++ src/runtime/crash_cgo_test.go
29 - switch platform := runtime.GOOS + "/" + runtime.GOARCH; platform {
45 - if runtime.GOOS != "linux" || (runtime.GOARCH != "amd64" && runtime.GOARCH != "ppc64le") {
46 - t.Skipf("not yet supported on %s/%s", runtime.GOOS, runtime.GOARCH)
52 diff --git src/runtime/crash_test.go src/runtime/crash_test.go
54 --- src/runtime/crash_test.go
55 +++ src/runtime/crash_test.go
[all …]
/external/skqp/src/compute/skc/
Dallocator_host.c36 skc_runtime_host_perm_alloc(struct skc_runtime * const runtime, in skc_runtime_host_perm_alloc() argument
45 skc_runtime_host_perm_free(struct skc_runtime * const runtime, in skc_runtime_host_perm_free() argument
56 skc_runtime_host_temp_alloc(struct skc_runtime * const runtime, in skc_runtime_host_temp_alloc() argument
72 return runtime->allocator.host.temp.extent + in skc_runtime_host_temp_alloc()
73 skc_suballocator_subbuf_alloc(&runtime->allocator.host.temp.suballocator, in skc_runtime_host_temp_alloc()
74 runtime->scheduler, in skc_runtime_host_temp_alloc()
80 skc_runtime_host_temp_free(struct skc_runtime * const runtime, in skc_runtime_host_temp_free() argument
87 skc_suballocator_subbuf_free(&runtime->allocator.host.temp.suballocator,subbuf_id); in skc_runtime_host_temp_free()
95 skc_allocator_host_create(struct skc_runtime * const runtime) in skc_allocator_host_create() argument
97 skc_suballocator_create(runtime, in skc_allocator_host_create()
[all …]
/external/smali/smali-integration-tests/src/test/smali/junit-tests/InstructionTests/Format12x/
DFormat12x.smali13 .annotation runtime Lorg/junit/Test;
26 .annotation runtime Lorg/junit/Test;
40 .annotation runtime Lorg/junit/Test;
54 .annotation runtime Lorg/junit/Test;
69 .annotation runtime Lorg/junit/Test;
82 .annotation runtime Lorg/junit/Test;
95 .annotation runtime Lorg/junit/Test;
108 .annotation runtime Lorg/junit/Test;
121 .annotation runtime Lorg/junit/Test;
134 .annotation runtime Lorg/junit/Test;
[all …]
/external/antlr/
D.gitignore19 # Python runtime files
23 /runtime/CSharp3/Sources/Antlr3.Runtime/bin/
24 /runtime/CSharp3/Sources/Antlr3.Runtime/obj/
25 /runtime/CSharp3/Sources/Antlr3.Runtime.Debug/bin/
26 /runtime/CSharp3/Sources/Antlr3.Runtime.Debug/obj/
27 /runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/bin/
28 /runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/obj/
29 /runtime/CSharp3/Sources/Antlr3.Runtime.Test/bin/
30 /runtime/CSharp3/Sources/Antlr3.Runtime.Test/obj/

12345678910>>...319