| /external/llvm/test/CodeGen/Mips/cconv/ |
| D | callee-saved.ll | 3 ; RUN: llc -march=mips < %s | FileCheck --check-prefixes=ALL,O32-INV %s 4 ; RUN: llc -march=mipsel < %s | FileCheck --check-prefixes=ALL,O32-INV %s 8 ; RUN-TODO: llc -march=mips64 -target-abi o32 < %s | FileCheck --check-prefixes=ALL,O32-INV %s 9 ; RUN-TODO: llc -march=mips64el -target-abi o32 < %s | FileCheck --check-prefixes=ALL,O32-INV %s 13 ; RUN: llc -march=mips64 -target-abi n32 < %s | FileCheck --check-prefixes=ALL,N32-INV %s 14 ; RUN: llc -march=mips64el -target-abi n32 < %s | FileCheck --check-prefixes=ALL,N32-INV %s 18 ; RUN: llc -march=mips64 -target-abi n64 < %s | FileCheck --check-prefixes=ALL,N64-INV %s 19 ; RUN: llc -march=mips64el -target-abi n64 < %s | FileCheck --check-prefixes=ALL,N64-INV %s 33 ; O32-INV-NOT: sw $0, 34 ; O32-INV-NOT: sw $1, [all …]
|
| D | callee-saved-float.ll | 3 ; RUN: llc -march=mips < %s | FileCheck --check-prefixes=ALL,O32-INV %s 4 ; RUN: llc -march=mipsel < %s | FileCheck --check-prefixes=ALL,O32-INV %s 8 ; RUN-TODO: llc -march=mips64 -target-abi o32 < %s | FileCheck --check-prefixes=ALL,ALL-INV,O32-INV… 9 …-TODO: llc -march=mips64el -target-abi o32 < %s | FileCheck --check-prefixes=ALL,ALL-INV,O32-INV %s 13 ; RUN: llc -march=mips64 -target-abi n32 < %s | FileCheck --check-prefixes=ALL,ALL-INV,N32-INV %s 14 ; RUN: llc -march=mips64el -target-abi n32 < %s | FileCheck --check-prefixes=ALL,ALL-INV,N32-INV %s 18 ; RUN: llc -march=mips64 -target-abi n64 < %s | FileCheck --check-prefixes=ALL,ALL-INV,N64-INV %s 19 ; RUN: llc -march=mips64el -target-abi n64 < %s | FileCheck --check-prefixes=ALL,ALL-INV,N64-INV %s 33 ; ALL-INV-NOT: sdc1 $f0, 34 ; ALL-INV-NOT: sdc1 $f1, [all …]
|
| D | callee-saved-fpxx.ll | 3 ; RUN: llc -march=mips -mattr=+o32,+fpxx < %s | FileCheck --check-prefixes=ALL,O32-FPXX-INV %s 4 ; RUN: llc -march=mipsel -mattr=+o32,+fpxx < %s | FileCheck --check-prefixes=ALL,O32-FPXX-INV %s 8 … -march=mips64 -mattr=+o32,+fpxx < %s | FileCheck --check-prefixes=ALL,O32-FPXX-INV,O32-FPXX-INV %s 9 …march=mips64el -mattr=+o32,+fpxx < %s | FileCheck --check-prefixes=ALL,O32-FPXX-INV,O32-FPXX-INV %s 18 ; O32-FPXX-INV-NOT: sdc1 $f0, 19 ; O32-FPXX-INV-NOT: sdc1 $f1, 20 ; O32-FPXX-INV-NOT: sdc1 $f2, 21 ; O32-FPXX-INV-NOT: sdc1 $f3, 22 ; O32-FPXX-INV-NOT: sdc1 $f4, 23 ; O32-FPXX-INV-NOT: sdc1 $f5, [all …]
|
| /external/rust/crates/num-traits/src/ops/ |
| D | inv.rs | 2 pub trait Inv { trait 12 /// use num_traits::Inv; 14 /// assert_eq!(7.0.inv() * 7.0, 1.0); 15 /// assert_eq!((-0.0).inv(), -INFINITY); 17 fn inv(self) -> Self::Output; in inv() method 20 impl Inv for f32 { 23 fn inv(self) -> f32 { in inv() method 27 impl Inv for f64 { 30 fn inv(self) -> f64 { in inv() method 34 impl<'a> Inv for &'a f32 { impl [all …]
|
| /external/llvm/test/Transforms/InstCombine/ |
| D | unordered-fcmp-select.ll | 4 ; CHECK: %cmp.inv = fcmp ole float %a, %b 5 ; CHECK-NEXT: %sel = select i1 %cmp.inv, float %b, float %a 14 ; CHECK: %cmp.inv = fcmp olt float %a, %b 15 ; CHECK-NEXT: %sel = select i1 %cmp.inv, float %b, float %a 24 ; CHECK: %cmp.inv = fcmp ole float %a, %b 25 ; CHECK-NEXT: %sel = select i1 %cmp.inv, float %a, float %b 34 ; CHECK: %cmp.inv = fcmp olt float %a, %b 35 ; CHECK-NEXT: %sel = select i1 %cmp.inv, float %a, float %b 44 ; CHECK: %cmp.inv = fcmp oge float %a, %b 45 ; CHECK-NEXT: %sel = select i1 %cmp.inv, float %a, float %b [all …]
|
| /external/guava/android/guava-testlib/src/com/google/common/collect/testing/google/ |
| D | BiMapClearTester.java | 36 BiMap<V, K> inv = getMap().inverse(); in testClearClearsInverse() local 39 assertTrue(inv.isEmpty()); in testClearClearsInverse() 44 BiMap<V, K> inv = getMap().inverse(); in testKeySetClearClearsInverse() local 47 assertTrue(inv.isEmpty()); in testKeySetClearClearsInverse() 52 BiMap<V, K> inv = getMap().inverse(); in testValuesClearClearsInverse() local 55 assertTrue(inv.isEmpty()); in testValuesClearClearsInverse() 60 BiMap<V, K> inv = getMap().inverse(); in testClearInverseClears() local 61 inv.clear(); in testClearInverseClears() 63 assertTrue(inv.isEmpty()); in testClearInverseClears() 68 BiMap<V, K> inv = getMap().inverse(); in testClearInverseKeySetClears() local [all …]
|
| /external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
| D | BiMapClearTester.java | 36 BiMap<V, K> inv = getMap().inverse(); in testClearClearsInverse() local 39 assertTrue(inv.isEmpty()); in testClearClearsInverse() 44 BiMap<V, K> inv = getMap().inverse(); in testKeySetClearClearsInverse() local 47 assertTrue(inv.isEmpty()); in testKeySetClearClearsInverse() 52 BiMap<V, K> inv = getMap().inverse(); in testValuesClearClearsInverse() local 55 assertTrue(inv.isEmpty()); in testValuesClearClearsInverse() 60 BiMap<V, K> inv = getMap().inverse(); in testClearInverseClears() local 61 inv.clear(); in testClearInverseClears() 63 assertTrue(inv.isEmpty()); in testClearInverseClears() 68 BiMap<V, K> inv = getMap().inverse(); in testClearInverseKeySetClears() local [all …]
|
| /external/google-breakpad/src/third_party/libdisasm/ |
| D | ia32_invariant.c | 142 unsigned int prefixes, x86_invariant_t *inv) { argument 160 inv->operands[x].access = (enum x86_op_access) 162 inv->operands[x].flags = (enum x86_op_flags) 209 mode_16, &inv->operands[x]); 214 inv->operands[x].type = op_register; 222 inv->operands[x].type = op_offset; 224 inv->operands[x].flags |= op_signed | 242 inv->operands[x].type = 245 inv->operands[x].type = 248 inv->operands[x].flags |= op_signed; [all …]
|
| /external/bc/locales/ |
| D | pt_BR.ISO8859-1.msg | 57 2 "caractere inv�lido '%c'" 60 5 "token inv�lido" 61 6 "express�o inv�lida" 63 8 "instru��o de grava��o ou de fluxo inv�lida" 64 9 "defini��o de fun��o inv�lida" 65 10 "atribui��o inv�lida: a parte esquerda deve ser 'scale', 'ibase', 'obase', 'last', uma vari�vel … 88 1 "ibase inv�lido: deve ser [%lu, %lu]" 89 2 "obase inv�lido: deve ser [%lu, %lu]" 90 3 "scale inv�lida: deve ser [%lu, %lu]" 91 4 "express�o read() inv�lida" [all …]
|
| D | pt_PT.ISO8859-1.msg | 57 2 "caractere inv�lido '%c'" 60 5 "token inv�lido" 61 6 "express�o inv�lida" 63 8 "instru��o de grava��o ou de fluxo inv�lida" 64 9 "defini��o de fun��o inv�lida" 65 10 "atribui��o inv�lida: a parte esquerda deve ser 'scale', 'ibase', 'obase', 'last', uma vari�vel … 88 1 "ibase inv�lido: deve ser [%lu, %lu]" 89 2 "obase inv�lido: deve ser [%lu, %lu]" 90 3 "scale inv�lida: deve ser [%lu, %lu]" 91 4 "express�o read() inv�lida" [all …]
|
| D | pt_PT.ISO8859-15.msg | 57 2 "caractere inv�lido '%c'" 60 5 "token inv�lido" 61 6 "express�o inv�lida" 63 8 "instru��o de grava��o ou de fluxo inv�lida" 64 9 "defini��o de fun��o inv�lida" 65 10 "atribui��o inv�lida: a parte esquerda deve ser 'scale', 'ibase', 'obase', 'last', uma vari�vel … 88 1 "ibase inv�lido: deve ser [%lu, %lu]" 89 2 "obase inv�lido: deve ser [%lu, %lu]" 90 3 "scale inv�lida: deve ser [%lu, %lu]" 91 4 "express�o read() inv�lida" [all …]
|
| D | pt_BR.ISO8859-15.msg | 57 2 "caractere inv�lido '%c'" 60 5 "token inv�lido" 61 6 "express�o inv�lida" 63 8 "instru��o de grava��o ou de fluxo inv�lida" 64 9 "defini��o de fun��o inv�lida" 65 10 "atribui��o inv�lida: a parte esquerda deve ser 'scale', 'ibase', 'obase', 'last', uma vari�vel … 88 1 "ibase inv�lido: deve ser [%lu, %lu]" 89 2 "obase inv�lido: deve ser [%lu, %lu]" 90 3 "scale inv�lida: deve ser [%lu, %lu]" 91 4 "express�o read() inv�lida" [all …]
|
| /external/llvm/test/CodeGen/SystemZ/ |
| D | rot-02.ll | 13 %inv = sub i32 32, %and 15 %partb = lshr i32 %val, %inv 29 %inv = sub i32 32, %and 31 %partb = lshr i32 %val, %inv 45 %inv = sub i32 32, %and 47 %partb = lshr i32 %val, %inv 61 %inv = sub i64 64, %and 63 %partb = lshr i64 %val, %inv 78 %inv = sub i32 32, %and 80 %partb = lshr i32 %val, %inv
|
| /external/libaom/libaom/test/ |
| D | comp_mask_variance_test.cc | 57 void RunCheckOutput(comp_mask_pred_func test_impl, BLOCK_SIZE bsize, int inv); 108 BLOCK_SIZE bsize, int inv) { in RunCheckOutput() argument 116 inv); in RunCheckOutput() 117 test_impl(comp_pred2_, pred_, w, h, ref_, MAX_SB_SIZE, mask, w, inv); in RunCheckOutput() 120 << " wedge " << wedge_index << " inv " << inv; in RunCheckOutput() 152 // inv = 0, 1 in TEST_P() 182 void RunCheckOutput(comp_mask_pred_func test_impl, BLOCK_SIZE bsize, int inv); 190 BLOCK_SIZE bsize, int inv) { in RunCheckOutput() argument 208 MAX_SB_SIZE, mask, w, inv, subpel_search); in RunCheckOutput() 213 w, inv, subpel_search); in RunCheckOutput() [all …]
|
| /external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/ |
| D | spv.qualifiers.vert.out | 13 Name 11 "inV" 20 Decorate 11(inV) Location 0 36 11(inV): 10(ptr) Variable Input 43 12: 7(fvec4) Load 11(inV) 45 14: 7(fvec4) Load 11(inV) 47 16: 7(fvec4) Load 11(inV) 49 18: 7(fvec4) Load 11(inV) 51 20: 7(fvec4) Load 11(inV)
|
| /external/deqp-deps/glslang/Test/baseResults/ |
| D | spv.qualifiers.vert.out | 13 Name 11 "inV" 20 Decorate 11(inV) Location 0 36 11(inV): 10(ptr) Variable Input 43 12: 7(fvec4) Load 11(inV) 45 14: 7(fvec4) Load 11(inV) 47 16: 7(fvec4) Load 11(inV) 49 18: 7(fvec4) Load 11(inV) 51 20: 7(fvec4) Load 11(inV)
|
| /external/linux-kselftest/tools/testing/selftests/bpf/ |
| D | test_align.c | 184 {7, "R3_w=inv(id=0,umax_value=255,var_off=(0x0; 0xff))"}, 185 {8, "R3_w=inv(id=0,umax_value=510,var_off=(0x0; 0x1fe))"}, 186 {9, "R3_w=inv(id=0,umax_value=1020,var_off=(0x0; 0x3fc))"}, 187 {10, "R3_w=inv(id=0,umax_value=2040,var_off=(0x0; 0x7f8))"}, 188 {11, "R3_w=inv(id=0,umax_value=4080,var_off=(0x0; 0xff0))"}, 190 {18, "R4_w=inv(id=0,umax_value=255,var_off=(0x0; 0xff))"}, 191 {19, "R4_w=inv(id=0,umax_value=8160,var_off=(0x0; 0x1fe0))"}, 192 {20, "R4_w=inv(id=0,umax_value=4080,var_off=(0x0; 0xff0))"}, 193 {21, "R4_w=inv(id=0,umax_value=2040,var_off=(0x0; 0x7f8))"}, 194 {22, "R4_w=inv(id=0,umax_value=1020,var_off=(0x0; 0x3fc))"}, [all …]
|
| /external/angle/third_party/vulkan-deps/glslang/src/Test/ |
| D | spv.qualifiers.vert | 3 in vec4 inV; 14 outVc = inV; 15 outVs = inV; 16 outVf = inV; 17 outVn = inV; 18 outVcn = inV;
|
| D | spv.1.4.OpEntryPoint.frag | 3 layout(location = 0) in vec4 inv; 23 functionv = inv; 24 globalv = inv; 25 outv = functionv + inv + globalv + uniformv.v * pushv.a * bufferv.f; 26 outv += functionv + inv + globalv + uniformv.v * pushv.a * bufferv.f;
|
| /external/deqp-deps/glslang/Test/ |
| D | spv.qualifiers.vert | 3 in vec4 inV; 14 outVc = inV; 15 outVs = inV; 16 outVf = inV; 17 outVn = inV; 18 outVcn = inV;
|
| /external/libwebsockets/lib/drivers/spi/bitbang/ |
| D | lws-bb-spi.c | 53 uint8_t u, inv = !!(ctx->bb_ops.bus_mode & LWSSPIMODE_CPOL); in lws_bb_spi_write() local 61 ctx->gpio->set(ctx->clk, inv); in lws_bb_spi_write() 63 ctx->gpio->set(ctx->clk, !inv); in lws_bb_spi_write() 64 ctx->gpio->set(ctx->clk, inv); in lws_bb_spi_write() 66 ctx->gpio->set(ctx->clk, !inv); in lws_bb_spi_write() 71 ctx->gpio->set(ctx->clk, 0 ^ inv); in lws_bb_spi_write() 78 uint8_t inv = !!(ctx->bb_ops.bus_mode & LWSSPIMODE_CPOL); in lws_bb_spi_read() local 84 ctx->gpio->set(ctx->clk, inv); in lws_bb_spi_read() 87 ctx->gpio->set(ctx->clk, !inv); in lws_bb_spi_read() 92 ctx->gpio->set(ctx->clk, 0 ^ inv); in lws_bb_spi_read()
|
| /external/llvm/unittests/ADT/ |
| D | BitVectorTest.cpp | 54 TypeParam Inv = Vec; in TYPED_TEST() local 55 Inv.flip(); in TYPED_TEST() 56 EXPECT_EQ(6U, Inv.count()); in TYPED_TEST() 57 EXPECT_EQ(11U, Inv.size()); in TYPED_TEST() 58 EXPECT_TRUE(Inv.any()); in TYPED_TEST() 59 EXPECT_FALSE(Inv.all()); in TYPED_TEST() 60 EXPECT_FALSE(Inv.none()); in TYPED_TEST() 61 EXPECT_FALSE(Inv.empty()); in TYPED_TEST() 63 EXPECT_FALSE(Inv == Vec); in TYPED_TEST() 64 EXPECT_TRUE(Inv != Vec); in TYPED_TEST() [all …]
|
| /external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/ |
| D | Inv.pbtxt | 2 name: "Inv" 31 name: "Inv" 61 name: "Inv" 88 name: "Inv" 118 name: "Inv" 145 name: "Inv" 172 name: "Inv"
|
| /external/tensorflow/tensorflow/core/kernels/mlir_generated/ |
| D | gpu_op_reciprocal.cc | 28 REGISTER_ALIASED_GPU_KERNEL(Inv, Reciprocal, DT_HALF, DT_HALF); 29 REGISTER_ALIASED_GPU_KERNEL(Inv, Reciprocal, DT_FLOAT, DT_FLOAT); 30 REGISTER_ALIASED_GPU_KERNEL(Inv, Reciprocal, DT_DOUBLE, DT_DOUBLE); 31 REGISTER_ALIASED_GPU_KERNEL(Inv, Reciprocal, DT_INT64, DT_INT64); 32 REGISTER_ALIASED_GPU_KERNEL(Inv, Reciprocal, DT_COMPLEX64, DT_COMPLEX64); 33 REGISTER_ALIASED_GPU_KERNEL(Inv, Reciprocal, DT_COMPLEX128, DT_COMPLEX128);
|
| /external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/ |
| D | Inv.pbtxt | 2 name: "Inv" 31 name: "Inv" 61 name: "Inv" 88 name: "Inv" 118 name: "Inv" 145 name: "Inv"
|