Home
last modified time | relevance | path

Searched full:off (Results 1 – 25 of 12668) sorted by relevance

12345678910>>...507

/external/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrMemory.td27 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/
Dtable.go23 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/
Dbuild.sh26 # Commandline arguments to turn off a lot of plugins.
27OFF -DFLB_IN_CPU=OFF -DFLB_IN_DISK=OFF -DFLB_IN_DOCKER=OFF -DFLB_IN_EXEC=OFF -DFLB_IN_FORWARD=OFF
28Off -DFLB_LUAJIT=OFF -DFLB_FILTER_GREP=OFF -DFLB_FILTER_REWRITE_TAG=OFF -DFLB_OUT_AZURE=OFF -DFLB_…
29OFF -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/
Dlibwebsockets.json13 "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/
DNumberOutput.java56 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/
Dview.lua13 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/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/util/
DPack.java10 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/bcprov/src/main/java/com/android/org/bouncycastle/util/
DPack.java10 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/util/
DPack.java8 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/bcprov/src/main/java/org/bouncycastle/crypto/util/
DPack.java8 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/
DPack.java10 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/
DPack.java10 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/
Dtable.py43 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/
DTestTable.cs33 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/libdav1d/src/
Dctx.h40 #define set_ctx_rep4(type, var, off, val) do { \ argument
42 ((union alias64 *) &var[off + 0])->u64 = const_val; \
43 ((union alias64 *) &var[off + 8])->u64 = const_val; \
44 ((union alias64 *) &var[off + 16])->u64 = const_val; \
45 ((union alias64 *) &var[off + 24])->u64 = const_val; \
47 #define set_ctx_rep2(type, var, off, val) do { \ argument
49 ((union alias64 *) &var[off + 0])->u64 = const_val; \
50 ((union alias64 *) &var[off + 8])->u64 = const_val; \
52 #define set_ctx_rep1(typesz, var, off, val) \ argument
53 ((union alias##typesz *) &var[off])->u##typesz = val
[all …]
/external/pffft/
Dbench_mixers.c121 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/
Deigen.cmake46 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/
Dplatform_ServoPowerStateController.py27 ### 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/libbpf/include/linux/
Dfilter.h8 #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/
Dbuild.sh34 -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/curl/
Dappveyor.yml35 OPENSSL: 'OFF'
37 SHARED: 'OFF'
46 ENABLE_UNICODE: 'OFF'
47 HTTP_ONLY: 'OFF'
49 TESTING: 'OFF'
57 ENABLE_UNICODE: 'OFF'
58 HTTP_ONLY: 'OFF'
60 TESTING: 'OFF'
69 SCHANNEL: 'OFF'
70 ENABLE_UNICODE: 'OFF'
[all …]
/external/eigen/ci/
DREADME.md12 | `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 …]
/external/linux-kselftest/tools/testing/selftests/net/mptcp/
Dpm_nl_ctl.c55 int off = 0; in init_genl_req() local
60 off += NLMSG_ALIGN(sizeof(*nh)); in init_genl_req()
62 gh = (void *)(data + off); in init_genl_req()
65 off += NLMSG_ALIGN(sizeof(*gh)); in init_genl_req()
66 return off; in init_genl_req()
73 uint32_t off; in nl_error() local
88 memcpy(&off, RTA_DATA(attrs), 4); in nl_error()
89 fprintf(stderr, "netlink err off %d\n", in nl_error()
90 (int)off); in nl_error()
311 int off = 0; in resolve_mptcp_pm_netlink() local
[all …]
/external/libwebsockets/
DCMakeLists.txt51 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/cronet/third_party/libc++/src/cmake/caches/
DArmv7M-picolibc.cmake9 set(COMPILER_RT_BUILD_LIBFUZZER OFF CACHE BOOL "")
10 set(COMPILER_RT_BUILD_PROFILE OFF CACHE BOOL "")
11 set(COMPILER_RT_BUILD_SANITIZERS OFF CACHE BOOL "")
12 set(COMPILER_RT_BUILD_XRAY OFF CACHE BOOL "")
15 set(LIBCXXABI_ENABLE_ASSERTIONS OFF CACHE BOOL "")
16 set(LIBCXXABI_ENABLE_EXCEPTIONS OFF CACHE BOOL "")
17 set(LIBCXXABI_ENABLE_SHARED OFF CACHE BOOL "")
19 set(LIBCXXABI_ENABLE_THREADS OFF CACHE BOOL "")
22 set(LIBCXX_ENABLE_EXCEPTIONS OFF CACHE BOOL "")
23 set(LIBCXX_ENABLE_FILESYSTEM OFF CACHE STRING "")
[all …]

12345678910>>...507