Home
last modified time | relevance | path

Searched defs:int (Results 1 – 25 of 7019) sorted by relevance

12345678910>>...281

/external/clang/test/CodeGen/
Ddebug-info-257-args.c7 void fn1(int, int, int, int, int, int, int, int, int, int, int, int, int, int, in fn1() argument
/external/clang/test/Parser/
Dmethod-prototype-1.m3 - (void) bycopy : (int) woodo, ... ; argument
4 - (void) break : (int) woodo, ... ; argument
5 - (void) enum : (int) woodo, ... ; argument
6 - (void) struct : (int) woodo, ... ; argument
7 - (void) union : (int) woodo, ... ; argument
8 - (void) if : (int) woodo, int i, char chh, ... ; argument
9 - (void) else : (int) woodo, ... ; argument
10 - (void) while : (int) woodo, ... ; argument
11 - (void) do : (int) woodo, ... ; argument
12 - (void) for : (int) woodo, ... ; argument
[all …]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DUrlComponentEncodingTester.java51 map.put((int) '\b', Encoding.PERCENT); // Backspace in map.put() argument
52 map.put((int) '\t', Encoding.SKIP); // Horizontal Tab in map.put() argument
53 map.put((int) '\n', Encoding.SKIP); // Line feed in map.put() argument
55 map.put((int) '\f', Encoding.SKIP); // Form feed in map.put() argument
56 map.put((int) '\r', Encoding.SKIP); // Carriage return in map.put() argument
75 map.put((int) ' ', Encoding.PERCENT); in map.put() argument
76 map.put((int) '!', Encoding.IDENTITY); in map.put() argument
77 map.put((int) '"', Encoding.PERCENT); in map.put() argument
78 map.put((int) '#', Encoding.PERCENT); in map.put() argument
79 map.put((int) '$', Encoding.IDENTITY); in map.put() argument
[all …]
/external/ruy/ruy/
Dpack_avx.cc34 void Pack8bitColMajorForAvx(const std::int8_t*, std::int8_t, const std::int8_t*, in Pack8bitColMajorForAvx() argument
40 void PackFloatColMajorForAvx(const float*, const float*, int, int, int, in PackFloatColMajorForAvx() argument
46 void Pack8bitRowMajorForAvx(const std::uint8_t*, int, int, std::int8_t*, int, in Pack8bitRowMajorForAvx() argument
Dpack_avx512.cc34 void Pack8bitColMajorForAvx512(const std::int8_t*, std::int8_t, in Pack8bitColMajorForAvx512() argument
41 void PackFloatColMajorForAvx512(const float*, const float*, int, int, int, in PackFloatColMajorForAvx512() argument
47 void Pack8bitRowMajorForAvx512(const std::uint8_t*, int, int, std::int8_t*, int, in Pack8bitRowMajorForAvx512() argument
Dpack_avx2_fma.cc34 void Pack8bitColMajorForAvx2(const std::int8_t*, std::int8_t, in Pack8bitColMajorForAvx2() argument
41 void PackFloatColMajorForAvx2(const float*, const float*, int, int, int, in PackFloatColMajorForAvx2() argument
47 void Pack8bitRowMajorForAvx2(const std::uint8_t*, int, int, std::int8_t*, int, in Pack8bitRowMajorForAvx2() argument
/external/python/rsa/rsa/
Dcommon.py21 def __init__(self, a: int, b: int, d: int, msg: str = '') -> None:
28 def bit_size(num: int) -> int:
56 def byte_size(number: int) -> int:
81 def ceil_div(num: int, div: int) -> int:
105 def extended_gcd(a: int, b: int) -> typing.Tuple[int, int, int]:
130 def inverse(x: int, n: int) -> int:
147 def crt(a_values: typing.Iterable[int], modulo_values: typing.Iterable[int]) -> int:
Dkey.py54 def __init__(self, n: int, e: int) -> None:
151 def blind(self, message: int) -> int:
168 def unblind(self, blinded: int) -> int:
238 def __setstate__(self, state: typing.Tuple[int, int]) -> None: argument
392 def __init__(self, n: int, e: int, d: int, p: int, q: int) -> None:
413 def __setstate__(self, state: typing.Tuple[int, int, int, int, int, int, int, int]) -> None: argument
439 def blinded_decrypt(self, encrypted: int) -> int:
453 def blinded_encrypt(self, message: int) -> int:
589 def find_p_q(nbits: int,
590 getprime_func: typing.Callable[[int], int] = rsa.prime.getprime,
[all …]
Dprime.py27 def gcd(p: int, q: int) -> int:
39 def get_primality_testing_rounds(number: int) -> int:
65 def miller_rabin_primality_testing(n: int, k: int) -> bool:
118 def is_prime(number: int) -> bool:
144 def getprime(nbits: int) -> int:
172 def are_relatively_prime(a: int, b: int) -> bool:
Dcore.py22 def assert_int(var: int, name: str) -> None:
29 def encrypt_int(message: int, ekey: int, n: int) -> int:
45 def decrypt_int(cyphertext: int, dkey: int, n: int) -> int:
/external/clang/test/Index/
Dcomplete-super.m7 - (void)add:(int)x to:(int)y; argument
8 + (void)select:(Bool)condition first:(int)x second:(int)y; argument
14 - (void)add:(int)x to:(int)y; argument
15 + (void)select:(Bool)condition first:(int)x second:(int)y; argument
19 - (void)add:(int)a to:(int)b { argument
23 + (void)select:(Bool)condition first:(int)a second:(int)b { argument
30 - (void)multiply:(int)x by:(int)y; argument
37 - (void)multiply:(int)a by:(int)b { argument
Dcomplete-method-decls.m6 - (id)initWithInt:(int)x; argument
7 - (id)initWithTwoInts:(inout int)x second:(int)y;
22 - (id)initWithInt:(int)x; argument
25 - (int)setValue:(int)x; argument
29 - (id)categoryFunction:(int)x; argument
36 - (void)setValue:(int)x { } argument
37 - (id)initWithTwoInts:(int)x second:(int)y { return self; } argument
42 - (id)categoryFunction:(int)x { return self; } argument
46 - (int)first:(int)x second:(float)y third:(double)z; argument
47 - (id)first:(int)xx second2:(float)y2 third:(double)z; argument
[all …]
/external/webrtc/sdk/objc/components/video_frame_buffer/
DRTCCVPixelBuffer.mm64 cropY:(int)cropY { argument
98 - (BOOL)requiresScalingToWidth:(int)width height:(int)height { argument
102 - (int)bufferSizeForCroppingAndScalingToWidth:(int)width height:(int)height { argument
161 scaleHeight:(int)scaleHeight { argument
/external/python/pybind11/tests/
Dtest_docstring_options.cpp18 m.def("test_function1", [](int, int) {}, py::arg("a"), py::arg("b")); in TEST_SUBMODULE() argument
19 m.def("test_function2", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring"); in TEST_SUBMODULE() argument
21 m.def("test_overloaded1", [](int) {}, py::arg("i"), "Overload docstring"); in TEST_SUBMODULE() argument
24 m.def("test_overloaded2", [](int) {}, py::arg("i"), "overload docstring 1"); in TEST_SUBMODULE() argument
27 m.def("test_overloaded3", [](int) {}, py::arg("i")); in TEST_SUBMODULE() argument
32 m.def("test_function3", [](int, int) {}, py::arg("a"), py::arg("b")); in TEST_SUBMODULE() argument
33 m.def("test_function4", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring"); in TEST_SUBMODULE() argument
37 m.def("test_function5", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring"); in TEST_SUBMODULE() argument
42 … m.def("test_function6", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring"); in TEST_SUBMODULE() argument
46 m.def("test_function7", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring"); in TEST_SUBMODULE() argument
/external/webrtc/sdk/objc/api/video_frame_buffer/
DRTCNativeI420Buffer.mm22 - (instancetype)initWithWidth:(int)width height:(int)height { argument
34 dataV:(const uint8_t *)dataV { argument
46 strideV:(int)strideV { argument
107 scaleHeight:(int)scaleHeight { argument
/external/tensorflow/tensorflow/dtensor/python/
Dtpu_util.py64 def __init__(self, x: int = 0, y: int = 0, z: int = 0, core: int = 0):
105 def _create_tpu_topology(core_locations: List[_CoreLocation], num_tasks: int,
106 num_devices_per_task: int) -> topology.Topology:
322 def _enumerate_cores(bounds: List[int], ring_bounds: List[int],
323 ring_sizes: List[int], host_bounds: List[int],
324 host_sizes: List[int]) -> List[List[int]]:
361 def _enumerate_core_locations(bounds: List[int], ring_bounds: List[int],
364 ring_size: int) -> List[_CoreLocation]:
480 def _cmp_2d(ia: int, ib: int) -> int:
522 def _cmp_3d(ia: int, ib: int) -> int:
[all …]
/external/clang/test/CodeGenObjCXX/
Dmangle.mm37 - (void) process: (int)r3 :(int)r4 :(int)r5 :(int)r6 :(int)r7 :(int)r8 :(int)r9 :(int)r10 :(int &)i; argument
41 - (void) process: (int)r3 :(int)r4 :(int)r5 :(int)r6 :(int)r7 :(int)r8 :(int)r9 :(int)r10 :(int &)i… argument
/external/tensorflow/tensorflow/python/tpu/
Ddevice_assignment.py128 def coordinates(self, replica: int, logical_core: int) -> Tuple: # pylint:disable=g-bare-generic
132 def lookup_replicas(self, task_id: int, logical_core: int) -> List[int]:
152 def tpu_ordinal(self, replica: int = 0, logical_core: int = 0) -> int:
158 replica: int = 0,
159 logical_core: int = 0,
166 replica: int = 0,
167 logical_core: int = 0,
177 num_replicas: int = 1) -> "DeviceAssignment":
182 def _open_ring_2d(x_size: int, y_size: int,
183 z_coord: int) -> List[Tuple[int, int, int]]:
[all …]
/external/tensorflow/tensorflow/compiler/xla/pjrt/
Dlru_cache_test.cc30 EXPECT_EQ(0, cache.GetOrCreateIfAbsent(0, [](int) { return 0; })); in TEST() argument
32 EXPECT_EQ(1, cache.GetOrCreateIfAbsent(1, [](int) { return 1; })); in TEST() argument
34 EXPECT_EQ(2, cache.GetOrCreateIfAbsent(2, [](int) { return 2; })); in TEST() argument
36 EXPECT_EQ(0, cache.GetOrCreateIfAbsent(0, [](int) { return 3; })); in TEST() argument
38 EXPECT_EQ(4, cache.GetOrCreateIfAbsent(3, [](int) { return 4; })); in TEST() argument
40 EXPECT_EQ(2, cache.GetOrCreateIfAbsent(2, [](int) { return 5; })); in TEST() argument
42 EXPECT_EQ(6, cache.GetOrCreateIfAbsent(1, [](int) { return 6; })); in TEST() argument
46 EXPECT_EQ(6, cache.GetOrCreateIfAbsent(1, [](int) { return 6; })); in TEST() argument
58 EXPECT_EQ(0, cache1.GetOrCreateIfAbsent(0, [](int) { return 0; })); in TEST() argument
63 EXPECT_EQ(1, cache2.GetOrCreateIfAbsent(1, [](int) { return 1; })); in TEST() argument
[all …]
/external/clang/test/CodeGenObjC/
Ddot-syntax-1.m18 -(void) setX: (int) arg; argument
26 -(void) _setX: (int) arg { argument
36 -(void) setX: (int) arg { argument
45 -(void) setX: (int) arg; argument
57 -(void) setX: (int) arg { argument
67 -(void) _setX: (int) arg { argument
76 -(void) _setX: (int) arg; argument
88 -(void) _setX: (int) arg { argument
98 -(void) setX: (int) arg { argument
107 -(void) setX: (int) arg; argument
[all …]
/external/skia/src/gpu/ganesh/mock/
DGrMockOpsRenderPass.h45 void onDraw(int, int) override { this->noopDraw(); } in onDraw() argument
46 void onDrawIndexed(int, int, uint16_t, uint16_t, int) override { this->noopDraw(); } in onDrawIndexed() argument
47 void onDrawInstanced(int, int, int, int) override { this->noopDraw(); } in onDrawInstanced() argument
48 void onDrawIndexedInstanced(int, int, int, int, int) override { this->noopDraw(); } in onDrawIndexedInstanced() argument
49 void onDrawIndirect(const GrBuffer*, size_t, int) override { this->noopDraw(); } in onDrawIndirect() argument
50 void onDrawIndexedIndirect(const GrBuffer*, size_t, int) override { this->noopDraw(); } in onDrawIndexedIndirect() argument
/external/clang/test/SemaObjC/
Dmethod-undefined-warn-1.m5 - (void) meth : (int) arg1; argument
8 + (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:' declared here}} argument
15 - (void) meth : (int) arg2{} argument
16 - (void) cls_meth1 : (int) arg2{} argument
21 - (void) meth : (int) arg1; argument
24 + (void) cls_meth1 : (int) arg1; // expected-note {{method 'cls_meth1:' declared here}} argument
31 - (void) meth : (int) arg2{} argument
32 - (void) cls_meth1 : (int) arg2{} argument
37 - (void) meth : (int) arg1; argument
38 - (void) cls_meth1 : (int) arg1; argument
[all …]
Divar-ref-misuse.m7 + (void)setFoo:(int)foo; argument
8 + (void)setSprite:(int)sprite; argument
9 - (void)setFoo:(int)foo; argument
10 - (void)setSprite:(int)sprite; argument
17 + (void)setFoo:(int)foo { argument
23 + (void)setSprite:(int)sprite { argument
30 - (void)setFoo:(int)foo { argument
34 - (void)setSprite:(int)sprite { argument
/external/mesa3d/src/mesa/state_tracker/tests/
Dst_tests_common.cpp63 FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<pair<int,int>>& _dst, in FakeCodeline()
74 [this](pair<int,int> r) { in FakeCodeline()
79 [this](const pair<int,const char *>& r) { in FakeCodeline()
84 [this](const pair<int,const char *>& r) { in FakeCodeline()
89 FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<tuple<int,int,int>>& _dst, in FakeCodeline()
99 [this](const tuple<int,int,int>& r) { in FakeCodeline()
104 [this](const tuple<int,int,int>& r) { in FakeCodeline()
109 [this](const tuple<int,int,int>& r) { in FakeCodeline()
114 FakeCodeline::FakeCodeline(tgsi_opcode _op, const vector<tuple<int,int,int>>& _dst, in FakeCodeline()
123 [this](const tuple<int,int,int>& r) { in FakeCodeline()
[all …]
/external/google-fruit/extras/benchmark/
Dno_di_library_source_generator.py36 def _generate_class_interface_header(class_index: int):
53 def _generate_class_header_with_interfaces(class_index: int, deps: List[int]):
80 def _generate_class_header_without_interfaces(class_index: int, deps: List[int]):
106 def _generate_class_cpp_file_with_interfaces(class_index: int, deps: List[int]):
132 def _generate_class_cpp_file_without_interfaces(class_index: int, deps: List[int]):

12345678910>>...281