Home
last modified time | relevance | path

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

12345678910>>...257

/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/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/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.cs34 var off = t.__offset(slot); in GetSlot()
36 if (off == 0) in GetSlot()
40 return t.bb.GetSbyte(t.bb_pos + off) != 0; in GetSlot()
45 var off = t.__offset(slot); in GetSlot()
47 if (off == 0) in GetSlot()
51 return t.bb.GetSbyte(t.bb_pos + off); in GetSlot()
56 var off = t.__offset(slot); in GetSlot()
58 if (off == 0) in GetSlot()
62 return t.bb.Get(t.bb_pos + off); in GetSlot()
67 var off = t.__offset(slot); in GetSlot()
[all …]
/external/autotest/server/site_tests/platform_ServoPowerStateController/
Dplatform_ServoPowerStateController.py12 """Test servo can power on and off DUT in recovery and non-recovery mode."""
24 # Power off, then power on DUT from internal storage.
26 self.host.servo.switch_usbkey('off')
31 """Confirm DUT is powered on, claim test failure if DUT is off.
36 @raise TestFail: If DUT is off or DUT boot from wrong source.
52 """Confirm DUT is off and does not turn back on after 30 seconds.
62 ' after it is turned off.'))
67 logging.info('Power off DUT')
69 self.assert_dut_off('power_state:off did not turn DUT off.')
72 self.host.servo.switch_usbkey('off')
[all …]
/external/curl/
Dappveyor.yml8 OPENSSL: OFF
9 TESTING: OFF
10 STATICLIB: OFF
14 OPENSSL: OFF
15 TESTING: OFF
16 STATICLIB: OFF
20 OPENSSL: OFF
21 TESTING: OFF
22 STATICLIB: OFF
27 TESTING: OFF
[all …]
/external/compiler-rt/test/tsan/
Dunaligned_race.cc48 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 …]
/external/libyuv/files/unit_test/
Dconvert_test.cc34 FMT_PLANAR, SUBSAMP_X, SUBSAMP_Y, W1280, N, NEG, OFF) \ argument
38 align_buffer_page_end(src_y, kWidth* kHeight + OFF); \
41 OFF); \
44 OFF); \
57 src_y[i * kWidth + j + OFF] = (fastrand() & 0xff); \
60 src_u[(i * SUBSAMPLE(kWidth, SRC_SUBSAMP_X)) + j + OFF] = \
62 src_v[(i * SUBSAMPLE(kWidth, SRC_SUBSAMP_X)) + j + OFF] = \
78 src_y + OFF, kWidth, src_u + OFF, SUBSAMPLE(kWidth, SRC_SUBSAMP_X), \
79 src_v + OFF, SUBSAMPLE(kWidth, SRC_SUBSAMP_X), dst_y_c, kWidth, \
85 src_y + OFF, kWidth, src_u + OFF, SUBSAMPLE(kWidth, SRC_SUBSAMP_X), \
[all …]
Dplanar_test.cc112 int off) { in TestAttenuateI() argument
118 align_buffer_page_end(src_argb, kStride * height + off); in TestAttenuateI()
122 src_argb[i + off] = (fastrand() & 0xff); in TestAttenuateI()
128 ARGBAttenuate(src_argb + off, kStride, dst_argb_c, kStride, width, in TestAttenuateI()
132 ARGBAttenuate(src_argb + off, kStride, dst_argb_opt, kStride, width, in TestAttenuateI()
183 int off) { in TestUnattenuateI() argument
189 align_buffer_page_end(src_argb, kStride * height + off); in TestUnattenuateI()
193 src_argb[i + off] = (fastrand() & 0xff); in TestUnattenuateI()
195 ARGBAttenuate(src_argb + off, kStride, src_argb + off, kStride, width, in TestUnattenuateI()
201 ARGBUnattenuate(src_argb + off, kStride, dst_argb_c, kStride, width, in TestUnattenuateI()
[all …]
/external/libunwind/src/x86/
DGos-linux.c147 unw_word_t addr = c->sigcontext_addr, fpstate_addr, off; in x86_get_scratch_loc() local
168 case UNW_X86_GS: off = LINUX_SC_GS_OFF; break; in x86_get_scratch_loc()
169 case UNW_X86_FS: off = LINUX_SC_FS_OFF; break; in x86_get_scratch_loc()
170 case UNW_X86_ES: off = LINUX_SC_ES_OFF; break; in x86_get_scratch_loc()
171 case UNW_X86_DS: off = LINUX_SC_DS_OFF; break; in x86_get_scratch_loc()
172 case UNW_X86_EDI: off = LINUX_SC_EDI_OFF; break; in x86_get_scratch_loc()
173 case UNW_X86_ESI: off = LINUX_SC_ESI_OFF; break; in x86_get_scratch_loc()
174 case UNW_X86_EBP: off = LINUX_SC_EBP_OFF; break; in x86_get_scratch_loc()
175 case UNW_X86_ESP: off = LINUX_SC_ESP_OFF; break; in x86_get_scratch_loc()
176 case UNW_X86_EBX: off = LINUX_SC_EBX_OFF; break; in x86_get_scratch_loc()
[all …]
DGos-freebsd.c144 unw_word_t addr = c->sigcontext_addr, off, xmm_off; in x86_get_scratch_loc() local
177 off = 0; /* shut gcc warning */ in x86_get_scratch_loc()
180 case UNW_X86_GS: off = FREEBSD_UC_MCONTEXT_GS_OFF; break; in x86_get_scratch_loc()
181 case UNW_X86_FS: off = FREEBSD_UC_MCONTEXT_FS_OFF; break; in x86_get_scratch_loc()
182 case UNW_X86_ES: off = FREEBSD_UC_MCONTEXT_ES_OFF; break; in x86_get_scratch_loc()
183 case UNW_X86_DS: off = FREEBSD_UC_MCONTEXT_SS_OFF; break; in x86_get_scratch_loc()
184 case UNW_X86_EDI: off = FREEBSD_UC_MCONTEXT_EDI_OFF; break; in x86_get_scratch_loc()
185 case UNW_X86_ESI: off = FREEBSD_UC_MCONTEXT_ESI_OFF; break; in x86_get_scratch_loc()
186 case UNW_X86_EBP: off = FREEBSD_UC_MCONTEXT_EBP_OFF; break; in x86_get_scratch_loc()
187 case UNW_X86_ESP: off = FREEBSD_UC_MCONTEXT_ESP_OFF; break; in x86_get_scratch_loc()
[all …]
/external/python/cpython2/Modules/
Dsunaudiodev.c346 #define OFF(x) offsetof(audio_info_t,x) macro
348 { "i_sample_rate", T_UINT, OFF(record.sample_rate) },
349 { "i_channels", T_UINT, OFF(record.channels) },
350 { "i_precision", T_UINT, OFF(record.precision) },
351 { "i_encoding", T_UINT, OFF(record.encoding) },
352 { "i_gain", T_UINT, OFF(record.gain) },
353 { "i_port", T_UINT, OFF(record.port) },
354 { "i_samples", T_UINT, OFF(record.samples) },
355 { "i_eof", T_UINT, OFF(record.eof) },
356 { "i_pause", T_UBYTE, OFF(record.pause) },
[all …]
/external/llvm/test/MC/AMDGPU/
Dmubuf.s17 buffer_load_dword v1, off, s[4:7], s1
18 // SICI: buffer_load_dword v1, off, s[4:7], s1 ; encoding: [0x00,0x00,0x30,0xe0,0x00,0x01,0x01,0x01]
19 // VI: buffer_load_dword v1, off, s[4:7], s1 ; encoding: [0x00,0x00,0x50,0xe0,0x00,0x01,0x01,0x01]
21 buffer_load_dword v1, off, ttmp[4:7], s1
22 // SICI: buffer_load_dword v1, off, ttmp[4:7], s1 ; encoding: [0x00,0x00,0x30,0xe0,0x00,0x01,0x1d,0…
23 // VI: buffer_load_dword v1, off, ttmp[4:7], s1 ; encoding: [0x00,0x00,0x50,0xe0,0x00,0x01,0x1d,0…
25 buffer_load_dword v1, off, s[4:7], s1 offset:4
26 // SICI: buffer_load_dword v1, off, s[4:7], s1 offset:4 ; encoding: [0x04,0x00,0x30,0xe0,0x00,0x01,…
27 // VI: buffer_load_dword v1, off, s[4:7], s1 offset:4 ; encoding: [0x04,0x00,0x50,0xe0,0x00,0x01,…
29 buffer_load_dword v1, off, s[4:7], s1 offset:4 glc
[all …]
/external/clang/cmake/caches/
DApple-stage1.cmake12 set(LLVM_INCLUDE_TESTS OFF CACHE BOOL "")
13 set(LLVM_INCLUDE_EXAMPLES OFF CACHE BOOL "")
14 set(LLVM_INCLUDE_UTILS OFF CACHE BOOL "")
15 set(LLVM_INCLUDE_DOCS OFF CACHE BOOL "")
16 set(CLANG_INCLUDE_TESTS OFF CACHE BOOL "")
17 set(COMPILER_RT_INCLUDE_TESTS OFF CACHE BOOL "")
18 set(COMPILER_RT_BUILD_SANITIZERS OFF CACHE BOOL "")
20 set(LLVM_ENABLE_ZLIB OFF CACHE BOOL "")
21 set(LLVM_ENABLE_BACKTRACES OFF CACHE BOOL "")
22 set(CLANG_PLUGIN_SUPPORT OFF CACHE BOOL "")
[all …]
/external/clang/test/Driver/
Dcl-zc.cpp12 // RUN: %clang_cl /c -### /Zc:trigraphs- -- %s 2>&1 | FileCheck -check-prefix=TRIGRAPHS-OFF %s
13 // TRIGRAPHS-OFF: "-fno-trigraphs"
18 // RUN: %clang_cl /c -### /Zc:sizedDealloc- -- %s 2>&1 | FileCheck -check-prefix=SIZED-DEALLOC-OFF
19 // SIZED-DEALLOC-OFF-NOT: "-fsized-deallocation"
25 // RUN: %clang_cl /c -### /Zc:strictStrings- -- %s 2>&1 | FileCheck -check-prefix=STRICTSTRINGS-OFF
26 // STRICTSTRINGS-OFF: argument unused during compilation
32 // FOOBAR-OFF: argument unused during compilation
38 // RUN: %clang_cl /c -### /Zc:forScope- -- %s 2>&1 | FileCheck -check-prefix=FORSCOPE-OFF %s
39 // FORSCOPE-OFF: argument unused during compilation
43 // RUN: %clang_cl /c -### /Zc:wchar_t- -- %s 2>&1 | FileCheck -check-prefix=WCHAR_T-OFF %s
[all …]
/external/llvm/test/CodeGen/X86/
Dvector-gep.ll35 define i32 @AGEP2(<4 x i32*> %param, <4 x i32> %off) nounwind {
40 %A2 = getelementptr i32, <4 x i32*> %param, <4 x i32> %off
48 define <4 x i32*> @AGEP3(<4 x i32*> %param, <4 x i32> %off) nounwind {
53 %A2 = getelementptr i32, <4 x i32*> %param, <4 x i32> %off
61 define <4 x i16*> @AGEP4(<4 x i16*> %param, <4 x i32> %off) nounwind {
68 %A = getelementptr i16, <4 x i16*> %param, <4 x i32> %off
74 define <4 x i8*> @AGEP5(<4 x i8*> %param, <4 x i8> %off) nounwind {
78 %A = getelementptr i8, <4 x i8*> %param, <4 x i8> %off
86 define <4 x i8*> @AGEP6(<4 x i8*> %param, <4 x i32> %off) nounwind {
90 %A = getelementptr i8, <4 x i8*> %param, <4 x i32> %off
[all …]
/external/iproute2/tc/
Dp_ip.c38 tkey->off = 12; in parse_ip()
44 tkey->off = 16; in parse_ip()
54 tkey->off = 1; in parse_ip()
60 tkey->off = 0; in parse_ip()
66 tkey->off = 9; in parse_ip()
73 tkey->off = 1; in parse_ip()
80 tkey->off = 6; in parse_ip()
87 tkey->off = 6; in parse_ip()
93 tkey->off = 6; in parse_ip()
99 tkey->off = 6; in parse_ip()
[all …]
/external/boringssl/src/tool/
Dpkcs12.cc84 size_t off = 0; in DoPKCS12() local
86 n = BORINGSSL_READ(fd, &contents[off], size - off); in DoPKCS12()
88 off += static_cast<size_t>(n); in DoPKCS12()
90 } while ((n > 0 && off < size) || (n == -1 && errno == EINTR)); in DoPKCS12()
92 if (off != size) { in DoPKCS12()
104 off = 0; in DoPKCS12()
106 n = BORINGSSL_READ(0, &password[off], sizeof(password) - 1 - off); in DoPKCS12()
108 off += static_cast<size_t>(n); in DoPKCS12()
110 } while ((n > 0 && OPENSSL_memchr(password, '\n', off) == NULL && in DoPKCS12()
111 off < sizeof(password) - 1) || in DoPKCS12()
[all …]
/external/wpa_supplicant_8/wpa_supplicant/
Doffchannel.c2 * wpa_supplicant - Off-channel Action frame TX/RX
80 …"Off-channel: Send Action callback (without_roc=%d pending_action_tx=%p pending_action_tx_done=%d)… in wpas_send_action_cb()
101 wpa_printf(MSG_DEBUG, "Off-channel: Pending Action frame TX " in wpas_send_action_cb()
114 wpa_printf(MSG_DEBUG, "Off-channel: Schedule " in wpas_send_action_cb()
128 wpa_printf(MSG_DEBUG, "Off-channel: Failed to " in wpas_send_action_cb()
141 wpa_printf(MSG_DEBUG, "Off-channel: Sending pending Action frame to " in wpas_send_action_cb()
153 wpa_printf(MSG_DEBUG, "Off-channel: Failed to send the " in wpas_send_action_cb()
184 wpa_printf(MSG_DEBUG, "Off-channel: Ignore Action TX status - " in offchannel_send_action_tx_status()
190 wpa_printf(MSG_DEBUG, "Off-channel: Ignore Action TX status - " in offchannel_send_action_tx_status()
199 wpa_printf(MSG_DEBUG, "Off-channel: Ignore Action TX status - " in offchannel_send_action_tx_status()
[all …]
/external/libevent/
Dbuffer.c132 #define CHAIN_SPACE_PTR(ch) ((ch)->buffer + (ch)->misalign + (ch)->off)
134 0 : (ch)->buffer_len - ((ch)->misalign + (ch)->off))
253 if (chain->off) in evbuffer_chains_all_empty()
278 while ((*ch) && ((*ch)->off != 0 || CHAIN_PINNED(*ch))) in evbuffer_free_trailing_empty_chains()
304 while ((*ch) && ((*ch)->off != 0 || CHAIN_PINNED(*ch))) in evbuffer_chain_insert()
309 if (chain->off) in evbuffer_chain_insert()
319 buf->total_len += chain->off; in evbuffer_chain_insert()
615 result = (chain != NULL ? chain->off : 0); in evbuffer_get_contiguous_space()
663 while ((*buf->last_with_datap)->next && (*buf->last_with_datap)->next->off) { in advance_last_with_data()
692 buf->last->off += vec[0].iov_len; in evbuffer_commit_space()
[all …]
/external/syslinux/gpxe/src/arch/i386/include/
Dlibkir.h98 #define put_real_kir_const_off( var, seg, off ) \ argument
104 : "r,r" ( var ), "rm,rm" ( seg ), "i,!r" ( off ) \
107 #define put_real_kir_nonconst_off( var, seg, off ) \ argument
113 : "r" ( var ), "rm" ( seg ), "r" ( off ) \
116 #define put_real_kir( var, seg, off ) \ argument
118 if ( __builtin_constant_p ( off ) ) \
119 put_real_kir_const_off ( var, seg, off ); \
121 put_real_kir_nonconst_off ( var, seg, off ); \
124 #define get_real_kir_const_off( var, seg, off ) \ argument
130 : "rm,rm" ( seg ), "i,!r" ( off ) \
[all …]
/external/autotest/server/cros/servo/
Dservo.py24 This class is responsible for "power on" and "power off"
75 'warm_reset:off'])
78 """Force the DUT to power off.
80 The DUT is guaranteed to be off at the end of this call,
86 self._servo.set_nocheck('power_state', 'off')
91 Prior to calling this function, the DUT must be powered off,
105 power on. default: REC_OFF aka 'off'
149 # Time to toggle recovery switch on and off.
152 # Time to toggle development switch on and off.
157 # Time to keep USB power off before and after USB mux direction is changed
[all …]
/external/libunwind/include/
Dremote.h54 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; in fetch8() local
62 val >>= 8*off; in fetch8()
64 val >>= 8*(WSIZE - 1 - off); in fetch8()
74 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; in fetch16() local
77 assert ((off & 0x1) == 0); in fetch16()
84 val >>= 8*off; in fetch16()
86 val >>= 8*(WSIZE - 2 - off); in fetch16()
96 unw_word_t val, aligned_addr = *addr & -WSIZE, off = *addr - aligned_addr; in fetch32() local
99 assert ((off & 0x3) == 0); in fetch32()
106 val >>= 8*off; in fetch32()
[all …]

12345678910>>...257