Home
last modified time | relevance | path

Searched refs:the_int (Results 1 – 25 of 72) sorted by relevance

123

/dports/science/dalton/dalton-66052b3af5ea7225e31178bf9a8b031913c72190/external/gen1int/tools/
H A Dint_to_str.F9030 subroutine int_to_str(the_int, len_str, left_align, zero_prefix, the_str) argument
33 integer, intent(in) :: the_int local
46 abs_int = abs(the_int)
50 if (the_int<0) the_str(1:1) = "-"
63 "failed to convert the integer ("//the_str//")", the_int)
76 if (the_int<0) the_str(ic-1:ic-1) = "-"
83 "failed to convert the integer ("//the_str//")", the_int)
/dports/ftp/vsftpd/vsftpd-3.0.5/
H A Dprivsock.c194 priv_sock_send_int(int fd, int the_int) in priv_sock_send_int() argument
196 int retval = vsf_sysutil_write_loop(fd, &the_int, sizeof(the_int)); in priv_sock_send_int()
197 if (retval != sizeof(the_int)) in priv_sock_send_int()
206 int the_int; in priv_sock_get_int() local
207 int retval = vsf_sysutil_read_loop(fd, &the_int, sizeof(the_int)); in priv_sock_get_int()
208 if (retval != sizeof(the_int)) in priv_sock_get_int()
212 return the_int; in priv_sock_get_int()
/dports/ftp/vsftpd-ext/vsFTPd-3.0.3-ext.1/
H A Dprivsock.c194 priv_sock_send_int(int fd, int the_int) in priv_sock_send_int() argument
196 int retval = vsf_sysutil_write_loop(fd, &the_int, sizeof(the_int)); in priv_sock_send_int()
197 if (retval != sizeof(the_int)) in priv_sock_send_int()
206 int the_int; in priv_sock_get_int() local
207 int retval = vsf_sysutil_read_loop(fd, &the_int, sizeof(the_int)); in priv_sock_get_int()
208 if (retval != sizeof(the_int)) in priv_sock_get_int()
212 return the_int; in priv_sock_get_int()
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/lib/cpp2/reflection/demo/
H A Ddata.thrift42 1: i32 the_int; member
64 const flat_struct example_1 = {"the_int": 42, "the_enum": some_enum.field2};
67 "struct_data": {"the_int": 56, "the_enum": some_enum.field0},
76 {"the_int": 0, "the_enum": some_enum.field0},
77 {"the_int": 1, "the_enum": some_enum.field1},
78 {"the_int": 2, "the_enum": some_enum.field2},
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/testsuite/20_util/to_address/
H A Dlwg3545.cc24 int the_int; variable
33 static constexpr int* to_address(pointer p) { return &the_int; } in to_address()
37 static_assert( std::to_address(clever_ptr<int>{}) == &the_int );
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/lldb/test/API/lang/cpp/signed_types/
H A Dmain.cpp8 int the_int = 'c'; in main() local
20 the_int - the_signed_int + in main()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/lldb/test/API/lang/cpp/signed_types/
H A Dmain.cpp8 int the_int = 'c'; in main() local
20 the_int - the_signed_int + in main()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/lldb/test/API/lang/cpp/signed_types/
H A Dmain.cpp8 int the_int = 'c'; in main() local
20 the_int - the_signed_int + in main()
/dports/devel/llvm12/llvm-project-12.0.1.src/lldb/test/API/lang/cpp/signed_types/
H A Dmain.cpp8 int the_int = 'c'; in main() local
20 the_int - the_signed_int + in main()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/lldb/test/API/lang/cpp/signed_types/
H A Dmain.cpp8 int the_int = 'c'; in main() local
20 the_int - the_signed_int + in main()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/lldb/test/API/lang/cpp/signed_types/
H A Dmain.cpp8 int the_int = 'c'; in main() local
20 the_int - the_signed_int + in main()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/lldb/test/API/lang/cpp/signed_types/
H A Dmain.cpp8 int the_int = 'c'; in main() local
20 the_int - the_signed_int + in main()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/lldb/test/API/lang/cpp/signed_types/
H A Dmain.cpp8 int the_int = 'c'; in main() local
20 the_int - the_signed_int + in main()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/
H A Dmain.cpp15 int the_int = 'c'; in main() local
27 the_int - the_signed_int + in main()
/dports/devel/llvm13/llvm-project-13.0.1.src/lldb/test/API/lang/cpp/signed_types/
H A Dmain.cpp8 int the_int = 'c'; in main() local
20 the_int - the_signed_int + in main()
/dports/devel/gdb/gdb-11.1/gdb/testsuite/gdb.dwarf2/
H A Ddwz.exp47 {name the_int}
73 {name the_int}
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexes/datetimes/
H A Dtest_setops.py450 the_int = rng1.intersection(rng2)
452 tm.assert_index_equal(the_int, expected)
453 assert isinstance(the_int, DatetimeIndex)
454 assert the_int.freq == rng.freq
456 the_int = rng1.intersection(rng2.view(DatetimeIndex))
457 tm.assert_index_equal(the_int, expected)
460 the_int = rng[:10].intersection(rng[10:])
462 tm.assert_index_equal(the_int, expected)
/dports/x11-toolkits/gtk-sharp30/gtk-sharp-2.99.3/sample/valtest/
H A Dvalobj.c158 valobj->the_int = g_value_get_int (value); in set_property()
216 g_value_set_int (value, valobj->the_int); in get_property()
281 return valobj->the_int; in gtksharp_valobj_get_int()
287 valobj->the_int = val; in gtksharp_valobj_set_int()
/dports/x11-toolkits/gtk-sharp20/gtk-sharp-2.12.45/sample/valtest/
H A Dvalobj.c158 valobj->the_int = g_value_get_int (value); in set_property()
216 g_value_set_int (value, valobj->the_int); in get_property()
281 return valobj->the_int; in gtksharp_valobj_get_int()
287 valobj->the_int = val; in gtksharp_valobj_set_int()
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/indexes/multi/
H A Dtest_setops.py275 the_int = piece1.intersection(piece2, sort=sort)
278 tm.assert_index_equal(the_int, idx[3:5])
279 assert tm.equalContents(the_int, idx[3:5])
282 the_int = idx.intersection(idx, sort=sort)
283 tm.assert_index_equal(the_int, idx)
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/coverage/coverage/ctracer/
H A Dtracer.c16 int the_int = MyInt_AsInt(pyint); in pyint_as_int() local
17 if (the_int == -1 && PyErr_Occurred()) { in pyint_as_int()
21 *pint = the_int; in pyint_as_int()
596 int the_int; in CTracer_unpack_pair() local
613 if (pyint_as_int(pyint, &the_int) < 0) { in CTracer_unpack_pair()
616 *(index == 0 ? p_one : p_two) = the_int; in CTracer_unpack_pair()
/dports/multimedia/dirac/dirac-1.0.2/libdirac_common/
H A Darith_codec.h332 inline void ArithCodecBase::EncodeUInt(const unsigned int the_int, in EncodeUInt() argument
334 const int value = (the_int+1); in EncodeUInt()
/dports/math/gnumeric/gnumeric-1.12.50/src/
H A Dgui-util.h96 gboolean entry_to_int (GtkEntry *entry, gint *the_int, gboolean update);
98 void int_to_entry (GtkEntry *entry, gint the_int);
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/python/coverage/coverage/ctracer/
H A Dtracer.c16 int the_int = MyInt_AsInt(pyint); in pyint_as_int() local
17 if (the_int == -1 && PyErr_Occurred()) { in pyint_as_int()
21 *pint = the_int; in pyint_as_int()
640 int the_int; in CTracer_unpack_pair() local
657 if (pyint_as_int(pyint, &the_int) < 0) { in CTracer_unpack_pair()
660 *(index == 0 ? p_one : p_two) = the_int; in CTracer_unpack_pair()
/dports/www/firefox-esr/firefox-91.8.0/third_party/python/coverage/coverage/ctracer/
H A Dtracer.c16 int the_int = MyInt_AsInt(pyint); in pyint_as_int() local
17 if (the_int == -1 && PyErr_Occurred()) { in pyint_as_int()
21 *pint = the_int; in pyint_as_int()
640 int the_int; in CTracer_unpack_pair() local
657 if (pyint_as_int(pyint, &the_int) < 0) { in CTracer_unpack_pair()
660 *(index == 0 ? p_one : p_two) = the_int; in CTracer_unpack_pair()

123