/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyInstrMemory.td | 27 def regPlusImm : PatFrag<(ops node:$addr, node:$off), 28 (add node:$addr, node:$off), 45 def regPlusGA : PatFrag<(ops node:$addr, node:$off), 46 (add node:$addr, node:$off), 61 def LOAD_I32 : I<(outs I32:$dst), (ins i32imm:$off, I32:$addr, 63 "i32.load\t$dst, ${off}(${addr})${p2align}">; 64 def LOAD_I64 : I<(outs I64:$dst), (ins i32imm:$off, I32:$addr, 66 "i64.load\t$dst, ${off}(${addr})${p2align}">; 67 def LOAD_F32 : I<(outs F32:$dst), (ins i32imm:$off, I32:$addr, 69 "f32.load\t$dst, ${off}(${addr})${p2align}">; [all …]
|
/external/flatbuffers/go/ |
D | table.go | 23 func (t *Table) Indirect(off UOffsetT) UOffsetT { 24 return off + GetUOffsetT(t.Bytes[off:]) 28 func (t *Table) String(off UOffsetT) string { 29 b := t.ByteVector(off) 34 func (t *Table) ByteVector(off UOffsetT) []byte { 35 off += GetUOffsetT(t.Bytes[off:]) 36 start := off + UOffsetT(SizeUOffsetT) 37 length := GetUOffsetT(t.Bytes[off:]) 42 // "off" in this object. 43 func (t *Table) VectorLen(off UOffsetT) int { [all …]
|
/external/oss-fuzz/projects/fluent-bit/ |
D | build.sh | 26 # Commandline arguments to turn off a lot of plugins. 27 …OFF -DFLB_IN_CPU=OFF -DFLB_IN_DISK=OFF -DFLB_IN_DOCKER=OFF -DFLB_IN_EXEC=OFF -DFLB_IN_FORWARD=OFF … 28 …Off -DFLB_LUAJIT=OFF -DFLB_FILTER_GREP=OFF -DFLB_FILTER_REWRITE_TAG=OFF -DFLB_OUT_AZURE=OFF -DFLB_… 29 …OFF -DFLB_FILTER_MODIFY=OFF -DFLB_FILTER_THROTTLE=OFF -DFLB_FILTER_KUBERNETES=OFF -DFLB_FILTER_NES… 30 EXTRA_FLAGS="-DFLB_BINARY=OFF -DFLB_EXAMPLES=OFF DFLB_METRICS=ON -DFLB_DEBUG=On -DMBEDTLS_FATAL_WAR…
|
/external/libwebsockets/contrib/abi/ |
D | libwebsockets.json | 13 "PkgDiff": "Off", 14 "ABIView": "Off", 15 "ABIDiff": "Off" 23 "PkgDiff": "Off", 24 "ABIView": "Off", 25 "ABIDiff": "Off" 33 "PkgDiff": "Off", 34 "ABIView": "Off", 35 "ABIDiff": "Off" 43 "PkgDiff": "Off", [all …]
|
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/io/ |
D | NumberOutput.java | 56 public static int outputInt(int v, char[] b, int off) in outputInt() argument 62 return _outputSmallestI(b, off); in outputInt() 64 b[off++] = '-'; in outputInt() 71 b[off] = (char) ('0' + v); in outputInt() 72 return off+1; in outputInt() 74 return _leading3(v, b, off); in outputInt() 78 off = _leading3(thousands, b, off); in outputInt() 79 off = _full3(v, b, off); in outputInt() 80 return off; in outputInt() 92 b[off++] = '2'; in outputInt() [all …]
|
/external/flatbuffers/lua/flatbuffers/ |
D | view.lua | 13 local function enforceOffset(off) 14 if off < 0 or off > 42949672951 then 19 local function unPackUoffset(bytes, off) 20 return string_unpack("<I4", bytes.str, off + 1) 23 local function unPackVoffset(bytes, off) 24 return string_unpack("<I2", bytes.str, off + 1) 53 function mt:Indirect(off) 54 enforceOffset(off) 55 return off + unPackUoffset(self.bytes, off) 58 function mt:String(off) [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
D | Pack.java | 8 public static short bigEndianToShort(byte[] bs, int off) in bigEndianToShort() argument 10 int n = (bs[off] & 0xff) << 8; in bigEndianToShort() 11 n |= (bs[++off] & 0xff); in bigEndianToShort() 15 public static int bigEndianToInt(byte[] bs, int off) in bigEndianToInt() argument 17 int n = bs[off] << 24; in bigEndianToInt() 18 n |= (bs[++off] & 0xff) << 16; in bigEndianToInt() 19 n |= (bs[++off] & 0xff) << 8; in bigEndianToInt() 20 n |= (bs[++off] & 0xff); in bigEndianToInt() 24 public static void bigEndianToInt(byte[] bs, int off, int[] ns) in bigEndianToInt() argument 28 ns[i] = bigEndianToInt(bs, off); in bigEndianToInt() [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/ |
D | Pack.java | 10 public static short bigEndianToShort(byte[] bs, int off) in bigEndianToShort() argument 12 int n = (bs[off] & 0xff) << 8; in bigEndianToShort() 13 n |= (bs[++off] & 0xff); in bigEndianToShort() 17 public static int bigEndianToInt(byte[] bs, int off) in bigEndianToInt() argument 19 int n = bs[off] << 24; in bigEndianToInt() 20 n |= (bs[++off] & 0xff) << 16; in bigEndianToInt() 21 n |= (bs[++off] & 0xff) << 8; in bigEndianToInt() 22 n |= (bs[++off] & 0xff); in bigEndianToInt() 26 public static void bigEndianToInt(byte[] bs, int off, int[] ns) in bigEndianToInt() argument 30 ns[i] = bigEndianToInt(bs, off); in bigEndianToInt() [all …]
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/ |
D | Pack.java | 10 public static short bigEndianToShort(byte[] bs, int off) in bigEndianToShort() argument 12 int n = (bs[off] & 0xff) << 8; in bigEndianToShort() 13 n |= (bs[++off] & 0xff); in bigEndianToShort() 17 public static int bigEndianToInt(byte[] bs, int off) in bigEndianToInt() argument 19 int n = bs[off] << 24; in bigEndianToInt() 20 n |= (bs[++off] & 0xff) << 16; in bigEndianToInt() 21 n |= (bs[++off] & 0xff) << 8; in bigEndianToInt() 22 n |= (bs[++off] & 0xff); in bigEndianToInt() 26 public static void bigEndianToInt(byte[] bs, int off, int[] ns) in bigEndianToInt() argument 30 ns[i] = bigEndianToInt(bs, off); in bigEndianToInt() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/ |
D | Pack.java | 8 public static int bigEndianToInt(byte[] bs, int off) in bigEndianToInt() argument 10 int n = bs[ off] << 24; in bigEndianToInt() 11 n |= (bs[++off] & 0xff) << 16; in bigEndianToInt() 12 n |= (bs[++off] & 0xff) << 8; in bigEndianToInt() 13 n |= (bs[++off] & 0xff); in bigEndianToInt() 17 public static void bigEndianToInt(byte[] bs, int off, int[] ns) in bigEndianToInt() argument 21 ns[i] = bigEndianToInt(bs, off); in bigEndianToInt() 22 off += 4; in bigEndianToInt() 33 public static void intToBigEndian(int n, byte[] bs, int off) in intToBigEndian() argument 35 bs[ off] = (byte)(n >>> 24); in intToBigEndian() [all …]
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/util/ |
D | Pack.java | 10 public static int bigEndianToInt(byte[] bs, int off) in bigEndianToInt() argument 12 int n = bs[ off] << 24; in bigEndianToInt() 13 n |= (bs[++off] & 0xff) << 16; in bigEndianToInt() 14 n |= (bs[++off] & 0xff) << 8; in bigEndianToInt() 15 n |= (bs[++off] & 0xff); in bigEndianToInt() 19 public static void bigEndianToInt(byte[] bs, int off, int[] ns) in bigEndianToInt() argument 23 ns[i] = bigEndianToInt(bs, off); in bigEndianToInt() 24 off += 4; in bigEndianToInt() 35 public static void intToBigEndian(int n, byte[] bs, int off) in intToBigEndian() argument 37 bs[ off] = (byte)(n >>> 24); in intToBigEndian() [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/util/ |
D | Pack.java | 10 public static int bigEndianToInt(byte[] bs, int off) in bigEndianToInt() argument 12 int n = bs[ off] << 24; in bigEndianToInt() 13 n |= (bs[++off] & 0xff) << 16; in bigEndianToInt() 14 n |= (bs[++off] & 0xff) << 8; in bigEndianToInt() 15 n |= (bs[++off] & 0xff); in bigEndianToInt() 19 public static void bigEndianToInt(byte[] bs, int off, int[] ns) in bigEndianToInt() argument 23 ns[i] = bigEndianToInt(bs, off); in bigEndianToInt() 24 off += 4; in bigEndianToInt() 35 public static void intToBigEndian(int n, byte[] bs, int off) in intToBigEndian() argument 37 bs[ off] = (byte)(n >>> 24); in intToBigEndian() [all …]
|
/external/flatbuffers/python/flatbuffers/ |
D | table.py | 43 def Indirect(self, off): argument 45 N.enforce_number(off, N.UOffsetTFlags) 46 return off + encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 48 def String(self, off): argument 50 N.enforce_number(off, N.UOffsetTFlags) 51 off += encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 52 start = off + N.UOffsetTFlags.bytewidth 53 length = encode.Get(N.UOffsetTFlags.packer_type, self.Bytes, off) 56 def VectorLen(self, off): argument 58 at "off" in this object.""" [all …]
|
/external/flatbuffers/tests/FlatBuffers.Test/ |
D | TestTable.cs | 33 var off = t.__offset(slot); in GetSlot() 35 if (off == 0) in GetSlot() 39 return t.bb.GetSbyte(t.bb_pos + off) != 0; in GetSlot() 44 var off = t.__offset(slot); in GetSlot() 46 if (off == 0) in GetSlot() 50 return t.bb.GetSbyte(t.bb_pos + off); in GetSlot() 55 var off = t.__offset(slot); in GetSlot() 57 if (off == 0) in GetSlot() 61 return t.bb.Get(t.bb_pos + off); in GetSlot() 66 var off = t.__offset(slot); in GetSlot() [all …]
|
/external/pffft/ |
D | bench_mixers.c | 121 for (int off = 0; off + B <= N; off += B) in save() local 123 fwrite(d+off, sizeof(complexf), B, f); in save() 131 int iter, off; in bench_shift_math_cc() local 142 off = 0; in bench_shift_math_cc() 147 phase = shift_math_cc(input+off, output+off, B, -0.0009F, phase); in bench_shift_math_cc() 148 off += B; in bench_shift_math_cc() 151 } while ( t1 < tstop && off + B < N ); in bench_shift_math_cc() 153 save(output, B, off, BENCH_FILE_SHIFT_MATH_CC); in bench_shift_math_cc() 158 printf("processed %f Msamples in %f ms\n", off * 1E-6, T*1E3); in bench_shift_math_cc() 166 int iter, off; in bench_shift_table_cc() local [all …]
|
/external/tensorflow/tensorflow/lite/tools/cmake/modules/ |
D | eigen.cmake | 46 set(\${language_works} OFF PARENT_SCOPE) 64 set(EIGEN_LEAVE_TEST_IN_ALL_TARGET OFF CACHE BOOL 67 set(BUILD_TESTING OFF CACHE BOOL "Disable tests.") 68 set(EIGEN_TEST_CXX11 OFF CACHE BOOL "Disable tests of C++11 features.") 69 set(EIGEN_BUILD_BTL OFF CACHE BOOL "Disable benchmark suite.") 70 set(EIGEN_BUILD_PKGCONFIG OFF CACHE BOOL "Disable pkg-config.") 71 set(EIGEN_SPLIT_LARGE_TESTS OFF CACHE BOOL "Disable test splitting.") 72 set(EIGEN_DEFAULT_TO_ROW_MAJOR OFF CACHE BOOL 76 set(EIGEN_TEST_SSE2 OFF CACHE BOOL "Disable SSE2 test.") 77 set(EIGEN_TEST_SSE3 OFF CACHE BOOL "Disable SSE3 test.") [all …]
|
/external/autotest/server/site_tests/platform_ServoPowerStateController/ |
D | platform_ServoPowerStateController.py | 27 ### Setting `power_state:off` 28 Setting `power_state:off` must turn the DUT "off" unconditionally. The 32 The meaning of "off" does not require any specific component to be 33 actually powered off, provided that the DUT does not respond on the 35 Some examples of "off" that are acceptable: 40 While a DUT is turned off, it is allowed to respond to the power button, 46 After applying `power_state:off` to turn a DUT off, setting 54 If a DUT is not off because of setting `power_state:off`, the response 61 `power_state:off` followed by `power_state:on`. The operation must have 74 * After `power_state:off`, it is allowed to immediately apply either [all …]
|
/external/curl/ |
D | appveyor.yml | 38 OPENSSL: OFF 40 ENABLE_UNICODE: OFF 41 HTTP_ONLY: OFF 42 TESTING: OFF 52 SCHANNEL: OFF 53 ENABLE_UNICODE: OFF 54 HTTP_ONLY: OFF 55 TESTING: OFF 65 OPENSSL: OFF 67 ENABLE_UNICODE: OFF [all …]
|
/external/libbpf/include/linux/ |
D | filter.h | 8 #define BPF_RAW_INSN(CODE, DST, SRC, OFF, IMM) \ argument 13 .off = OFF, \ 21 .off = 0, \ 29 .off = 0, \ 37 .off = 0, \ 45 .off = 0, \ 53 .off = 0, \ 56 #define BPF_LDX_MEM(SIZE, DST, SRC, OFF) \ argument 61 .off = OFF, \ 64 #define BPF_STX_MEM(SIZE, DST, SRC, OFF) \ argument [all …]
|
/external/oss-fuzz/projects/arrow/ |
D | build.sh | 34 -DARROW_EXTRA_ERROR_CONTEXT=off \ 35 -DARROW_JEMALLOC=off \ 36 -DARROW_MIMALLOC=off \ 37 -DARROW_FILESYSTEM=off \ 39 -DARROW_BUILD_SHARED=off \ 41 -DARROW_BUILD_TESTS=off \ 42 -DARROW_BUILD_INTEGRATION=off \ 43 -DARROW_BUILD_BENCHMARKS=off \ 44 -DARROW_BUILD_EXAMPLES=off \ 45 -DARROW_BUILD_UTILITIES=off \ [all …]
|
/external/eigen/ci/ |
D | README.md | 12 | `build:x86-64:linux:gcc-4.8:cxx11-off` | `x86-64` | `Ubuntu 18.04` | `GCC-4.8` | `Off` | 14 | `build:x86-64:linux:gcc-9:cxx11-off` | `x86-64` | `Ubuntu 18.04` | `GCC-9` | `Off` | 16 | `build:x86-64:linux:gcc-10:cxx11-off` | `x86-64` | `Ubuntu 18.04` | `GCC-10` | `Off` | 18 | `build:x86-64:linux:clang-10:cxx11-off` | `x86-64` | `Ubuntu 18.04` | `Clang-10` | `Off` | 20 | `build:aarch64:linux:gcc-10:cxx11-off` | `AArch64` | `Ubuntu 18.04` | `GCC-10` | `Off` | 22 | `build:aarch64:linux:clang-10:cxx11-off` | `AArch64` | `Ubuntu 18.04` | `Clang-10` | `Off` | 33 | `test:x86-64:linux:gcc-4.8:cxx11-off:official` | `x86-64` | `Ubuntu 18.04` | `GCC-4.8` | `… 34 | `test:x86-64:linux:gcc-4.8:cxx11-off:unsupported` | `x86-64` | `Ubuntu 18.04` | `GCC-4.8` | `… 37 | `test:x86-64:linux:gcc-9:cxx11-off:official` | `x86-64` | `Ubuntu 18.04` | `GCC-9` | `… 38 | `test:x86-64:linux:gcc-9:cxx11-off:unsupported` | `x86-64` | `Ubuntu 18.04` | `GCC-9` | `… [all …]
|
D | test.gitlab-ci.yml | 32 .test:x86-64:linux:gcc-4.8:cxx11-off: 37 needs: [ "build:x86-64:linux:gcc-4.8:cxx11-off" ] 43 test:x86-64:linux:gcc-4.8:cxx11-off:official: 44 extends: .test:x86-64:linux:gcc-4.8:cxx11-off 48 test:x86-64:linux:gcc-4.8:cxx11-off:unsupported: 49 extends: .test:x86-64:linux:gcc-4.8:cxx11-off 75 .test:x86-64:linux:gcc-9:cxx11-off: 80 needs: [ "build:x86-64:linux:gcc-9:cxx11-off" ] 86 test:x86-64:linux:gcc-9:cxx11-off:official: 87 extends: .test:x86-64:linux:gcc-9:cxx11-off [all …]
|
/external/libwebsockets/ |
D | CMakeLists.txt | 51 set(LWS_WITH_BUNDLED_ZLIB_DEFAULT OFF) 98 option(LWS_WITH_DISTRO_RECOMMENDED "Enable features recommended for distro packaging" OFF) 99 option(LWS_FOR_GITOHASHI "Enable features recommended for use with gitohashi" OFF) 104 option(DISABLE_WERROR "Avoid treating compiler warnings as fatal errors" OFF) 112 option(LWS_ROLE_MQTT "Build with support for MQTT client" OFF) 113 option(LWS_ROLE_DBUS "Compile with support for DBUS" OFF) 114 option(LWS_ROLE_RAW_PROXY "Raw packet proxy" OFF) 117 option(LWS_WITH_LWSWS "Libwebsockets Webserver" OFF) 118 option(LWS_WITH_CGI "Include CGI (spawn process with network-connected stdin/out/err) APIs" OFF) 119 option(LWS_IPV6 "Compile with support for ipv6" OFF) [all …]
|
/external/linux-kselftest/tools/testing/selftests/net/mptcp/ |
D | pm_nl_ctl.c | 42 int off = 0; in init_genl_req() local 47 off += NLMSG_ALIGN(sizeof(*nh)); in init_genl_req() 49 gh = (void *)(data + off); in init_genl_req() 52 off += NLMSG_ALIGN(sizeof(*gh)); in init_genl_req() 53 return off; in init_genl_req() 60 uint32_t off; in nl_error() local 75 memcpy(&off, RTA_DATA(attrs), 4); in nl_error() 76 fprintf(stderr, "netlink err off %d\n", in nl_error() 77 (int)off); in nl_error() 156 int off = 0; in resolve_mptcp_pm_netlink() local [all …]
|
/external/compiler-rt/test/tsan/ |
D | unaligned_race.cc | 48 template<int off, int off2> 50 p += off; in access3() 64 template<int off> 68 access3<off, 0>(main, sz1, rw, obj); in access2() 70 access3<off, 1>(main, sz1, rw, obj); in access2() 72 access3<off, 2>(main, sz1, rw, obj); in access2() 74 access3<off, 3>(main, sz1, rw, obj); in access2() 76 access3<off, 4>(main, sz1, rw, obj); in access2() 78 access3<off, 5>(main, sz1, rw, obj); in access2() 80 access3<off, 6>(main, sz1, rw, obj); in access2() [all …]
|