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

1 2 3 4 5 6

  /external/syslinux/gpxe/src/include/gpxe/
iobuf.h 75 void *__result; \
76 __result = iob_reserve ( (iobuf), (len) ); \
78 __result; } )
92 void *__result; \
93 __result = iob_push ( (iobuf), (len) ); \
95 __result; } )
110 void *__result; \
111 __result = iob_pull ( (iobuf), (len) ); \
113 __result; } )
128 void *__result; \
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
functional_hash.h 94 size_t __result = 0; local
97 __result = (__result * 131) + *__cptr++;
98 return __result;
109 size_t __result = static_cast<size_t>(2166136261UL); local
113 __result ^= static_cast<size_t>(*__cptr++);
114 __result *= static_cast<size_t>(16777619UL);
116 return __result;
127 size_t __result local
132 __result ^= static_cast<size_t>(*__cptr++)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
functional_hash.h 94 size_t __result = 0; local
97 __result = (__result * 131) + *__cptr++;
98 return __result;
109 size_t __result = static_cast<size_t>(2166136261UL); local
113 __result ^= static_cast<size_t>(*__cptr++);
114 __result *= static_cast<size_t>(16777619UL);
116 return __result;
127 size_t __result local
132 __result ^= static_cast<size_t>(*__cptr++)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/
partial_sum.h 49 * @param __result Begin iterator of output sequence.
59 _OutputIterator __result,
64 return __result;
69 *__result = __value;
70 ++__result;
73 return __result;
80 * @param __result Begin iterator of output sequence.
90 _OutputIterator __result,
99 return __result;
106 *__result = *__begin
    [all...]
find.h 108 _DifferenceType __result = __length; local
132 # pragma omp flush(__result)
134 if (__result < __pos)
140 if (__pos < __result)
141 __result = __pos;
153 return std::pair<_RAIter1, _RAIter2>(__begin1 + __result,
154 __begin2 + __result);
214 _DifferenceType __result = __length; local
222 # pragma omp parallel shared(__result) num_threads(__num_threads)
243 # pragma omp flush(__result)
    [all...]
search.h 100 _DifferenceType __result = (__end1 - __begin1); local
137 #pragma omp flush(__result)
139 if (__result < __start)
149 __result = std::min(__result, __start);
168 return (__begin1 + __result);
unique_copy.h 43 * @param __result Begin iterator of result __sequence.
51 _OutputIterator __result,
63 return __result;
88 _OutputIterator __out = __result;
137 _OutputIterator __iter_out = __result + __begin_output;
160 _OutputIterator __iter_out = __result + __begin_output;
176 return __result + __end_output;
182 * @param __result Begin iterator of result __sequence.
187 _OutputIterator __result)
191 return __parallel_unique_copy(__first, __last, __result,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/
partial_sum.h 49 * @param __result Begin iterator of output sequence.
59 _OutputIterator __result,
64 return __result;
69 *__result = __value;
70 ++__result;
73 return __result;
80 * @param __result Begin iterator of output sequence.
90 _OutputIterator __result,
99 return __result;
106 *__result = *__begin
    [all...]
find.h 108 _DifferenceType __result = __length; local
132 # pragma omp flush(__result)
134 if (__result < __pos)
140 if (__pos < __result)
141 __result = __pos;
153 return std::pair<_RAIter1, _RAIter2>(__begin1 + __result,
154 __begin2 + __result);
214 _DifferenceType __result = __length; local
222 # pragma omp parallel shared(__result) num_threads(__num_threads)
243 # pragma omp flush(__result)
    [all...]
search.h 100 _DifferenceType __result = (__end1 - __begin1); local
137 #pragma omp flush(__result)
139 if (__result < __start)
149 __result = std::min(__result, __start);
168 return (__begin1 + __result);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
stl_numeric.h 226 * is written to @p __result. Therefore, the first value in @p __result is
227 * the first value of the input, the second value in @p __result is the sum
232 * @param __result Output sum.
233 * @return Iterator pointing just beyond the values written to __result.
238 _OutputIterator __result)
249 return __result;
251 *__result = __value;
255 *++__result = __value;
257 return ++__result;
    [all...]
