HomeSort by relevance Sort by last modified time
    Searched full:suffix (Results 51 - 75 of 3940) sorted by null

1 23 4 5 6 7 8 91011>>

  /art/runtime/interpreter/mterp/mips64/
op_long_to_double.S 6 %include "mips64/fcvtHeader.S" { "suffix":"_DOUBLE", "valreg":"f0" }
8 %include "mips64/fcvtFooter.S" { "suffix":"_DOUBLE", "valreg":"f0" }
op_long_to_float.S 6 %include "mips64/fcvtHeader.S" { "suffix":"_DOUBLE", "valreg":"f0" }
8 %include "mips64/fcvtFooter.S" { "suffix":"_FLOAT", "valreg":"f0" }
  /external/jemalloc/
coverage.sh 6 suffix=$2
15 mv "${f}" "${f}.${suffix}"
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/macholib/
dylib.py 17 (?:_(?P<suffix>[^._]+))?
36 suffix='Suffix',
39 Note that SomeVersion and Suffix are optional and may be None
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
55 suffix=suffix
60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/macholib/
dylib.py 17 (?:_(?P<suffix>[^._]+))?
36 suffix='Suffix',
39 Note that SomeVersion and Suffix are optional and may be None
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
55 suffix=suffix
60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/
dylib.py 17 (?:_(?P<suffix>[^._]+))?
36 suffix='Suffix',
39 Note that SomeVersion and Suffix are optional and may be None
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
55 suffix=suffix
60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/macholib/
dylib.py 17 (?:_(?P<suffix>[^._]+))?
36 suffix='Suffix',
39 Note that SomeVersion and Suffix are optional and may be None
49 def d(location=None, name=None, shortname=None, version=None, suffix=None):
55 suffix=suffix
60 assert dylib_info('P/Foo_debug.dylib') == d('P', 'Foo_debug.dylib', 'Foo', suffix='debug')
  /art/runtime/interpreter/mterp/x86_64/
bindiv.S 1 %default {"result":"","second":"","wide":"","suffix":"","rem":"0","ext":"cdq"}
15 test${suffix} $second, $second
17 cmp${suffix} $$-1, $second
20 idiv${suffix} $second
30 xor${suffix} $result, $result
32 neg${suffix} $result
bindiv2addr.S 1 %default {"result":"","second":"","wide":"","suffix":"","rem":"0","ext":"cdq"}
16 test${suffix} $second, $second
18 cmp${suffix} $$-1, $second
21 idiv${suffix} $second
31 xor${suffix} $result, $result
33 neg${suffix} $result
  /external/easymock/src/org/easymock/internal/matchers/
