HomeSort by relevance Sort by last modified time
    Searched refs:illegal (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
sse5-err.asm 1 fmaddpd xmm1, xmm2, xmm1, xmm3 ; illegal
2 fmaddpd xmm1, xmm2, xmm3, xmm3 ; illegal
3 fmaddpd xmm1, xmm2, xmm2, xmm3 ; illegal
5 fmaddps xmm1, xmm2, xmm1, xmm3 ; illegal
6 fmaddps xmm1, xmm2, xmm3, xmm3 ; illegal
7 fmaddps xmm1, xmm2, xmm2, xmm3 ; illegal
9 fmaddsd xmm1, xmm2, xmm1, xmm3 ; illegal
10 fmaddsd xmm1, xmm2, xmm3, xmm3 ; illegal
11 fmaddsd xmm1, xmm2, xmm2, xmm3 ; illegal
13 fmaddss xmm1, xmm2, xmm1, xmm3 ; illegal
    [all...]
strict-err.asm 2 add [rax], dword 4 ; illegal; must use dword [eax], 4
3 add [rax], strict dword 4 ; illegal; must use dword [eax], strict dword 4
4 add [rax], qword 4 ; illegal; must use qword [rax], 4
5 add [rax], strict qword 4 ; illegal; must use qword [eax], strict dword 4
segoff-err.asm 1 ; all of these should be illegal
riprel1.asm 27 ;mov rbx, [qword val] ; illegal (can't have 64-bit disp)
30 ;a32 mov rbx, [qword val] ; illegal (can't have 64-bit disp)
33 ;a64 mov rbx, [qword val] ; illegal (can't have 64-bit disp)
59 ;mov rbx, [qword val] ; illegal (can't have 64-bit disp)
62 ;a32 mov rbx, [qword val] ; illegal (can't have 64-bit disp)
65 ;a64 mov rbx, [qword val] ; illegal (can't have 64-bit disp)
riprel2.asm 14 ;mov rax,[rel qword foo] ; illegal
29 ;mov rax,[rel qword es:foo] ; illegal
44 ;mov rax,[rel qword fs:foo] ; illegal
66 ;mov rax,[rel qword foo] ; illegal
82 ;mov rax,[rel qword es:foo] ; illegal
98 ;mov rax,[rel qword fs:foo] ; illegal
strict.asm 152 ;push qword 4 ; illegal
153 ;push strict qword 4 ; illegal
160 ;push qword 400 ; illegal
161 ;push strict qword 400 ; illegal
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/
float-err.asm 1 ; Tests illegal float handling
  /external/chromium_org/base/third_party/icu/
icu_utf.cc 73 * In Unicode, all UTF-8 byte sequences with more than 4 bytes are illegal;
74 * lead bytes above 0xf4 are illegal.
99 3, 3, 3, /* illegal in Unicode */
100 4, 4, 4, 4, /* illegal in Unicode */
101 5, 5, /* illegal in Unicode */
102 0, 0 /* illegal bytes 0xfe and 0xff */
119 * <0 "Safe" behavior of U8_NEXT(): All illegal byte sequences yield a negative
122 * All illegal byte sequences yield a positive code point such that this
124 * the illegal sequence.
127 * like illegal sequences
141 uint8 trail, illegal=0; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
curpos-err.asm 15 dd $-foo ; illegal
21 dd (bar-$)+(foo-$) ; illegal (too many cross-segment)
curpos.asm 15 ;dd $-foo ; illegal
21 ;dd (bar-$)+(foo-$) ; illegal (too many cross-segment)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/gas64/
elf_gas64_curpos.asm 15 #.4byte .-foo # illegal
21 #.4byte (bar-.)+(foo-.) # illegal (too many cross-segment)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win32/tests/
win32-curpos.asm 15 ;dd $-foo ; illegal
21 ;dd (bar-$)+(foo-$) ; illegal (too many cross-segment)
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/win64/tests/
win64-curpos.asm 15 ;dd $-foo ; illegal
21 ;dd (bar-$)+(foo-$) ; illegal (too many cross-segment)
sce1.asm 21 ; if we didn't have a frame pointer, this would be illegal
sce3.asm 21 ; if we didn't have a frame pointer, this would be illegal
  /external/chromium_org/third_party/icu/source/common/
utf_impl.c 44 * In Unicode, all UTF-8 byte sequences with more than 4 bytes are illegal;
45 * lead bytes above 0xf4 are illegal.
70 3, 3, 3, /* illegal in Unicode */
71 4, 4, 4, 4, /* illegal in Unicode */
72 5, 5, /* illegal in Unicode */
73 0, 0 /* illegal bytes 0xfe and 0xff */
90 * <0 "Safe" behavior of U8_NEXT(): All illegal byte sequences yield a negative
93 * All illegal byte sequences yield a positive code point such that this
95 * the illegal sequence.
98 * like illegal sequences
112 uint8_t trail, illegal=0; local
    [all...]
ustrtrns.c 270 uint8_t trail, illegal=0; local
273 /* count==0 for illegally leading trail bytes and the illegal bytes 0xfe and 0xff */
278 /* count>=4 is always illegal: no more than 3 trail bytes in Unicode's UTF-8 */
279 illegal=1;
286 illegal=1;
293 illegal=1;
301 illegal=1;
311 /* illegal is also set if count>=4 */
312 if(illegal || c<utf8_minLegal[count] || UTF_IS_SURROGATE(c)) {
338 uint8_t trail, illegal=0 local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
stringencode.cc 45 const char * illegal, char escape) {
53 if ((ch == escape) || ::strchr(illegal, ch)) {
86 const char * illegal, char escape) {
94 if ((ch != escape) && !::strchr(illegal, ch)) {
415 // Not enough room to encode the character, or illegal character
stringencode.h 50 // Escaping prefixes illegal characters with the escape character. Compact, but
51 // illegal characters still appear in the string.
54 const char * illegal, char escape);
60 // Encoding replaces illegal characters with the escape character and 2 hex
62 // illegal characters. note that hex digits should not be used as illegal
66 const char * illegal, char escape);
73 // file, suitable for passing to the 'illegal' member of escape or encode.
76 // url_encode is an encode operation with a predefined set of illegal characters
  /external/chromium_org/third_party/webrtc/base/
stringencode.cc 28 const char * illegal, char escape) {
36 if ((ch == escape) || ::strchr(illegal, ch)) {
69 const char * illegal, char escape) {
77 if ((ch != escape) && !::strchr(illegal, ch)) {
398 // Not enough room to encode the character, or illegal character
stringencode.h 33 // Escaping prefixes illegal characters with the escape character. Compact, but
34 // illegal characters still appear in the string.
37 const char * illegal, char escape);
43 // Encoding replaces illegal characters with the escape character and 2 hex
45 // illegal characters. note that hex digits should not be used as illegal
49 const char * illegal, char escape);
56 // file, suitable for passing to the 'illegal' member of escape or encode.
59 // url_encode is an encode operation with a predefined set of illegal characters
  /cts/tools/vm-tests-tf/src/dot/junit/verify/b2/d/
T_b2_1.d 30 move v1, v0 ; illegal read access to v1
  /external/chromium_org/base/i18n/
file_util_icu.cc 102 IllegalCharacters* illegal = IllegalCharacters::GetInstance(); local
126 if (illegal->contains(code_point)) {
  /external/icu/icu4c/source/common/
ustrtrns.cpp 276 uint8_t trail, illegal=0; local
280 /* count==0 for illegally leading trail bytes and the illegal bytes 0xfe and 0xff */
285 /* count>=4 is always illegal: no more than 3 trail bytes in Unicode's UTF-8 */
286 illegal=1;
293 illegal=1;
300 illegal=1;
308 illegal=1;
318 /* illegal is also set if count>=4 */
319 if(illegal || c<utf8_minLegal[count] || U_IS_SURROGATE(c)) {
345 uint8_t trail, illegal=0
    [all...]
  /external/e2fsprogs/po/
at-expand.pl 78 $msg =~ s/\@I/illegal/g;

Completed in 453 milliseconds

1 2 3 4 5