HomeSort by relevance Sort by last modified time
    Searched defs:return_value (Results 1 - 25 of 186) sorted by null

1 2 3 4 5 6 7 8

  /art/runtime/entrypoints/quick/
quick_deoptimization_entrypoints.cc 74 JValue return_value; local
75 return_value.SetJ(0); // we never deoptimize from compiled code with an invoke result.
76 self->PushDeoptimizationContext(return_value,
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sigpause/
4-1.c 34 int return_value = 0; local
37 return_value = sigpause(-1);
38 if (return_value == -1) {
2-1.c 21 If it is not, set the variable return_value to 1, indicating a test failure.
25 return_value:
45 static int return_value = 2; variable
69 return_value = 2;
80 return_value = 0;
113 if (return_value != 0) {
114 if (return_value == 1)
116 if (return_value == 2)
3-1.c 43 int return_value = 0; local
49 return_value = sigpause(SIGTOTEST);
50 if (return_value == -1) {
  /external/python/cpython3/Modules/clinic/
_cryptmodule.c.h 25 PyObject *return_value = NULL; local
33 return_value = crypt_crypt_impl(module, word, salt);
36 return return_value;
_datetimemodule.c.h 25 PyObject *return_value = NULL; local
34 return_value = datetime_datetime_now_impl(type, tz);
37 return return_value;
_opcode.c.h 20 PyObject *return_value = NULL; local
33 return_value = PyLong_FromLong((long)_return_value);
36 return return_value;
pwdmodule.c.h 33 PyObject *return_value = NULL; local
39 return_value = pwd_getpwnam_impl(module, arg);
42 return return_value;
spwdmodule.c.h 24 PyObject *return_value = NULL; local
30 return_value = spwd_getspnam_impl(module, arg);
33 return return_value;
_cursesmodule.c.h 33 PyObject *return_value = NULL; local
70 return_value = curses_window_addch_impl(self, group_left_1, y, x, ch, group_right_1, attr);
73 return return_value;
_weakref.c.h 20 PyObject *return_value = NULL; local
27 return_value = PyLong_FromSsize_t(_return_value);
30 return return_value;
49 PyObject *return_value = NULL; local
57 return_value = _weakref__remove_dead_weakref_impl(module, dct, key);
60 return return_value;
_bz2module.c.h 25 PyObject *return_value = NULL; local
31 return_value = _bz2_BZ2Compressor_compress_impl(self, &data);
39 return return_value;
81 int return_value = -1; local
92 return_value = _bz2_BZ2Compressor___init___impl((BZ2Compressor *)self, compresslevel);
95 return return_value;
127 PyObject *return_value = NULL; local
137 return_value = _bz2_BZ2Decompressor_decompress_impl(self, &data, max_length);
145 return return_value;
162 int return_value = -1 local
    [all...]
_hashopenssl.c.h 25 PyObject *return_value = NULL; local
40 return_value = _hashlib_scrypt_impl(module, &password, &salt, n_obj, r_obj, p_obj, maxmem, dklen);
52 return return_value;
grpmodule.c.h 22 PyObject *return_value = NULL; local
31 return_value = grp_getgrgid_impl(module, id);
34 return return_value;
54 PyObject *return_value = NULL; local
63 return_value = grp_getgrnam_impl(module, name);
66 return return_value;
md5module.c.h 83 PyObject *return_value = NULL; local
92 return_value = _md5_md5_impl(module, string);
95 return return_value;
  /external/python/cpython3/Objects/clinic/
dictobject.c.h 20 PyObject *return_value = NULL; local
29 return_value = dict_fromkeys_impl(type, iterable, value);
32 return return_value;
unicodeobject.c.h 28 PyObject *return_value = NULL; local
37 return_value = unicode_maketrans_impl(x, y, z);
40 return return_value;
  /external/libmojo/third_party/catapult/devil/devil/android/sdk/
adb_compatibility_devicetest.py 38 return_value=_ADB_PATH) variable
  /external/lz4/examples/
simple_buffer.c 50 int return_value = 0; local
51 return_value = LZ4_compress_default(src, compressed_data, src_size, max_dst_size);
52 // Check return_value to determine what happened.
53 if (return_value < 0)
54 run_screaming("A negative result from LZ4_compress_default indicates a failure trying to compress the data. See exit code (echo $?) for value returned.", return_value);
55 if (return_value == 0)
57 if (return_value > 0)
59 // Not only does a positive return_value mean success, the value returned == the number of bytes required. You can use this to
61 const size_t compressed_data_size = return_value;
73 // memory location is, and how large the new_src (uncompressed) output will be. Again, save the return_value
    [all...]
  /external/python/cpython3/PC/clinic/
_testconsole.c.h 23 PyObject *return_value = NULL; local
33 return_value = _testconsole_write_input_impl(module, file, s);
36 return return_value;
58 PyObject *return_value = NULL; local
67 return_value = _testconsole_read_output_impl(module, file);
70 return return_value;
  /external/webrtc/webrtc/system_wrappers/source/
atomic32_posix.cc 38 int32_t return_value = __sync_fetch_and_add(&value_, value); local
39 return_value += value;
40 return return_value;
44 int32_t return_value = __sync_fetch_and_sub(&value_, value); local
45 return_value -= value;
46 return return_value;
  /toolchain/binutils/binutils-2.27/gold/
int_encoding.h 118 typename elfcpp::Valtype_base<valsize>::Valtype return_value; local
120 return_value = elfcpp::Swap_unaligned<valsize, true>::readval(source);
122 return_value = elfcpp::Swap_unaligned<valsize, false>::readval(source);
123 return return_value;
132 typename elfcpp::Valtype_base<valsize>::Valtype return_value; local
134 return_value = elfcpp::Swap_unaligned<valsize, true>::readval(*source);
136 return_value = elfcpp::Swap_unaligned<valsize, false>::readval(*source);
138 return return_value;
147 typename elfcpp::Valtype_base<valsize>::Valtype return_value; local
149 return_value = elfcpp::Swap_unaligned<valsize, true>::readval(*source)
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/plat/mediatek/mt8173/drivers/pmic/
pmic_wrap_init.c 105 uint32_t return_value = 0; local
118 return_value = wait_for_state_idle(TIMEOUT_WAIT_IDLE,
122 if (return_value != 0) {
123 ERROR("wait_for_fsm_idle fail,return_value=%d\n", return_value);
134 return_value = E_PWR_INVALID_ARG;
137 return_value = wait_for_state_ready(TIMEOUT_READ,
140 if (return_value != 0) {
141 ERROR("wait_for_fsm_vldclr fail,return_value=%d\n",
142 return_value);
    [all...]
  /external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
bind_return_type.pass.cpp 31 int return_value(int) { return dummy; } function
121 do_test<int>(return_value);
127 do_test_r<long>(return_value);
  /external/python/cpython3/Modules/_io/clinic/
_iomodule.c.h 140 PyObject *return_value = NULL; local
156 return_value = _io_open_impl(module, file, mode, buffering, encoding, errors, newline, closefd, opener);
159 return return_value;

Completed in 249 milliseconds

1 2 3 4 5 6 7 8