| /external/tensorflow/tensorflow/lite/kernels/internal/optimized/ |
| D | resize_bilinear.h | 7 http://www.apache.org/licenses/LICENSE-2.0 61 // Extract upper 8 bits from each 16-bit integer in vector registers. This is 88 // DO NOT add to this any "class-like" methods: only those that do no more than 103 inline op_int16x8_t operator-=(const op_int16x8_t& sub_val) { 152 friend inline op_int16x8_t operator-(op_int16x8_t lhs, 154 lhs -= rhs; 187 inline op_uint16x8_t operator-=(const op_int16x8_t& sub_val) { 236 friend inline op_uint16x8_t operator-(op_uint16x8_t lhs, 238 lhs -= rhs; 259 // Optimized resize-bilinear for the special case where the scaling is x8 in [all …]
|
| /external/oss-fuzz/projects/libyal/ |
| D | Dockerfile | 7 # 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/libfwevt.git libfwevt 25 RUN git clone --depth 1 https://github.com/libyal/libfwnt.git libfwnt 26 RUN git clone --depth 1 https://github.com/libyal/libfwps.git libfwps 27 RUN git clone --depth 1 https://github.com/libyal/libfwsi.git libfwsi [all …]
|
| /external/tensorflow/tensorflow/python/kernel_tests/array_ops/ |
| D | one_hot_op_test.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 55 indices = np.asarray([0, 2, -1, 1], dtype=np.int64) 56 depth = 3 58 off_value = np.asarray(-1.0, dtype=dtype) 61 [[1.0, -1.0, -1.0], [-1.0, -1.0, 1.0], [-1.0, -1.0, -1.0], 62 [-1.0, 1.0, -1.0]], 65 # axis == -1 68 depth=depth, 77 depth=depth, 85 indices = np.asarray([0, 2, -1, 1], dtype=np.int64) [all …]
|
| /external/deqp/android/cts/main/vk-master-2023-03-01/ |
| D | spirv-assembly.txt | 1 dEQP-VK.spirv_assembly.instruction.compute.image_sampler.imageread.storage_image.all_local_variable… 2 dEQP-VK.spirv_assembly.instruction.compute.image_sampler.imageread.storage_image.all_local_variable… 3 dEQP-VK.spirv_assembly.instruction.compute.image_sampler.imageread.storage_image.all_local_variable… 4 dEQP-VK.spirv_assembly.instruction.compute.image_sampler.imageread.storage_image.all_local_variable… 5 dEQP-VK.spirv_assembly.instruction.compute.image_sampler.imageread.storage_image.pass_image_to_func… 6 dEQP-VK.spirv_assembly.instruction.compute.image_sampler.imageread.storage_image.pass_image_to_func… 7 dEQP-VK.spirv_assembly.instruction.compute.image_sampler.imageread.storage_image.pass_image_to_func… 8 dEQP-VK.spirv_assembly.instruction.compute.image_sampler.imageread.storage_image.pass_image_to_func… 9 dEQP-VK.spirv_assembly.instruction.compute.image_sampler.imageread.storage_image.optypeimage_mismat… 10 dEQP-VK.spirv_assembly.instruction.compute.image_sampler.imageread.storage_image.optypeimage_mismat… [all …]
|
| /external/perfetto/ui/src/common/ |
| D | flamegraph_unittest.ts | 7 // 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/oss-fuzz/projects/cryptofuzz/ |
| D | Dockerfile | 7 # http://www.apache.org/licenses/LICENSE-2.0 17 FROM gcr.io/oss-fuzz-base/base-builder-rust 22 RUN apt-get update && \ 23 …pt-get install -y software-properties-common wget make autoconf automake libtool build-essential c… 25 RUN git clone --depth 1 https://github.com/guidovranken/cryptofuzz 26 RUN git clone --depth 1 https://github.com/guidovranken/cryptofuzz-corpora 27 RUN git clone --depth 1 https://github.com/openssl/openssl 28 RUN git clone --depth 1 https://boringssl.googlesource.com/boringssl 29 RUN git clone --depth 1 https://github.com/libressl-portable/portable libressl 31 RUN git clone --depth 1 https://github.com/weidai11/cryptopp/ [all …]
|
| /external/libcxxabi/test/ |
| D | dynamic_cast_stress.pass.cpp | 1 //===------------------------- 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/ |
| D | array4d.h | 7 http://www.apache.org/licenses/LICENSE-2.0 45 // Second dimension: depth, feature, z, n2 58 Array4D(int64_t planes, int64_t depth, int64_t height, int64_t width) in Array4D() argument 59 : Array<T>(std::vector<int64_t>{planes, depth, height, width}) {} in Array4D() 62 Array4D(int64_t planes, int64_t depth, int64_t height, int64_t width, T value) in Array4D() argument 63 : Array<T>(std::vector<int64_t>{planes, depth, height, width}, value) {} in Array4D() 71 Array4D(int64_t planes, int64_t depth, int64_t height, int64_t width, in Array4D() argument 73 : Array4D(planes, depth, height, width) { in Array4D() 74 this->SetValues(values); in Array4D() 83 // Creates an array of a floating-point type (half, bfloat16, float, [all …]
|
| /external/libchrome/mojo/public/cpp/bindings/tests/ |
| D | sample_service_unittest.cc | 2 // 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/cronet/buildtools/third_party/libc++abi/trunk/test/ |
| D | dynamic_cast_stress.pass.cpp | 1 //===----------------------------------------------------------------------===// 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/python/cpython3/Parser/ |
| D | asdl_c.py | 28 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 70 def reflow_c_string(s, depth): argument [all …]
|
| /external/angle/src/libANGLE/renderer/d3d/d3d11/shaders/ |
| D | Clear11.hlsl | 3 // 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/external/vulkancts/modules/vulkan/pipeline/ |
| D | vktPipelineDepthRangeUnrestrictedTests.cpp | 1 /*------------------------------------------------------------------------ 3 * ------------------------ 12 * http://www.apache.org/licenses/LICENSE-2.0 23 *//*--------------------------------------------------------------------*/ 101 result << "_clear_value_" << (int) param.depthBufferClearValue.depthStencil.depth; in generateTestName() 122 std::string result("Test unrestricted depth ranges on viewport"); in generateTestDescription() 124 result += " , depth bounds test"; in generateTestDescription() 149 DE_FATAL("No depth format"); in isFloatingPointDepthFormat() 166 DE_FATAL("No depth format"); in depthFormatHasStencilComponent() 171 deBool compareDepthResult (VkCompareOp compare, float depth, float clearValue) in compareDepthResult() argument [all …]
|
| /external/deqp-deps/glslang/Test/baseResults/ |
| D | hlsl.pp.line.frag.out | 6 …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:126 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/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/ |
| D | hlsl.pp.line.frag.out | 6 …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:126 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/deqp/external/openglcts/modules/glesext/texture_cube_map_array/ |
| D | esextcTextureCubeMapArraySubImage3D.cpp | 1 /*------------------------------------------------------------------------- 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/src/tests/gl_tests/ |
| D | ReadOnlyFeedbackLoopTest.cpp | 3 // Use of this source code is governed by a BSD-style license that can be 8 // depth attachment is only read from 33 glDepthRangef(-1.0f, 1.0f); in testSetUp() 45 // Fill out a depth texture to specific values and use it both as a sampler and a depth texture 46 // with depth write disabled. This is to test a "read-only feedback loop" that needs to be 82 // Attach a color and depth texture to the FBO in TEST_P() 90 // Set the color texture to blue and depth texture to 1.0f in TEST_P() 96 // Enable Depth test with passing always to write depth. in TEST_P() 101 // Fill the middle of the depth texture with 0.0f. while the border remains 1.0f as in TEST_P() 117 // Enable Depth test without depth write. in TEST_P() [all …]
|
| /external/angle/extensions/ |
| D | ANGLE_depth_texture.txt | 48 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/tensorflow/tensorflow/python/ops/ragged/ |
| D | ragged_one_hot_op_test.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 38 dict(indices=[[0, 2, -1], [3]], 39 depth=4, 42 dict(indices=[[0, 2, -1], [3]], 43 depth=4, 44 axis=-1, 47 dict(indices=[[0, 2, -1], [3]], 48 depth=4, 52 dict(indices=[[0, 2, -1], [3]], 53 depth=4, [all …]
|
| /external/marisa-trie/lib/marisa/grimoire/algorithm/ |
| D | sort.h | 16 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/google-breakpad/src/client/windows/unittests/ |
| D | testing.gyp | 40 '<(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/mesa3d/src/mesa/main/ |
| D | texgetimage.c | 2 * 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 …]
|
| /external/python/cpython2/Parser/ |
| D | asdl_c.py | 28 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/deqp/android/cts/main/vk-master-2022-03-01/ |
| D | spirv-assembly.txt | 1 dEQP-VK.spirv_assembly.instruction.compute.spirv_version.1_6_compute 2 dEQP-VK.spirv_assembly.instruction.compute.localsize_id.literal_localsize 3 dEQP-VK.spirv_assembly.instruction.compute.localsize_id.literal_and_specid_localsize 4 dEQP-VK.spirv_assembly.instruction.compute.localsize_id.literal_localsize_x 5 dEQP-VK.spirv_assembly.instruction.compute.localsize_id.literal_and_specid_localsize_x 6 dEQP-VK.spirv_assembly.instruction.compute.localsize_id.literal_localsize_y 7 dEQP-VK.spirv_assembly.instruction.compute.localsize_id.literal_and_specid_localsize_y 8 dEQP-VK.spirv_assembly.instruction.compute.localsize_id.literal_localsize_z 9 dEQP-VK.spirv_assembly.instruction.compute.localsize_id.literal_and_specid_localsize_z 10 dEQP-VK.spirv_assembly.instruction.compute.opsdotaccsatkhr.small-neg_uu_v2i8_out32 [all …]
|
| /external/bcc/tools/old/ |
| D | offwaketime.py | 3 # 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 …]
|