HomeSort by relevance Sort by last modified time
    Searched refs:and (Results 251 - 275 of 17974) sorted by null

<<11121314151617181920>>

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mmix/
b-bend.s 2 % b-twoinsn.s and b-goodmain.s, and will provide an invalid LOP_END; one
4 % number of bytes between it and a preceding lop_stab.
  /external/owasp/sanitizer/src/tests/org/owasp/html/
SanitizersTest.java 4 // Redistribution and use in source and binary forms, with or without
9 // notice, this list of conditions and the following disclaimer.
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
70 PolicyFactory s = Sanitizers.BLOCKS.and(Sanitizers.FORMATTING)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
sys.go 5 // package sys contains system- and configuration- and architecture-specific
10 // per-OS and per-arch information, including constants
11 // named goos_$GOOS and goarch_$GOARCH for every
12 // known GOOS and GOARCH. The constant is 1 on the
  /prebuilts/go/linux-x86/src/runtime/internal/sys/
sys.go 5 // package sys contains system- and configuration- and architecture-specific
10 // per-OS and per-arch information, including constants
11 // named goos_$GOOS and goarch_$GOARCH for every
12 // known GOOS and GOARCH. The constant is 1 on the
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
rd-dw2-8.d 9 \[0x.*\] Special opcode .*: advance Address by 0 to 0x0 and Line by 2 to 3
10 \[0x.*\] Special opcode .*: advance Address by 6 to 0x6 and Line by 5 to 8
12 \[0x.*\] Special opcode .*: advance Address by 20 to 0x1a and Line by 0 to 17
14 \[0x.*\] Special opcode .*: advance Address by 0 to 0x801a and Line by 4 to 21
15 \[0x.*\] Special opcode .*: advance Address by 2 to 0x801c and Line by 1 to 22
  /external/valgrind/memcheck/tests/
overlap.stderr.exp 1 Source and destination overlap in memcpy(0x........, 0x........, 21)
5 Source and destination overlap in memcpy(0x........, 0x........, 21)
9 Source and destination overlap in strncpy(0x........, 0x........, 21)
13 Source and destination overlap in strncpy(0x........, 0x........, 21)
17 Source and destination overlap in strcpy(0x........, 0x........)
21 Source and destination overlap in strncat(0x........, 0x........, 21)
25 Source and destination overlap in strncat(0x........, 0x........, 21)
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/ilp32/lns/
lns-common-1.d 12 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 2
14 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 3
17 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 4
20 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 5
22 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 6
24 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 7
26 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 0 to 7
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/lns/
lns-common-1.d 11 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 2
13 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 3
16 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 4
19 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 5
21 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 6
23 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 1 to 7
25 \[0x.*\] Special opcode .*: advance Address by .* to .* and Line by 0 to 7
  /external/v8/tools/
gen-inlining-tests.py 13 # Generates 2 files. Found by trial and error.
247 if not doCatch and not doFinally: return
250 if not doCatch and (catchReturns or catchWithLocal or catchThrows):
254 if not doFinally and (finallyReturns or finallyThrows):
257 # tryFirstReturns is only relevant when both tryReturns and tryThrows are
259 if tryFirstReturns and not (tryReturns and tryThrows): return
261 # From the try and finally block, we can return or throw, but not both.
262 if catchReturns and catchThrows: return
263 if finallyReturns and finallyThrows: retur
    [all...]
  /prebuilts/go/darwin-x86/test/
