HomeSort by relevance Sort by last modified time
    Searched full:suffix (Results 476 - 500 of 4184) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/cmd/asm/internal/arch/
arm64.go 74 // ARM64Suffix handles the special suffix for the ARM64.
89 // ParseARM64Suffix parses the suffix attached to an ARM64 instruction.
  /prebuilts/go/darwin-x86/src/runtime/
mapspeed_test.go 128 for suffix := 'A'; suffix <= 'G'; suffix++ {
129 m[strings.Repeat("X", 1<<20-1)+fmt.Sprint(suffix)] = true
170 for suffix := 'A'; suffix <= 'G'; suffix++ {
171 m[fmt.Sprint(suffix)] = true
  /prebuilts/go/linux-x86/src/cmd/asm/internal/arch/
arm64.go 74 // ARM64Suffix handles the special suffix for the ARM64.
89 // ParseARM64Suffix parses the suffix attached to an ARM64 instruction.
  /prebuilts/go/linux-x86/src/runtime/
mapspeed_test.go 128 for suffix := 'A'; suffix <= 'G'; suffix++ {
129 m[strings.Repeat("X", 1<<20-1)+fmt.Sprint(suffix)] = true
170 for suffix := 'A'; suffix <= 'G'; suffix++ {
171 m[fmt.Sprint(suffix)] = true
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_find.py 60 ## # On platforms where the default shared library suffix is '.so',
70 ## # and the default suffix is either none or '.dylib'.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_find.py 60 ## # On platforms where the default shared library suffix is '.so',
70 ## # and the default suffix is either none or '.dylib'.
  /system/core/base/include/android-base/
strings.h 62 // Tests whether 's' ends with 'suffix'.
63 bool EndsWith(const std::string& s, const char* suffix);
  /system/extras/tests/bootloader/
bootctl.py 59 """returns suffix string for specified slot number"""
61 return self._exec("get-suffix " + str(slot))[1].strip()
  /system/tpm/attestation/common/
mock_tpm_utility.cc 42 std::string suffix = "_fake_transform_" + method_; local
43 auto position = in.find(suffix);
  /toolchain/binutils/binutils-2.25/bfd/
elf-strtab.c 1 /* ELF strtab with GC and suffix merging support.
40 /* Entry this is a suffix of (if len < 0). */
41 struct elf_strtab_hash_entry *suffix; member in union:elf_strtab_hash_entry::__anon74870
317 /* B cannot be a suffix of A unless A is equal to B, which is guaranteed
340 /* Sort the strings by suffix and length. */
387 cmp->u.suffix = e;
418 e->u.index = e->u.suffix->u.index + (e->u.suffix->len + e->len);
  /external/opencv/cv/src/
_cvipp.h 73 #define IPCV_MOMENTS( suffix, ipp_suffix, cn ) \
74 IPCVAPI_EX( CvStatus, icvMoments##suffix##_C##cn##R, \
382 #define IPCV_FILTER_SOBEL_BORDER( suffix, flavor, srctype ) \
383 IPCVAPI_EX( CvStatus, icvFilterSobel##suffix##GetBufSize_##flavor##_C1R, \
384 "ippiFilterSobel" #suffix "GetBufferSize_" #flavor "_C1R", \
386 IPCVAPI_EX( CvStatus, icvFilterSobel##suffix##Border_##flavor##_C1R, \
387 "ippiFilterSobel" #suffix "Border_" #flavor "_C1R", CV_PLUGINS1(CV_PLUGIN_IPPCV), \
405 #define IPCV_FILTER_SCHARR_BORDER( suffix, flavor, srctype ) \
406 IPCVAPI_EX( CvStatus, icvFilterScharr##suffix##GetBufSize_##flavor##_C1R, \
407 "ippiFilterScharr" #suffix "GetBufferSize_" #flavor "_C1R",
    [all...]
  /ndk/sources/host-tools/make-3.81/
rule.c 1 /* Pattern and suffix rule internals for GNU Make.
59 /* Maximum length of a suffix. */
157 /* Create a pattern rule from a suffix rule.
158 TARGET is the target suffix; SOURCE is the source suffix.
173 `.X.a' suffix rule; the target pattern is always `(%.o)'. */
214 /* Convert old-style suffix rules to pattern rules.
240 /* Make a rule that is just the suffix, with no deps or commands.
246 /* Record a pattern for this suffix's null-suffix rule. *
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
test_tools.ipp 132 char const* suffix;
138 suffix = " passed";
143 suffix = " is not satisfied";
148 suffix = " failed";
153 suffix = " failed";
162 << ll << prefix << check_descr << suffix;
174 unit_test_log << prefix << "'" << check_descr << "'" << suffix;
202 << ll << prefix << arg1_descr << check_str[ct-CHECK_EQUAL] << arg2_descr << suffix;
284 unit_test_log << " )" << suffix;
324 << suffix;
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
obj-evax.c 238 char suffix [64]; local
245 suffix [0] = 0;
248 /* Check for ..xx suffix and save it. */
252 strncpy (suffix, &id[len-4], 4);
253 suffix [4] = 0;
298 /* Append back the suffix if there was one. */
299 if (strlen (suffix))
300 strcat (new_id, suffix);
322 number of characters in the suffix of the identifier that should be
444 suffix of the identifier are to be preserved, if any. *
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
tempfile.py 270 def mkstemp(suffix="", prefix=template, dir=None, text=False):
275 If 'suffix' is specified, the file name will end with that suffix,
276 otherwise there will be no suffix.
304 return _mkstemp_inner(dir, prefix, suffix, flags)
307 def mkdtemp(suffix="", prefix=template, dir=None):
327 file = _os.path.join(dir, prefix + name + suffix)
338 def mktemp(suffix="", prefix=template, dir=None):
361 file = _os.path.join(dir, prefix + name + suffix)
430 def NamedTemporaryFile(mode='w+b', bufsize=-1, suffix=""
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
tempfile.py 270 def mkstemp(suffix="", prefix=template, dir=None, text=False):
275 If 'suffix' is specified, the file name will end with that suffix,
276 otherwise there will be no suffix.
304 return _mkstemp_inner(dir, prefix, suffix, flags)
307 def mkdtemp(suffix="", prefix=template, dir=None):
327 file = _os.path.join(dir, prefix + name + suffix)
338 def mktemp(suffix="", prefix=template, dir=None):
361 file = _os.path.join(dir, prefix + name + suffix)
430 def NamedTemporaryFile(mode='w+b', bufsize=-1, suffix=""
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tempfile.py 270 def mkstemp(suffix="", prefix=template, dir=None, text=False):
275 If 'suffix' is specified, the file name will end with that suffix,
276 otherwise there will be no suffix.
304 return _mkstemp_inner(dir, prefix, suffix, flags)
307 def mkdtemp(suffix="", prefix=template, dir=None):
327 file = _os.path.join(dir, prefix + name + suffix)
338 def mktemp(suffix="", prefix=template, dir=None):
361 file = _os.path.join(dir, prefix + name + suffix)
430 def NamedTemporaryFile(mode='w+b', bufsize=-1, suffix=""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tempfile.py 270 def mkstemp(suffix="", prefix=template, dir=None, text=False):
275 If 'suffix' is specified, the file name will end with that suffix,
276 otherwise there will be no suffix.
304 return _mkstemp_inner(dir, prefix, suffix, flags)
307 def mkdtemp(suffix="", prefix=template, dir=None):
327 file = _os.path.join(dir, prefix + name + suffix)
338 def mktemp(suffix="", prefix=template, dir=None):
361 file = _os.path.join(dir, prefix + name + suffix)
430 def NamedTemporaryFile(mode='w+b', bufsize=-1, suffix=""
    [all...]
  /external/clang/lib/Lex/
LiteralSupport.cpp 457 /// decimal-constant integer-suffix
458 /// octal-constant integer-suffix
459 /// hexadecimal-constant integer-suffix
460 /// binary-literal integer-suffix [GNU, C++1y]
462 /// decimal-literal ud-suffix
463 /// octal-literal ud-suffix
464 /// hexadecimal-literal ud-suffix
465 /// binary-literal ud-suffix [GNU, C++1y]
481 /// integer-suffix:
482 /// unsigned-suffix [long-suffix
    [all...]
  /art/runtime/interpreter/mterp/mips64/
fcvtFooter.S 17 SET_VREG$suffix $valreg, a1
  /art/test/021-string2/src/junit/framework/
ComparisonFailure.java 29 * place of common suffix between expected and actual.
  /art/test/082-inline-execute/src/junit/framework/
ComparisonFailure.java 29 * place of common suffix between expected and actual.
  /art/test/701-easy-div-rem/
genMain.py 21 ({'@INT@': 'int', '@SUFFIX@':''},
30 ({'@INT@': 'long', '@SUFFIX@': 'l'},
61 public static @INT@ @NAME@(@INT@ x) {return x @OP@ @VALUE@@SUFFIX@;}''')
65 @INT@@CHECKER@("@NAME@", @NAME@(x), x, @VALUE@@SUFFIX@);''')
  /build/kati/
rule_parser_test.go 61 outputPatterns: []pattern{pattern{suffix: ".o"}},
73 outputPatterns: []pattern{pattern{suffix: ".o"}},
158 outputPatterns: []pattern{pattern{suffix: ".o"}},
175 outputPatterns: []pattern{pattern{suffix: ".o"}},
  /development/ndk/samples/hello-jni/tests/
AndroidManifest.xml 2 <!-- package name must be unique so suffix with "tests" so package loader doesn't ignore us -->

Completed in 437 milliseconds

<<11121314151617181920>>