EndsWith.java 26 private final String suffix; field in class:EndsWith
28 public EndsWith(String suffix) {
29 this.suffix = suffix;
33 return (actual instanceof String) && ((String) actual).endsWith(suffix);
37 buffer.append("endsWith(\"" + suffix + "\")");
  /external/icu/android_icu4j/resources/android/icu/impl/duration/impl/data/
pfd_ko.xml 64 <suffix>?</suffix>
75 <suffix>?</suffix>
86 <suffix>?</suffix>
pfd_ru.xml 110 <suffix> ?????</suffix>
123 <suffix> ?????</suffix>
136 <suffix> ?????</suffix>
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/data/
pfd_ko.xml 64 <suffix>?</suffix>
75 <suffix>?</suffix>
86 <suffix>?</suffix>
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
OutputCollector.java 24 * list and a suffix (generally consisting of adjunct data referred to
37 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
40 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
47 * suffix
53 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
80 * Adds an instruction to the output suffix.
85 suffix.add(insn);
97 if (suffix == null) {
106 * Helper for {@link #getFinisher}, which appends the suffix t
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
OutputCollector.java 25 * list and a suffix (generally consisting of adjunct data referred to
38 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
41 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
49 * suffix
56 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
83 * Adds an instruction to the output suffix.
88 suffix.add(insn);
100 if (suffix == null) {
109 * Helper for {@link #getFinisher}, which appends the suffix t
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
OutputCollector.java 26 * list and a suffix (generally consisting of adjunct data referred to
39 * {@code null-ok;} suffix for the output, or {@code null} if the suffix
42 private ArrayList<DalvInsn> suffix; field in class:OutputCollector
50 * suffix
56 this.suffix = new ArrayList<DalvInsn>(suffixInitialCapacity);
83 * Adds an instruction to the output suffix.
88 suffix.add(insn);
100 if (suffix == null) {
109 * Helper for {@link #getFinisher}, which appends the suffix t
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
TempPath.java 35 * The prefix will be empty and the suffix will be
45 * The prefix and suffix can be set by the user.
48 * @param suffix the suffix to use. <code>null</code> gives
52 TempFile createTempFile(String prefix, String suffix) throws IOException;
59 * The prefix and suffix can be set by the user.
62 * @param suffix the suffix to use. <code>null</code> gives
69 TempFile createTempFile(String prefix, String suffix,
  /external/autotest/client/tests/kvm/scripts/
multicast_guest.py 13 print """%s [mgroup_count] [prefix] [suffix]
16 suffix: multicast address suffix""" % sys.argv[0]
21 suffix = int(sys.argv[3]) variable
25 mcast = prefix + "." + str(suffix + i)
  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p10.cpp 9 // A program containing a reserved ud-suffix is ill-formed.
10 123wibble; // expected-error {{invalid suffix 'wibble'}}
11 123.0wibble; // expected-error {{invalid suffix 'wibble'}}
12 const char *p = ""wibble; // expected-error {{invalid suffix on literal; C++11 requires a space between literal and identifier}} expected-error {{expected ';'}}
13 const char *q = R"x("hello")x"wibble; // expected-error {{invalid suffix on literal; C++11 requires a space between literal and identifier}} expected-error {{expected ';'}}
  /external/fio/compiler/
compiler.h 43 #define __compiletime_assert(condition, msg, prefix, suffix) \
46 extern void prefix ## suffix(void) __compiletime_error(msg); \
48 prefix ## suffix(); \
52 #define _compiletime_assert(condition, msg, prefix, suffix) \
53 __compiletime_assert(condition, msg, prefix, suffix)
  /external/chromium-trace/catapult/tracing/tracing/ui/analysis/
generic_object_view.html 77 label, object, indent, depth, maxDepth, suffix) {
80 label, indent, '<recursion limit reached>', suffix);
85 this.appendSimpleText_(label, indent, 'undefined', suffix);
90 this.appendSimpleText_(label, indent, 'null', suffix);
125 ss = suffix;
136 label, indent, '"' + object + '"', suffix);
144 return this.appendSimpleText_(label, indent, object, suffix);
151 this.appendElementWithLabel_(label, indent, link, suffix);
158 this.appendElementWithLabel_(label, indent, link, suffix);
163 this.appendSimpleText_(label, indent, object.toString(), suffix);
    [all...]
  /external/libjpeg-turbo/
CMakeLists.txt 462 set(suffix -static)
465 add_test(tjunittest${suffix} tjunittest${suffix})
466 add_test(tjunittest${suffix}-alloc tjunittest${suffix} -alloc)
467 add_test(tjunittest${suffix}-yuv tjunittest${suffix} -yuv)
468 add_test(tjunittest${suffix}-yuv-alloc tjunittest${suffix} -yuv -alloc)
469 add_test(tjunittest${suffix}-yuv-nopad tjunittest${suffix} -yuv -noyuvpad
    [all...]
  /external/autotest/client/common_lib/cros/
servo_afe_board_map.py 24 for suffix in KNOWN_SUFFIXES:
25 if afe_board.endswith(suffix):
26 mapped_board = afe_board[0:-len(suffix)]
  /external/llvm/test/MC/ARM/
directive-thumb_func.s 13 .thumb_func suffix
14 suffix: label
18 // CHECK-EABI: .thumb_func suffix
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
thumb2_mul-bad.l 2 [^:]*:10: Error: cannot honor width suffix -- `muleq.n r0,r0,r8'
3 [^:]*:12: Error: cannot honor width suffix -- `muleq.n r0,r1,r1'
4 [^:]*:13: Error: cannot honor width suffix -- `muleq.n r0,r1,r2'

Completed in 2682 milliseconds

1 23 4 5 6 7 8 91011>>