OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UDI
(Results
1 - 5
of
5
) sorted by null
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.copy/
copy_n.pass.cpp
22
typedef UserDefinedIntegral<unsigned>
UDI
;
34
OutIter r = std::copy_n(InIter(ia),
UDI
(N/2), OutIter(ib));
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.generate/
generate_n.pass.cpp
24
typedef UserDefinedIntegral<unsigned>
UDI
;
37
assert(std::generate_n(Iter(ia),
UDI
(n), gen_test()) == Iter(ia+n));
/toolchain/binutils/binutils-2.25/include/cgen/
basic-modes.h
44
typedef uint64_t
UDI
;
50
#define MAKEDI(hi, lo) ((((DI) (SI) (hi)) << 32) | ((
UDI
) (USI) (lo)))
/external/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/
fill_n.pass.cpp
23
typedef UserDefinedIntegral<unsigned>
UDI
;
31
assert(std::fill_n(Iter(ca),
UDI
(n), char(1)) == std::next(Iter(ca), n));
44
assert(std::fill_n(Iter(ia),
UDI
(n), 1) == std::next(Iter(ia), n));
56
assert(std::fill_n(ia,
UDI
(n), static_cast<char>(1)) == std::next(ia, n));
75
assert(std::fill_n(ia,
UDI
(n), source()) == std::next(ia, n));
93
assert(std::fill_n(test1a,
UDI
(n), static_cast<char>(10)) == std::next(test1a, n));
116
assert(std::fill_n(&a[0],
UDI
(3), A('a')) == a+3);
134
std::fill_n(&foo[0],
UDI
(5), Storage());
/toolchain/binutils/binutils-2.25/opcodes/
mips-opc.c
303
#define
UDI
INSN_UDI
[
all
...]
Completed in 64 milliseconds