loopbce.go 8 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
16 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
25 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
34 for _, i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
42 for i := 1; i < len(a); i++ { // ERROR "Induction variable with minimum 1 and increment 1$"
50 for i := 0; i < len(a); i += 2 { // ERROR "Induction variable with minimum 0 and increment 2$"
58 for i := -10; i < len(a); i += 2 { // ERROR "Induction variable with minimum -10 and increment 2$"
65 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
73 for i := 0; i < len(a); i++ { // ERROR "Induction variable with minimum 0 and increment 1$"
81 for i := 0; len(a) > i; i++ { // ERROR "Induction variable with minimum 0 and increment 1$
    [all...]
  /prebuilts/go/linux-x86/test/
loopbce.go 8 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
16 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
25 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
34 for _, i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
42 for i := 1; i < len(a); i++ { // ERROR "Induction variable with minimum 1 and increment 1$"
50 for i := 0; i < len(a); i += 2 { // ERROR "Induction variable with minimum 0 and increment 2$"
58 for i := -10; i < len(a); i += 2 { // ERROR "Induction variable with minimum -10 and increment 2$"
65 for i := range a { // ERROR "Induction variable with minimum 0 and increment 1$"
73 for i := 0; i < len(a); i++ { // ERROR "Induction variable with minimum 0 and increment 1$"
81 for i := 0; len(a) > i; i++ { // ERROR "Induction variable with minimum 0 and increment 1$
    [all...]
  /device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/Arm/
muldi3.S 5 # This program and the accompanying materials
6 # are licensed and made available under the terms and conditions of the BSD License
25 and r8, r0, r11
26 and ip, r2, r11
31 and ip, r10, r11
32 and lr, lr, r11
39 and ip, r10, r11
40 and lr, r4, r11
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
parsed_trace_events.py 11 Utility class for filtering and manipulating trace data.
17 if trace_filename and events:
19 if not trace_filename and events == None:
30 # forgiving and if this is obviously the case, we fix it up before
34 if t[n - 1] != ']' and t[n - 1] != '\n':
36 elif t[n - 2] != ']' and t[n - 1] == '\n':
38 elif t[n - 3] != ']' and t[n - 2] == '\r' and t[n - 1] == '\n':
72 if "pid" in e and e["pid"]:
82 if "tid" in e and e["tid"]
    [all...]
  /external/llvm/test/MC/ARM/
thumb-shift-encoding.s 27 and.w r12, lr, r0
28 and.w r1, r8, r9, lsr #32
29 and.w r2, r7, r10, lsr #16
30 and.w r3, r6, r10, lsl #0
31 and.w r4, r5, lr, lsl #16
32 and.w r5, r4, r11, asr #32
33 and.w r6, r3, r12, asr #16
34 and.w r7, r2, r12, rrx
35 and.w r8, r1, r0, ror #16
37 @ CHECK: and.w r12, lr, r0 @ encoding: [0x0e,0xea,0x00,0x0c
    [all...]
  /external/autotest/site_utils/rpm_control_system/
setup_rpms.py 59 if sys.argv[1] != 'atlantis' and sys.argv[1] != 'oyster':
70 if ((row == 1 and rack == 1) or (row == 1 and rack == 2) or
71 (row == 5 and rack == 6) or (row ==5 and rack == 7)):
  /system/core/libpixelflinger/arch-arm64/
col32cb16blend.S 5 * Redistribution and use in source and binary forms, with or without
9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
56 and w10, w1, #0xff // extract re
    [all...]
  /system/core/libpixelflinger/
col32cb16blend.S 14 * See the License for the specific language governing permissions and
46 and r10, r1, #0xff // extract red
47 and r12, r9, r1, lsr #8 // extract green
48 and r4, r9, r1, lsr #16 // extract blue
58 and r7, r9, r8, lsr #5 // extract dest green
59 and r8, r8, #0x1f // extract dest blue
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
branch-likely.s 5 # Sanity check beql and bnel
11 # Sanity test bgel and bgtl
17 # Sanity test bgeul and bgtul
23 # Sanity test bltl and blel
29 # Sanity test bltul and bleul
  /external/libmpeg2/common/arm/
impeg2_inter_pred.s 14 @ * See the License for the specific language governing permissions and
18 @ * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
49 @// Struct/Union Types and Define
109 vld1.8 {d0, d1}, [r4], r2 @Load and increment src
110 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
113 vld1.8 {d0, d1}, [r4], r2 @Load and increment src
114 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
115 vld1.8 {d0, d1}, [r4], r2 @Load and increment src
116 vst1.8 {d0, d1}, [r5], r3 @Store and increment dst
117 vld1.8 {d0, d1}, [r4], r2 @Load and increment sr
    [all...]
  /device/linaro/bootloader/edk2/CryptoPkg/Library/IntrinsicLib/Ia32/
MathLShiftS64.c 7 This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
31 ; Handle shifting of between 0 and 31 bits
40 ; Handle shifting of between 32 and 63 bits
45 and cl, 31
  /device/linaro/bootloader/edk2/IntelFspPkg/Library/BaseFspDebugLibSerialPort/Ia32/
FspDebug.s 4 # This program and the accompanying materials
5 # are licensed and made available under the terms and conditions of the BSD License
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/X64/
CpuBreakpoint.S 4 # This program and the accompanying materials
5 # are licensed and made available under the terms and conditions of the BSD License
  /device/linaro/bootloader/edk2/StdLib/LibC/CRT/Ia32/
llshl.c 7 This program and the accompanying materials are licensed and made available
8 under the terms and conditions of the BSD License which accompanies this
31 ; Handle shifting of between 0 and 31 bits
40 ; Handle shifting of between 32 and 63 bits
45 and cl, 31
  /device/linaro/bootloader/edk2/StdLib/LibC/Main/X64/
fpu_rmode.S 4 # This program and the accompanying materials
5 # are licensed and made available under the terms and conditions of the BSD License
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/Ia32/
SmmInit.S 4 # This program and the accompanying materials
5 # are licensed and made available under the terms and conditions of the BSD License

Completed in 1160 milliseconds

<<11121314151617181920>>