Home
last modified time | relevance | path

Searched +full:- +full:- +full:depth (Results 1 – 25 of 1277) sorted by relevance

12345678910>>...52

/external/llvm-project/mlir/test/Transforms/
Dmemref-dependence-check.mlir1 // RUN: mlir-opt %s -test-memref-dependence-check -split-input-file -verify-diagnostics | FileChec…
3 // -----
7 // CHECK-LABEL: func @store_may_execute_before_load() {
12 // There is no dependence from store 0 to load 1 at depth if we take into account
18 // expected-remark@above {{dependence from 0 to 0 at depth 1 = false}}
19 // expected-remark@above {{dependence from 0 to 0 at depth 2 = false}}
20 // expected-remark@above {{dependence from 0 to 1 at depth 1 = false}}
25 // expected-remark@above {{dependence from 1 to 1 at depth 1 = false}}
26 // expected-remark@above {{dependence from 1 to 1 at depth 2 = false}}
27 // expected-remark@above {{dependence from 1 to 0 at depth 1 = false}}
[all …]
/external/oss-fuzz/projects/libyal/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
17 FROM gcr.io/oss-fuzz-base/base-builder
19 RUN apt-get update && apt-get install -y make autoconf automake autopoint libtool pkg-config flex b…
21 RUN git clone --depth 1 https://github.com/libyal/libfplist.git libfplist
22 RUN git clone --depth 1 https://github.com/libyal/libftxf.git libftxf
23 RUN git clone --depth 1 https://github.com/libyal/libfusn.git libfusn
24 RUN git clone --depth 1 https://github.com/libyal/libfwnt.git libfwnt
25 RUN git clone --depth 1 https://github.com/libyal/libfwps.git libfwps
26 RUN git clone --depth 1 https://github.com/libyal/libfwsi.git libfwsi
28 RUN git clone --depth 1 https://github.com/libyal/libagdb.git libagdb
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/
Done_hot_op_test.py7 # http://www.apache.org/licenses/LICENSE-2.0
59 indices = np.asarray([0, 2, -1, 1], dtype=np.int64)
60 depth = 3
62 off_value = np.asarray(-1.0, dtype=dtype)
65 [[1.0, -1.0, -1.0], [-1.0, -1.0, 1.0], [-1.0, -1.0, -1.0],
66 [-1.0, 1.0, -1.0]],
69 # axis == -1
72 depth=depth,
81 depth=depth,
89 indices = np.asarray([0, 2, -1, 1], dtype=np.int64)
[all …]
/external/perfetto/ui/src/common/
Dflamegraph_unittest.ts7 // http://www.apache.org/licenses/LICENSE-2.0
22 parentId: -1,
24 depth: 0,
33 parentId: -1,
35 depth: 0,
46 depth: 1,
57 depth: 1,
76 parentId: -1,
78 depth: 0,
87 parentId: -1,
[all …]
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/
DGISelKnownBits.cpp1 //===- lib/CodeGen/GlobalISel/GISelKnownBits.cpp --------------*- C++ *-===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
12 //===------------------
21 #define DEBUG_TYPE "gisel-known-bits"
32 DL(MF.getFunction().getParent()->getDataLayout()), MaxDepth(MaxDepth) {} in GISelKnownBits()
34 Align GISelKnownBits::computeKnownAlignment(Register R, unsigned Depth) { in computeKnownAlignment() argument
36 switch (MI->getOpcode()) { in computeKnownAlignment()
38 return computeKnownAlignment(MI->getOperand(1).getReg(), Depth); in computeKnownAlignment()
40 int FrameIdx = MI->getOperand(1).getIndex(); in computeKnownAlignment()
[all …]
/external/llvm-project/libcxxabi/test/
Ddynamic_cast_stress.pass.cpp1 //===------------------------- dynamic_cast_stress.cpp --------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
15 template <std::size_t Indx, std::size_t Depth>
17 : public virtual C<Indx, Depth-1>,
18 public virtual C<Indx+1, Depth-1>
29 template <std::size_t Indx, std::size_t Depth>
31 : public virtual C<Indx, Depth-1>,
32 public virtual C<Indx+1, Depth-1>
36 template <class Indx, std::size_t Depth>
[all …]
/external/libcxxabi/test/
Ddynamic_cast_stress.pass.cpp1 //===------------------------- dynamic_cast_stress.cpp --------------------------===//
8 //===----------------------------------------------------------------------===//
16 template <std::size_t Indx, std::size_t Depth>
18 : public virtual C<Indx, Depth-1>,
19 public virtual C<Indx+1, Depth-1>
30 template <std::size_t Indx, std::size_t Depth>
32 : public virtual C<Indx, Depth-1>,
33 public virtual C<Indx+1, Depth-1>
37 template <class Indx, std::size_t Depth>
40 template <std::size_t ...Indx, std::size_t Depth>
[all …]
/external/tensorflow/tensorflow/compiler/xla/
Darray4d.h7 http://www.apache.org/licenses/LICENSE-2.0
47 // Second dimension: depth, feature, z, n2
60 Array4D(int64 planes, int64 depth, int64 height, int64 width) in Array4D() argument
61 : Array<T>(std::vector<int64>{planes, depth, height, width}) {} in Array4D()
64 Array4D(int64 planes, int64 depth, int64 height, int64 width, T value) in Array4D() argument
65 : Array<T>(std::vector<int64>{planes, depth, height, width}, value) {} in Array4D()
73 Array4D(int64 planes, int64 depth, int64 height, int64 width, in Array4D() argument
75 : Array4D(planes, depth, height, width) { in Array4D()
76 this->SetValues(values); in Array4D()
85 // Creates an array of a floating-point type (half, bfloat16, float,
[all …]
/external/libchrome/mojo/public/cpp/bindings/tests/
Dsample_service_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
21 return static_cast<int32_t>(bar->alpha) << 16 | in Convert()
22 static_cast<int32_t>(bar->beta) << 8 | in Convert()
23 static_cast<int32_t>(bar->gamma); in Convert()
53 data[i] = static_cast<uint8_t>(data.size() - i); in MakeFoo()
103 EXPECT_EQ(20, foo.bar->alpha); in CheckFoo()
104 EXPECT_EQ(40, foo.bar->beta); in CheckFoo()
105 EXPECT_EQ(60, foo.bar->gamma); in CheckFoo()
106 EXPECT_EQ(Bar::Type::VERTICAL, foo.bar->type); in CheckFoo()
108 EXPECT_EQ(3u, foo.extra_bars->size()); in CheckFoo()
[all …]
/external/oss-fuzz/projects/cryptofuzz/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
17 FROM gcr.io/oss-fuzz-base/base-builder
19 RUN apt-get update && \
20 … apt-get install -y apt-transport-https ca-certificates gnupg software-properties-common wget && \
21 … wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | apt-key add - && \
22 apt-add-repository 'deb https://apt.kitware.com/ubuntu/ xenial main' && \
23 apt-get update && \
24-get install -y software-properties-common python-software-properties make autoconf automake libto…
26 RUN git clone --depth 1 https://github.com/guidovranken/cryptofuzz
27 RUN git clone --depth 1 https://github.com/guidovranken/cryptofuzz-corpora
[all …]
/external/angle/src/libANGLE/renderer/d3d/d3d11/shaders/
DClear11.hlsl3 // Use of this source code is governed by a BSD-style license that can be
8 // specifying float depth values and either float, uint or sint clear colors.
10 // - UINT & SINT clears can only be compiled with FL10+
11 // - VS_Clear_FL9 requires a VB to be bound with vertices to create
12 // a primitive covering the entire surface (in clip co-ordinates)
17 float2(-1.0f, 1.0f),
18 float2( 1.0f, -1.0f),
19 float2(-1.0f, -1.0f),
20 float2(-1.0f, 1.0f),
22 float2( 1.0f, -1.0f),
[all …]
/external/deqp-deps/glslang/Test/baseResults/
Dhlsl.pp.line.frag.out6 …unction Definition: @main( ( temp structure{ temp 4-component vector of float Color, temp float D…
14 0:126 move second child to first child ( temp 4-component vector of float)
15 0:126 Color: direct index for structure ( temp 4-component vector of float)
16 0:126 'psout' ( temp structure{ temp 4-component vector of float Color, temp float Depth})
19 0:? Construct vec4 ( temp 4-component vector of float)
29 0:127 Depth: direct index for structure ( temp float)
30 0:127 'psout' ( temp structure{ temp 4-component vector of float Color, temp float Depth})
36 0:129 'psout' ( temp structure{ temp 4-component vector of float Color, temp float Depth})
41 …econd child to first child ( temp structure{ temp 4-component vector of float Color, temp float D…
42 0:4 'flattenTemp' ( temp structure{ temp 4-component vector of float Color, temp float De…
[all …]
/external/rust/crates/arbitrary/src/
Dlib.rs3 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
5 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
12 //! produce well-typed, structured values, from raw, byte buffers. It is
98 /// variably-sized collection type, or you something of that sort. The
105 /// # pub fn new() -> Self { MyCollection { _t: std::marker::PhantomData } }
114 /// fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
171 fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self>; in arbitrary()
178 fn arbitrary_take_rest(mut u: Unstructured<'a>) -> Result<Self> { in arbitrary_take_rest()
189 /// [`Iterator::size_hint`][iterator-size-hint]: it returns a tuple where
[all …]
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineDepthRangeUnrestrictedTests.cpp1 /*------------------------------------------------------------------------
3 * ------------------------
12 * http://www.apache.org/licenses/LICENSE-2.0
23 *//*--------------------------------------------------------------------*/
98 result << "_clear_value_" << (int) param.depthBufferClearValue.depthStencil.depth; in generateTestName()
119 std::string result("Test unrestricted depth ranges on viewport"); in generateTestDescription()
121 result += " , depth bounds test"; in generateTestDescription()
146 DE_FATAL("No depth format"); in isFloatingPointDepthFormat()
163 DE_FATAL("No depth format"); in depthFormatHasStencilComponent()
168 deBool compareDepthResult (VkCompareOp compare, float depth, float clearValue) in compareDepthResult() argument
[all …]
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/
DesextcTextureCubeMapArraySubImage3D.cpp1 /*-------------------------------------------------------------------------
3 * -----------------------------
5 * Copyright (c) 2014-2016 The Khronos Group Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
22 */ /*-------------------------------------------------------------------*/
27 */ /*-------------------------------------------------------------------*/
49 /* Width , Height, Depth */
151 glw::GLuint depth = resolutions[resolution_index][DL_DEPTH]; in iterate() local
153 configureCubeMapArrayTexture(width, height, depth, static_cast<STORAGE_TYPE>(storage_index), 0); in iterate()
155 /* A single whole layer-face at index 0 should be replaced (both functions) */ in iterate()
[all …]
/external/angle/extensions/
DANGLE_depth_texture.txt48 This extension defines support for 2D depth and depth-stencil
51 This extension incorporates the depth texturing functionality of
55 variability in which components from a sampled depth texture
56 contain the depth data. Depth textures created with this
99 ------------------------------------------------
108 ------------------------------------------------------------------
110 DEPTH_COMPONENT Depth Depth
111 DEPTH_STENCIL_OES Depth and Stencil Index Depth and Stencil
117 ------------------------------------------------------------------
126 +----------------------------------+---------------+
[all …]
/external/google-breakpad/src/client/windows/unittests/
Dtesting.gyp40 '<(DEPTH)/testing/include',
41 '<(DEPTH)/testing/googletest/include',
42 '<(DEPTH)/testing/googletest',
43 '<(DEPTH)/testing',
46 '<(DEPTH)/testing/googletest/src/gtest-all.cc',
50 '<(DEPTH)/testing/include',
51 '<(DEPTH)/testing/gtest/include',
55 # http://stackoverflow.com/questions/12558327/google-test-in-visual-studio-2012
64 '<(DEPTH)/testing/include',
65 '<(DEPTH)/testing/googletest/include',
[all …]
/external/rust/crates/walkdir/src/
Ddent.rs30 /// [`std::fs`]: https://doc.rust-lang.org/stable/std/fs/index.html
39 /// [`fs::ReadDir`]: https://doc.rust-lang.org/stable/std/fs/struct.ReadDir.html
46 /// The depth at which this entry was generated relative to the root.
47 depth: usize, field
56 /// https://github.com/rust-lang/rust/issues/46484
76 /// [`std::fs::read_link`]: https://doc.rust-lang.org/stable/std/fs/fn.read_link.html
77 pub fn path(&self) -> &Path { in path()
86 pub fn into_path(self) -> PathBuf { in into_path()
99 …/// [`std::fs::read_link(entry.path())`]: https://doc.rust-lang.org/stable/std/fs/fn.read_link.html
100 pub fn path_is_symlink(&self) -> bool { in path_is_symlink()
[all …]
/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_one_hot_op_test.py7 # http://www.apache.org/licenses/LICENSE-2.0
41 dict(indices=[[0, 2, -1], [3]],
42 depth=4,
45 dict(indices=[[0, 2, -1], [3]],
46 depth=4,
47 axis=-1,
50 dict(indices=[[0, 2, -1], [3]],
51 depth=4,
55 dict(indices=[[0, 2, -1], [3]],
56 depth=4,
[all …]
/external/marisa-trie/lib/marisa/grimoire/algorithm/
Dsort.h16 int get_label(const T &unit, std::size_t depth) { in get_label() argument
17 MARISA_DEBUG_IF(depth > unit.length(), MARISA_BOUND_ERROR); in get_label()
19 return (depth < unit.length()) ? (int)(UInt8)unit[depth] : -1; in get_label()
23 int median(const T &a, const T &b, const T &c, std::size_t depth) { in median() argument
24 const int x = get_label(a, depth); in median()
25 const int y = get_label(b, depth); in median()
26 const int z = get_label(c, depth); in median()
43 int compare(const T &lhs, const T &rhs, std::size_t depth) { in compare() argument
44 for (std::size_t i = depth; i < lhs.length(); ++i) { in compare()
49 return (UInt8)lhs[i] - (UInt8)rhs[i]; in compare()
[all …]
/external/python/cpython3/Parser/
Dasdl_c.py26 def reflow_lines(s, depth): argument
27 """Reflow the line s indented depth tabs.
31 exclusively on depth * TABSIZE. All following lines -- these are
32 the reflowed lines generated by this function -- start at the same
36 size = MAX_COL - depth * TABSIZE
46 if i == -1 and 'GeneratorExp' in cur:
48 assert i != -1, "Impossible line %d to reflow: %r" % (size, s)
55 size -= j
61 size -= j
68 def reflow_c_string(s, depth): argument
[all …]
/external/python/cpython2/Parser/
Dasdl_c.py28 def reflow_lines(s, depth): argument
29 """Reflow the line s indented depth tabs.
33 exclusively on depth * TABSIZE. All following lines -- these are
34 the reflowed lines generated by this function -- start at the same
38 size = MAX_COL - depth * TABSIZE
48 if i == -1 and 'GeneratorExp' in cur:
50 assert i != -1, "Impossible line %d to reflow: %r" % (size, s)
57 size -= j
63 size -= j
89 def emit(self, s, depth, reflow=True): argument
[all …]
/external/mesa3d/src/mesa/main/
Dtexgetimage.c2 * Mesa 3-D graphics library
4 * Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
74 * glGetTexImage for depth/Z pixels.
79 GLsizei width, GLsizei height, GLint depth, in get_tex_depth() argument
91 for (img = 0; img < depth; img++) { in get_tex_depth()
96 ctx->Driver.MapTextureImage(ctx, texImage, zoffset + img, in get_tex_depth()
102 void *dest = _mesa_image_address(dimensions, &ctx->Pack, pixels, in get_tex_depth()
106 _mesa_unpack_float_z_row(texImage->TexFormat, width, src, depthRow); in get_tex_depth()
107 _mesa_pack_depth_span(ctx, width, dest, type, depthRow, &ctx->Pack); in get_tex_depth()
110 ctx->Driver.UnmapTextureImage(ctx, texImage, zoffset + img); in get_tex_depth()
[all …]
Ddepth.c2 * Mesa 3-D graphics library
4 * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
29 #include "depth.h"
43 _mesa_ClearDepth( GLclampd depth ) in _mesa_ClearDepth() argument
48 _mesa_debug(ctx, "glClearDepth(%f)\n", depth); in _mesa_ClearDepth()
50 ctx->Depth.Clear = CLAMP( depth, 0.0, 1.0 ); in _mesa_ClearDepth()
55 _mesa_ClearDepthf( GLclampf depth ) in _mesa_ClearDepthf() argument
57 _mesa_ClearDepth(depth); in _mesa_ClearDepthf()
64 if (ctx->Depth.Func == func) in depth_func()
84 FLUSH_VERTICES(ctx, ctx->DriverFlags.NewDepth ? 0 : _NEW_DEPTH); in depth_func()
[all …]
/external/bcc/tools/old/
Doffwaketime.py3 # offwaketime Summarize blocked time by kernel off-CPU stack + waker stack
6 # USAGE: offwaketime [-h] [-u] [-p PID] [-T] [duration]
12 # The Off-CPU stack is currently limited to a stack trace depth of 20
20 # 20-Jan-2016 Brendan Gregg Created this.
30 ./offwaketime # trace off-CPU + waker stack time until Ctrl-C
32 ./offwaketime -f 5 # 5 seconds, and output in folded format
33 ./offwaketime -u # don't include kernel threads (user only)
34 ./offwaketime -p 185 # trace fo PID 185 only
40 parser.add_argument("-u", "--useronly", action="store_true",
42 parser.add_argument("-p", "--pid",
[all …]

12345678910>>...52