Home
last modified time | relevance | path

Searched refs:prev_value (Results 1 – 17 of 17) sorted by relevance

/third_party/skia/third_party/externals/tint/test/intrinsics/gen/atomicCompareExchangeWeak/
D12871c.wgsl.expected.msl7 T prev_value = compare;
8 …bool matched = atomic_compare_exchange_weak_explicit(atomic, &prev_value, value, memory_order_rela…
9 return {prev_value, matched};
D89ea3b.wgsl.expected.msl7 T prev_value = compare;
8 …bool matched = atomic_compare_exchange_weak_explicit(atomic, &prev_value, value, memory_order_rela…
9 return {prev_value, matched};
D6673da.wgsl.expected.msl7 T prev_value = compare;
8 …bool matched = atomic_compare_exchange_weak_explicit(atomic, &prev_value, value, memory_order_rela…
9 return {prev_value, matched};
Db2ab2c.wgsl.expected.msl7 T prev_value = compare;
8 …bool matched = atomic_compare_exchange_weak_explicit(atomic, &prev_value, value, memory_order_rela…
9 return {prev_value, matched};
/third_party/flutter/skia/third_party/externals/libwebp/src/utils/
Dhuffman_encode_utils.c263 int value, int prev_value) { in CodeRepeatedValues() argument
265 if (value != prev_value) { in CodeRepeatedValues()
331 int prev_value = 8; // 8 is the initial value for rle. in VP8LCreateCompressedHuffmanTree() local
343 tokens = CodeRepeatedValues(runs, tokens, value, prev_value); in VP8LCreateCompressedHuffmanTree()
344 prev_value = value; in VP8LCreateCompressedHuffmanTree()
/third_party/skia/third_party/externals/libwebp/src/utils/
Dhuffman_encode_utils.c263 int value, int prev_value) { in CodeRepeatedValues() argument
265 if (value != prev_value) { in CodeRepeatedValues()
331 int prev_value = 8; // 8 is the initial value for rle. in VP8LCreateCompressedHuffmanTree() local
343 tokens = CodeRepeatedValues(runs, tokens, value, prev_value); in VP8LCreateCompressedHuffmanTree()
344 prev_value = value; in VP8LCreateCompressedHuffmanTree()
/third_party/libdrm/tests/
Ddrmsl.c115 void *prev_value; in print_neighbors() local
120 &prev_key, &prev_value, in print_neighbors()
/third_party/libdrm/
Dxf86drmSL.c232 unsigned long *prev_key, void **prev_value, in drmSLLookupNeighbors() argument
242 *prev_value = *next_value = NULL; in drmSLLookupNeighbors()
246 *prev_value = update[0]->value; in drmSLLookupNeighbors()
Dxf86drm.h761 unsigned long *prev_key, void **prev_value,
/third_party/ffmpeg/libavfilter/
Daf_dynaudnorm.c552 double prev_value; in perform_dc_correction() local
557 prev_value = is_first_frame ? current_average_value : s->dc_correction_value[c]; in perform_dc_correction()
561 dst_ptr[i] -= fade(prev_value, s->dc_correction_value[c], i, frame->nb_samples); in perform_dc_correction()
624 const double prev_value = is_first_frame ? current_threshold : s->compress_threshold[0]; in perform_compression() local
628 prev_actual_thresh = setup_compress_thresh(prev_value); in perform_compression()
643 const double prev_value = is_first_frame ? current_threshold : s->compress_threshold[c]; in perform_compression() local
648 prev_actual_thresh = setup_compress_thresh(prev_value); in perform_compression()
/third_party/FreeBSD/sys/dev/usb/serial/
Dusb_serial.c690 uint8_t prev_value; in ucom_cfg_line_state() local
712 prev_value = sc->sc_pls_curr ^ notch_bits; in ucom_cfg_line_state()
723 (prev_value & UCOM_LS_DTR) ? 1 : 0); in ucom_cfg_line_state()
726 (prev_value & UCOM_LS_RTS) ? 1 : 0); in ucom_cfg_line_state()
729 (prev_value & UCOM_LS_BREAK) ? 1 : 0); in ucom_cfg_line_state()
732 (prev_value & UCOM_LS_RING) ? 1 : 0); in ucom_cfg_line_state()
/third_party/libinput/src/
Devdev-tablet.h71 int prev_value[LIBINPUT_TABLET_TOOL_AXIS_MAX + 1]; member
Devdev-tablet.c184 previous = tablet->prev_value[axis]; in tablet_filter_axis_fuzz()
230 tablet->prev_value[axis] = tablet->current_value[axis]; in tablet_process_absolute()
/third_party/abseil-cpp/absl/debugging/internal/
Ddemangle.cc478 static bool LeaveNestedName(State *state, int16_t prev_value) { in LeaveNestedName() argument
479 state->parse_state.nest_level = prev_value; in LeaveNestedName()
490 static bool RestoreAppend(State *state, bool prev_value) { in RestoreAppend() argument
491 state->parse_state.append = prev_value; in RestoreAppend()
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Ddemangle.cc482 static bool LeaveNestedName(State *state, int16_t prev_value) { in LeaveNestedName() argument
483 state->parse_state.nest_level = prev_value; in LeaveNestedName()
494 static bool RestoreAppend(State *state, bool prev_value) { in RestoreAppend() argument
495 state->parse_state.append = prev_value; in RestoreAppend()
/third_party/python/Modules/
Dgcmodule.c381 uintptr_t prev_value = 0, next_value = 0; in validate_list() local
386 prev_value = PREV_MASK_COLLECTING; in validate_list()
392 prev_value = PREV_MASK_COLLECTING; in validate_list()
405 assert((gc->_gc_prev & PREV_MASK_COLLECTING) == prev_value); in validate_list()
/third_party/mesa3d/src/compiler/nir/
Dnir_opt_if.c507 nir_ssa_def *prev_value = clone_alu_and_replace_src_defs(b, alu, prev_srcs); in opt_split_alu_of_phi() local
524 nir_phi_instr_add_src(phi, prev_block, nir_src_for_ssa(prev_value)); in opt_split_alu_of_phi()