Searched refs:new_code (Results 1 – 6 of 6) sorted by relevance
/third_party/glib/gio/ |
D | glocalfileenumerator.c | 155 int new_code; in convert_file_to_io_error() local 160 new_code = G_IO_ERROR_FAILED; in convert_file_to_io_error() 167 new_code = G_IO_ERROR_NOT_FOUND; in convert_file_to_io_error() 170 new_code = G_IO_ERROR_PERMISSION_DENIED; in convert_file_to_io_error() 173 new_code = G_IO_ERROR_NOT_DIRECTORY; in convert_file_to_io_error() 176 new_code = G_IO_ERROR_TOO_MANY_OPEN_FILES; in convert_file_to_io_error() 184 new_code, in convert_file_to_io_error()
|
/third_party/boost/libs/outcome/doc/src/snippets/ |
D | foreign_try.cpp | 95 outcome::result<int> new_code(int a) // new code in new_code() function 115 printresult("\nnew_code(5)", new_code(5)); in main() 116 printresult("\nnew_code(0)", new_code(0)); in main()
|
/third_party/python/Lib/test/ |
D | test_code.py | 181 def new_code(c): function 186 code = new_code(f.__code__) 264 new_code = code.replace(**{attr: value}) 265 self.assertEqual(getattr(new_code, attr), value) 270 new_code = code = func.__code__.replace(co_linetable=b'') 271 self.assertEqual(list(new_code.co_lines()), [])
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/ |
D | gstvkutils.c | 516 guint32 *new_code = NULL; in gst_vulkan_create_shader() local 531 new_code = g_new0 (guint32, size / 4); in gst_vulkan_create_shader() 541 new_code[i] = new; in gst_vulkan_create_shader() 544 first_word = ((guint32 *) new_code)[0]; in gst_vulkan_create_shader() 547 info.pCode = new_code; in gst_vulkan_create_shader() 551 g_free (new_code); in gst_vulkan_create_shader()
|
/third_party/boost/libs/outcome/doc/src/content/recipes/ |
D | foreign-try.md | 76 new_code(5) returns successful 5 78 new_code(0) returns failure argument out of domain
|
/third_party/ffmpeg/libavcodec/ |
D | proresenc_anatoliy.c | 249 int new_dc, delta, diff_sign, new_code; in encode_dc_coeffs() local 260 new_code = TO_GOLOMB2(get_level(delta), diff_sign); in encode_dc_coeffs() 262 encode_codeword(pb, new_code, dc_codebook[FFMIN(code, 6)]); in encode_dc_coeffs() 264 code = new_code; in encode_dc_coeffs()
|