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

1 2 3

  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
kernel_support_library.h 12 See the License for the specific language governing permissions and
46 // for (i64 i = `start` + `step`; i s< `end`; i += `step`)
49 void For(
55 void For(
59 For(name, /*start=*/ir_builder_->getInt64(start),
69 // for (i64 i = `start` + `step`; i s< `end`; i += `step`)
75 // for (i64 i = `start`; i s< `end`; i += `step`)
78 void For(tensorflow::StringPiece name, llvm::Value* start, llvm::Value* end,
84 void For(tensorflow::StringPiece name, llvm::Value* start, llvm::Value* end,
89 For(name, /*start=*/start, /*end=*/end
    [all...]
kernel_support_library.cc 12 See the License for the specific language governing permissions and
22 void KernelSupportLibrary::For(
28 For(name, ir_builder_->CreateAdd(start, step), end, step,
33 void KernelSupportLibrary::For(
38 For(name, start, end, step, true,
80 for (int64 i = 0, e = arguments.size(); i < e; i++) {
90 VLOG(2) << "Generating kernel for " << kernel_name;
115 * clang on OSX doesn't like std::transform or range for loop here.
118 for (llvm::Function::arg_iterator arg = function->arg_begin(),
128 VLOG(3) << "Re-using kernel for " << kernel_name
    [all...]
  /prebuilts/go/darwin-x86/src/go/importer/
importer.go 19 // A Lookup function returns a reader to access package data for
23 // For returns an Importer for importing from installed packages
24 // for the compilers "gc" and "gccgo", or for importing directly
31 // If lookup is nil, the default package lookup mechanism for the
42 func For(compiler string, lookup Lookup) types.Importer {
63 panic("source importer for custom import path lookup not supported (issue #13847).")
73 // Default returns an Importer for the compiler that built the running binary.
76 return For(runtime.Compiler, nil
    [all...]
  /prebuilts/go/linux-x86/src/go/importer/
importer.go 19 // A Lookup function returns a reader to access package data for
23 // For returns an Importer for importing from installed packages
24 // for the compilers "gc" and "gccgo", or for importing directly
31 // If lookup is nil, the default package lookup mechanism for the
42 func For(compiler string, lookup Lookup) types.Importer {
63 panic("source importer for custom import path lookup not supported (issue #13847).")
73 // Default returns an Importer for the compiler that built the running binary.
76 return For(runtime.Compiler, nil
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 5 (* expr - Base type for all expression nodes. *)
7 (* variant for numeric literals like "1.0". *)
10 (* variant for referencing a variable, like "a". *)
13 (* variant for a binary operator. *)
16 (* variant for function calls. *)
19 (* variant for if/then/else. *)
22 (* variant for for/in. *)
23 | For of string * expr * expr * expr option * expr
25 (* proto - This type represents the "prototype" for a function, which capture
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 5 (* expr - Base type for all expression nodes. *)
7 (* variant for numeric literals like "1.0". *)
10 (* variant for referencing a variable, like "a". *)
13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
19 (* variant for function calls. *)
22 (* variant for if/then/else. *)
25 (* variant for for/in. *)
26 | For of string * expr * expr * expr option * exp
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 5 (* expr - Base type for all expression nodes. *)
7 (* variant for numeric literals like "1.0". *)
10 (* variant for referencing a variable, like "a". *)
13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
19 (* variant for function calls. *)
22 (* variant for if/then/else. *)
25 (* variant for for/in. *)
26 | For of string * expr * expr * expr option * exp
    [all...]
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 5 (* expr - Base type for all expression nodes. *)
7 (* variant for numeric literals like "1.0". *)
10 (* variant for referencing a variable, like "a". *)
13 (* variant for a binary operator. *)
16 (* variant for function calls. *)
19 (* variant for if/then/else. *)
22 (* variant for for/in. *)
23 | For of string * expr * expr * expr option * expr
25 (* proto - This type represents the "prototype" for a function, which capture
    [all...]
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
ast.ml 5 (* expr - Base type for all expression nodes. *)
7 (* variant for numeric literals like "1.0". *)
10 (* variant for referencing a variable, like "a". *)
13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
19 (* variant for function calls. *)
22 (* variant for if/then/else. *)
25 (* variant for for/in. *)
26 | For of string * expr * expr * expr option * exp
    [all...]
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
ast.ml 5 (* expr - Base type for all expression nodes. *)
7 (* variant for numeric literals like "1.0". *)
10 (* variant for referencing a variable, like "a". *)
13 (* variant for a unary operator. *)
16 (* variant for a binary operator. *)
19 (* variant for function calls. *)
22 (* variant for if/then/else. *)
25 (* variant for for/in. *)
26 | For of string * expr * expr * expr option * exp
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/load/
flag.go 22 // that allows specifying different effective flags for different packages.
23 // See 'go help build' for more details about per-package flags.
40 // set is the implementation of Set, taking a cwd (current working directory) for easier testing.
44 // For backwards compatibility with earlier flag splitting, ignore spaces around flags.
47 // Special case: -gcflags="" means no flags for command-line arguments
84 // For returns the flags to use for the given package.
85 func (f *PerPackageFlag) For(p *Package) []string {
87 for _, v := range f.values {
98 // for use by the PerPackageFlags
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/load/
flag.go 22 // that allows specifying different effective flags for different packages.
23 // See 'go help build' for more details about per-package flags.
40 // set is the implementation of Set, taking a cwd (current working directory) for easier testing.
44 // For backwards compatibility with earlier flag splitting, ignore spaces around flags.
47 // Special case: -gcflags="" means no flags for command-line arguments
84 // For returns the flags to use for the given package.
85 func (f *PerPackageFlag) For(p *Package) []string {
87 for _, v := range f.values {
98 // for use by the PerPackageFlags
    [all...]
  /external/swiftshader/src/Reactor/
Main.cpp 12 // See the License for the specific language governing permissions and
26 for(int i = 0; i < 10; i++)
48 For(Int i = 0, i < 10, i++)
151 for(int row = 0; row < 5; row++)
153 for(int col = 0; col < 16; col++)
207 for(int row = 0; row < 4; row++)
209 for(int col = 0; col < 16; col++)
250 for(int row = 0; row < 2; row++)
252 for(int col = 0; col < 16; col++)
274 for(int i = 0; i < 256; i++
    [all...]
  /external/swiftshader/src/Renderer/
QuadRasterizer.cpp 12 // See the License for the specific language governing permissions and
42 for(int i = 0; i < PERF_TIMERS; i++)
84 for(int i = 0; i < PERF_TIMERS; i++)
99 for(int index = 0; index < RENDERTARGETS; index++)
125 for(unsigned int q = 1; q < state.multiSample; q++)
138 for(unsigned int q = 1; q < state.multiSample; q++)
149 for(unsigned int q = 0; q < state.multiSample; q++)
181 For(Int x = x0, x < x1, x += 2)
241 for(int interpolant = 0; interpolant < MAX_FRAGMENT_INPUTS; interpolant++)
243 for(int component = 0; component < 4; component++
    [all...]
Blitter.cpp 12 // See the License for the specific language governing permissions and
105 for(int j = 0; j < dest->getSamples(); j++)
112 for(int i = dRect.y0; i < dRect.y1; i++)
119 for(int i = dRect.y0; i < dRect.y1; i++)
175 for(int j = dRect.y0; j < dRect.y1; j++)
179 for(int i = dRect.x0; i < dRect.x1; i++)
204 for(int k = 0; k < dest->getDepth(); k++)
207 for(int j = 0; j < dest->getHeight(); j++)
210 for(int i = 0; i < dest->getWidth(); i++)
    [all...]
  /external/swiftshader/src/Main/
FrameBuffer.cpp 12 // See the License for the specific language governing permissions and
185 For(Int y = 0, y < height, y++)
203 For(, x < width - 3, x += 4)
213 For(, x < width - 3, x += 4)
226 For(, x < width - 1, x += 2)
238 For(, x < width - 3, x += 4)
255 For(, x < width, x++)
311 For(, x < width - 3, x += 4)
321 For(, x < width - 3, x += 4)
334 For(, x < width - 1, x += 2
    [all...]
  /external/v8/src/parsing/
scanner-character-streams.cc 156 // For testing:
204 for (size_t i = 0; i < chunks_.size(); i++) delete[] chunks_[i].data;
316 for (it = current_.pos.bytes - chunk.start.bytes;
367 // Search for the last chunk whose start position is less or equal to
384 // Fancy-pants optimization for ASCII chunks within a utf-8 stream.
386 // ASCII subset for their JavaScript sources. We can exploit this, by
456 // Chunks - helper for One- + TwoByteExternalStreamingStream
468 for (size_t i = 0; i < chunks.size(); i++) delete[] chunks[i].data;
471 // Return the chunk index for the chunk containing position.
494 // chunk we were looking for, or we're out of data. Also, out_of_data an
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
ast.py 9 for elt in seq:
12 for elt2 in flatten(elt):
19 return [n for n in flatten(seq) if isinstance(n, Node)]
24 """Abstract base class for ast nodes."""
28 for n in self.getChildren():
30 def asList(self): # for backwards compatibility
502 class For(Node):
528 return "For(%s, %s, %s, %s)" % (repr(self.assign), repr(self.list), repr(self.body), repr(self.else_))
    [all...]
  /external/libmojo/third_party/jinja2/
nodes.py 13 :license: BSD, see LICENSE for more details.
23 #: the types we support for context functions
60 """A metaclass for nodes that handles the field and attribute
65 for attr in 'fields', 'attributes':
108 """Baseclass for all Jinja2 nodes. There are a number of nodes available
120 The `environment` attribute is set at the end of the parsing process for
140 for name, arg in izip(self.fields, fields):
142 for attr in self.attributes:
155 for name in self.fields:
169 for field, item in self.iter_fields(exclude, only)
    [all...]
  /external/python/cpython2/Lib/compiler/
ast.py 9 for elt in seq:
12 for elt2 in flatten(elt):
19 return [n for n in flatten(seq) if isinstance(n, Node)]
24 """Abstract base class for ast nodes."""
28 for n in self.getChildren():
30 def asList(self): # for backwards compatibility
502 class For(Node):
528 return "For(%s, %s, %s, %s)" % (repr(self.assign), repr(self.list), repr(self.body), repr(self.else_))
    [all...]
  /external/swiftshader/src/Shader/
SetupRoutine.cpp 12 // See the License for the specific language governing permissions and
200 For(Int q = 0, q < state.multiSample, q++)
231 For(Int y = yMin - 1, y < yMax + 1, y++)
256 For(, yMin < yMax && *Pointer<Short>(leftEdge + yMin * sizeof(Primitive::Span)) == *Pointer<Short>(rightEdge + yMin * sizeof(Primitive::Span)), yMin++)
261 For(, yMax > yMin && *Pointer<Short>(leftEdge + (yMax - 1) * sizeof(Primitive::Span)) == *Pointer<Short>(rightEdge + (yMax - 1) * sizeof(Primitive::Span)), yMax--)
456 for(int interpolant = 0; interpolant < MAX_FRAGMENT_INPUTS; interpolant++)
458 for(int component = 0; component < 4; component++)
  /external/v8/src/compiler/
types.h 21 // A simple type system for compiler-internal use. It is based entirely on
59 // There are two main functions for testing types:
72 // Consequently, do not normally use Equals for type tests, always use Is!
81 // Various formal properties hold for constructors, operators, and predicates
82 // over types. For example, constructors are injective and subtyping is a
85 // See test/cctest/test-types.cc for a comprehensive executable specification,
93 // bitsets. Bit 0 is reserved for tagging. Only structured types require
97 // Values for bitset types
203 * union with certain other bitsets. For instance, OtherNumber should only
284 // Superclass for non-bitset types (internal)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
ast.py 9 for elt in seq:
12 for elt2 in flatten(elt):
19 return [n for n in flatten(seq) if isinstance(n, Node)]
24 """Abstract base class for ast nodes."""
28 for n in self.getChildren():
30 def asList(self): # for backwards compatibility
502 class For(Node):
528 return "For(%s, %s, %s, %s)" % (repr(self.assign), repr(self.list), repr(self.body), repr(self.else_))
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
ast.py 9 for elt in seq:
12 for elt2 in flatten(elt):
19 return [n for n in flatten(seq) if isinstance(n, Node)]
24 """Abstract base class for ast nodes."""
28 for n in self.getChildren():
30 def asList(self): # for backwards compatibility
502 class For(Node):
528 return "For(%s, %s, %s, %s)" % (repr(self.assign), repr(self.list), repr(self.body), repr(self.else_))
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 9 for elt in seq:
12 for elt2 in flatten(elt):
19 return [n for n in flatten(seq) if isinstance(n, Node)]
24 """Abstract base class for ast nodes."""
28 for n in self.getChildren():
30 def asList(self): # for backwards compatibility
502 class For(Node):
528 return "For(%s, %s, %s, %s)" % (repr(self.assign), repr(self.list), repr(self.body), repr(self.else_))
    [all...]

Completed in 696 milliseconds

1 2 3