/third_party/node/deps/v8/src/heap/base/asm/ia32/ |
H A D | push_registers_masm.S | 14 ;; Push all callee-saved registers to get them on the stack for conservative 42 ;; Pop the callee-saved registers.
|
/third_party/node/deps/v8/src/heap/base/asm/arm64/ |
H A D | push_registers_masm.S | 11 ; x19-x29 are callee-saved 29 ; Restore frame pointer and pop all callee-saved registers.
|
/third_party/ffmpeg/libavcodec/ |
H A D | on2avc.c | 698 float *saved = c->delay[ch]; in on2avc_reconstruct_channel_ext() local 725 memcpy(out, saved, 448 * sizeof(float)); in on2avc_reconstruct_channel_ext() 726 c->fdsp->vector_fmul_window(wout, saved + 448, buf, c->short_win, 64); in on2avc_reconstruct_channel_ext() 728 memcpy(saved, buf + 512, 448 * sizeof(float)); in on2avc_reconstruct_channel_ext() 729 memcpy(saved + 448, buf + 7*128 + 64, 64 * sizeof(float)); in on2avc_reconstruct_channel_ext() 742 float *saved = c->delay[channel]; in on2avc_reconstruct_channel() local 762 c->fdsp->vector_fmul_window(out, saved, buf, c->long_win, 512); in on2avc_reconstruct_channel() 765 memcpy(out, saved, 448 * sizeof(float)); in on2avc_reconstruct_channel() 768 c->fdsp->vector_fmul_window(wout + 0*128, saved + 448, buf + 0*128, c->short_win, 64); in on2avc_reconstruct_channel() 775 c->fdsp->vector_fmul_window(wout, saved in on2avc_reconstruct_channel() [all...] |
H A D | vorbisdec.c | 155 float *saved; member 194 av_freep(&vc->saved); in vorbis_free() 1008 vc->saved = av_calloc(vc->blocksize[1] / 4, vc->audio_channels * sizeof(*vc->saved)); in vorbis_parse_id_hdr() 1009 if (!vc->channel_residues || !vc->saved) in vorbis_parse_id_hdr() 1751 float *saved = vc->saved + j * bs1 / 4; in vorbis_parse_audio_packet() local 1757 vc->fdsp->vector_fmul_window(ret, saved, buf, win, blocksize / 4); in vorbis_parse_audio_packet() 1759 vc->fdsp->vector_fmul_window(ret, saved, buf, win, bs0 / 4); in vorbis_parse_audio_packet() 1762 memcpy(ret, saved, ((bs in vorbis_parse_audio_packet() [all...] |
/third_party/node/test/parallel/ |
H A D | test-stream2-transform.js | 265 let saved = null; 269 saved = c; 271 if (saved) { 272 pt.push(saved); 273 saved = null;
|
/third_party/skia/tests/ |
H A D | ChecksumTest.cpp | 32 const uint32_t saved = tweaked[j]; in DEF_TEST() local 37 tweaked[j] = saved; in DEF_TEST()
|
/third_party/skia/third_party/externals/libjpeg-turbo/ |
H A D | jdhuff_opt.c | 50 savable_state saved; /* Other state at start of MCU */ member 133 entropy->saved.last_dc_val[ci] = 0; in start_pass_huff_decoder() 620 entropy->saved.last_dc_val[ci] = 0; in LOCAL() 654 state = entropy->saved; in LOCAL() 809 entropy->saved = state; in LOCAL() 827 state = entropy->saved; in LOCAL() 950 entropy->saved = state; in LOCAL()
|
/third_party/unity/extras/fixture/test/ |
H A D | unity_fixture_Test.c | 236 UNITY_UINT saved = Unity.NumberOfTests; in TEST() local 239 TEST_ASSERT_EQUAL(saved, Unity.NumberOfTests); in TEST()
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_undo.py | 101 self.assertEqual(d.pointer, d.saved) 105 self.assertEqual(d.saved, -1)
|
/third_party/alsa-lib/test/lsb/ |
H A D | config.c | 119 snd_config_t *orig, *saved; in test_save() local 133 ALSA_CHECK(snd_config_top(&saved)); in test_save() 134 ALSA_CHECK(snd_config_load(saved, input)); in test_save() 137 TEST_CHECK(configs_equal(orig, saved)); in test_save() 139 ALSA_CHECK(snd_config_delete(saved)); in test_save()
|
/third_party/python/Modules/ |
H A D | readline.c | 1152 char saved; in flex_complete() local 1163 saved = rl_line_buffer[start]; in flex_complete() 1166 rl_line_buffer[start] = saved; in flex_complete() 1171 saved = rl_line_buffer[end]; in flex_complete() 1174 rl_line_buffer[end] = saved; in flex_complete()
|
H A D | itertoolsmodule.c | 1076 PyObject *saved; member 1094 PyObject *saved; in itertools_cycle_impl() local 1102 saved = PyList_New(0); in itertools_cycle_impl() 1103 if (saved == NULL) { in itertools_cycle_impl() 1112 Py_DECREF(saved); in itertools_cycle_impl() 1116 lz->saved = saved; in itertools_cycle_impl() 1128 Py_XDECREF(lz->saved); in cycle_dealloc() 1136 Py_VISIT(lz->saved); in cycle_traverse() 1150 if (PyList_Append(lz->saved, ite in cycle_next() 1197 PyObject *saved=NULL; cycle_setstate() local [all...] |
/third_party/mesa3d/src/gallium/auxiliary/cso_cache/ |
H A D | cso_context.c | 98 /** Current and saved state. 99 * The saved state is used as a 1-deep stack. 999 struct sampler_info *saved = &ctx->compute_samplers_saved; in cso_save_compute_samplers() local 1001 memcpy(saved->cso_samplers, info->cso_samplers, in cso_save_compute_samplers() 1003 memcpy(saved->samplers, info->samplers, sizeof(info->samplers)); in cso_save_compute_samplers() 1011 struct sampler_info *saved = &ctx->compute_samplers_saved; in cso_restore_compute_samplers() local 1013 memcpy(info->cso_samplers, saved->cso_samplers, in cso_restore_compute_samplers() 1015 memcpy(info->samplers, saved->samplers, sizeof(info->samplers)); in cso_restore_compute_samplers() 1160 * use this, because the states are only saved in either cso_context or 1353 struct sampler_info *saved in cso_save_fragment_samplers() local 1365 struct sampler_info *saved = &ctx->fragment_samplers_saved; cso_restore_fragment_samplers() local [all...] |
/third_party/libunwind/libunwind/tests/ |
H A D | x64-test-dwarf-expressions.S | 20 # non-volatile (caller-saved) register. We use r12 for this purpose. After this 46 # Move our sentinel (known) value into non-volatile (Callee-saved) r12
|
/third_party/cups-filters/filter/foomatic-rip/ |
H A D | postscript.c | 245 int saved = 0; /* DSC line not precessed yet */ in _print_ps() local 370 if (printprevpage || saved || stream_next_line(line, stream)) { in _print_ps() 371 saved = 0; in _print_ps() 556 $line .= "/foomatic-saved-state save def\n"; */ in _print_ps() 593 foomatic-saved-state restore in _print_ps() 595 /foomatic-saved-state save def in _print_ps() 602 "foomatic-saved-state restore\n"; */ in _print_ps() 1062 saved = 1; in _print_ps() 1169 /* At every "%%Page:..." comment we have saved the PostScript state in _print_ps() 1174 print $rendererhandle "foomatic-saved in _print_ps() [all...] |
/third_party/mesa3d/src/util/ |
H A D | u_cpu_detect.c | 478 bool saved = false; in get_cpu_topology() local 498 * to each core. The original affinity mask is saved. in get_cpu_topology() 511 !saved ? saved_mask : NULL, in get_cpu_topology() 513 saved = true; in get_cpu_topology() 565 if (saved) { in get_cpu_topology()
|
/third_party/python/Lib/idlelib/ |
H A D | iomenu.py | 310 saved = self.get_saved() 311 if saved: 313 # shell undo is reset after every prompt, looks saved, probably isn't 314 if not saved or filename is None:
|
/third_party/python/Lib/test/ |
H A D | test_decorators.py | 56 saved = {} 59 return saved[args] 62 saved[args] = res
|
/third_party/mesa3d/src/mesa/state_tracker/ |
H A D | st_draw_hw_select.c | 260 nir_variable *saved = in clip_with_plane() 261 nir_local_variable_create(b->impl, glsl_vec4_type(), "saved"); in clip_with_plane() 286 nir_store_var(b, saved, vi, 0xf); in clip_with_plane() 303 * vert_index > idx: +-+ case, grow array, current vertex in 'saved', in clip_with_plane() 304 * save next + to 'saved', will replace it with inserted vertex. in clip_with_plane() 311 nir_load_var(b, saved), in clip_with_plane() 316 nir_store_var(b, saved, nir_load_array_var(b, vert, index), 0xf); in clip_with_plane() 327 * +/0 vertex, current vertex is in 'saved', need to save next vertex in clip_with_plane() 333 nir_load_var(b, saved), in clip_with_plane() 336 nir_store_var(b, saved, nir_load_array_va in clip_with_plane() [all...] |
/third_party/libunwind/libunwind/doc/ |
H A D | libunwind-ia64.tex | 44 points to. For normal frames, all ``preserved'' (callee-saved) 46 (including ``scratch'' (caller-saved) registers) are accessible. Most 76 have a valid value, even though sometimes they do not get saved 170 value of register \texttt{ar.bsp} as of the time it was last saved
|
H A D | libunwind-dynamic.tex | 17 stack-pointer) and all callee-saved registers (preserved registers). 20 which the current value is stored (callee-saved registers). 48 on the stack and save certain callee-saved registers. The body 64 once the stack-pointer is restored, all values saved in the 67 state not saved on the stack is assume to remain valid through the end 69 instructions which restore the contents of callee-saved registers. 81 that the instruction stores calle-saved register \Var{r1} at offset 16 282 another (callee-saved) register determines whether or not an
|
/third_party/mesa3d/src/gallium/drivers/r600/ |
H A D | r600_pipe_common.h | 619 struct radeon_saved_cs *saved, 708 struct radeon_saved_cs *saved, bool get_buffer_list); 709 void radeon_clear_saved_cs(struct radeon_saved_cs *saved);
|
/third_party/googletest/googlemock/test/ |
H A D | gmock-actions_test.cc | 1859 // The unique_ptr can be saved by the action. in TEST() 1860 std::unique_ptr<int> saved; in TEST() local 1861 EXPECT_CALL(mock, TakeUnique(_)).WillOnce([&saved](std::unique_ptr<int> i) { in TEST() 1862 saved = std::move(i); in TEST() 1866 EXPECT_EQ(42, *saved); in TEST() 2080 std::unique_ptr<int> saved; in TEST() local 2081 Action<void(std::unique_ptr<int>)> a2 = [&saved](std::unique_ptr<int> p) { in TEST() 2082 saved = std::move(p); in TEST() 2085 EXPECT_EQ(5, *saved); in TEST()
|
/third_party/musl/src/thread/powerpc/ |
H A D | syscall_cp.s | 21 #r1, r14-31: belong to the caller, must be saved and restored
|
/third_party/eudev/src/shared/ |
H A D | util.c | 1511 static int saved = -1; in in_initrd() local 1514 if (saved >= 0) in in_initrd() 1515 return saved; in in_initrd() 1527 saved = access("/etc/initrd-release", F_OK) >= 0 && in in_initrd() 1531 return saved; in in_initrd()
|