stl_algobase.h 302 __copy_m(_II __first, _II __last, _OI __result)
304 for (; __first != __last; ++__result, ++__first)
305 *__result = *__first;
306 return __result;
316 __copy_m(_II __first, _II __last, _OI __result)
318 for (; __first != __last; ++__result, ++__first)
319 *__result = std::move(*__first);
320 return __result;
330 __copy_m(_II __first, _II __last, _OI __result)
335 *__result = *__first
906 const int __result = __builtin_memcmp(__first1, __first2, local
    [all...]
stl_uninitialized.h 69 _ForwardIterator __result)
71 _ForwardIterator __cur = __result;
80 std::_Destroy(__result, __cur);
92 _ForwardIterator __result)
93 { return std::copy(__first, __last, __result); }
100 * @param __result An output iterator.
101 * @return __result + (__first - __last)
108 _ForwardIterator __result)
117 __uninit_copy(__first, __last, __result);
237 _ForwardIterator __result, _Allocator& __alloc
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
stl_numeric.h 226 * is written to @p __result. Therefore, the first value in @p __result is
227 * the first value of the input, the second value in @p __result is the sum
232 * @param __result Output sum.
233 * @return Iterator pointing just beyond the values written to __result.
238 _OutputIterator __result)
249 return __result;
251 *__result = __value;
255 *++__result = __value;
257 return ++__result;
    [all...]
stl_algobase.h 302 __copy_m(_II __first, _II __last, _OI __result)
304 for (; __first != __last; ++__result, ++__first)
305 *__result = *__first;
306 return __result;
316 __copy_m(_II __first, _II __last, _OI __result)
318 for (; __first != __last; ++__result, ++__first)
319 *__result = std::move(*__first);
320 return __result;
330 __copy_m(_II __first, _II __last, _OI __result)
335 *__result = *__first
906 const int __result = __builtin_memcmp(__first1, __first2, local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpc/
netdb.h 62 struct rpcent **__result) __THROW;
66 struct rpcent **__result) __THROW;
69 size_t __buflen, struct rpcent **__result) __THROW;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
aliases.h 51 struct aliasent **__restrict __result) __THROW;
60 struct aliasent **__restrict __result) __THROW;
gshadow.h 114 size_t __buflen, struct sgrp **__result);
118 struct sgrp **__result);
122 struct sgrp **__result);
126 struct sgrp **__result);
shadow.h 122 size_t __buflen, struct spwd **__result);
126 struct spwd **__result);
130 struct spwd **__result);
134 struct spwd **__result);
  /external/vboot_reference/tests/tpm_lite/
tpmtest_timing.c 27 uint32_t __result; \
29 __result = op; \
30 if (__result != TPM_SUCCESS) { \
31 printf(#op ": error 0x%x\n", __result); \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/impl/
profiler_algos.h 99 _ForwardIterator __result = __first;
104 *__result = *__first;
105 ++__result;
107 return __result;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/impl/
profiler_algos.h 99 _ForwardIterator __result = __first;
104 *__result = *__first;
105 ++__result;
107 return __result;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
mathinline.h 50 ({ register char __result; \
52 : "=a" (__result) : "u" (y), "t" (x) : "cc", "st"); \
53 __result; })
55 ({ register char __result; \
57 : "=a" (__result) : "u" (y), "t" (x) : "cc", "st"); \
58 __result; })
61 ({ register char __result; \
63 : "=a" (__result) : "u" (x), "t" (y) : "cc", "st"); \
64 __result; })
67 ({ register char __result; \
    [all...]
  /bionic/libc/include/
grp.h 58 int getgrgid_r(gid_t __gid, struct group* __group, char* __buf, size_t __n, struct group** __result) __INTRODUCED_IN(24);
59 int getgrnam_r(const char* __name, struct group* __group, char* __buf, size_t __n, struct group** __result) __INTRODUCED_IN(24);
pwd.h 92 int getpwnam_r(const char* __name, struct passwd* __pwd, char* __buf, size_t __n, struct passwd** __result) __INTRODUCED_IN(12);
93 int getpwuid_r(uid_t __uid, struct passwd* __pwd, char* __buf, size_t __n, struct passwd** __result) __INTRODUCED_IN(12);

Completed in 539 milliseconds

1 2 3 4 5 6