/third_party/skia/third_party/externals/libwebp/src/utils/ |
H A D | huffman_encode_utils.c | 263 int value, int prev_value) { in CodeRepeatedValues() 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() 261 CodeRepeatedValues(int repetitions, HuffmanTreeToken* tokens, int value, int prev_value) CodeRepeatedValues() argument
|
/third_party/libdrm/tests/ |
H A D | drmsl.c | 115 void *prev_value; in print_neighbors() local 120 &prev_key, &prev_value, in print_neighbors()
|
/third_party/libdrm/ |
H A D | xf86drmSL.c | 232 unsigned long *prev_key, void **prev_value, in drmSLLookupNeighbors() 242 *prev_value = *next_value = NULL; in drmSLLookupNeighbors() 246 *prev_value = update[0]->value; in drmSLLookupNeighbors() 231 drmSLLookupNeighbors(void *l, unsigned long key, unsigned long *prev_key, void **prev_value, unsigned long *next_key, void **next_value) drmSLLookupNeighbors() argument
|
H A D | xf86drm.h | 761 unsigned long *prev_key, void **prev_value,
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_dynaudnorm.c | 546 double prev_value; in perform_dc_correction() local 551 prev_value = is_first_frame ? current_average_value : s->dc_correction_value[c]; in perform_dc_correction() 555 dst_ptr[i] -= fade(prev_value, s->dc_correction_value[c], i, frame->nb_samples); in perform_dc_correction() 616 const double prev_value = is_first_frame ? current_threshold : s->compress_threshold[0]; in perform_compression() local 620 prev_actual_thresh = setup_compress_thresh(prev_value); in perform_compression() 640 const double prev_value = is_first_frame ? current_threshold : s->compress_threshold[c]; in perform_compression() local 646 prev_actual_thresh = setup_compress_thresh(prev_value); in perform_compression()
|
/third_party/FreeBSD/sys/dev/usb/serial/ |
H A D | usb_serial.c | 684 uint8_t prev_value; in ucom_cfg_line_state() local 706 prev_value = sc->sc_pls_curr ^ notch_bits; in ucom_cfg_line_state() 717 (prev_value & UCOM_LS_DTR) ? 1 : 0); in ucom_cfg_line_state() 720 (prev_value & UCOM_LS_RTS) ? 1 : 0); in ucom_cfg_line_state() 723 (prev_value & UCOM_LS_BREAK) ? 1 : 0); in ucom_cfg_line_state() 726 (prev_value & UCOM_LS_RING) ? 1 : 0); in ucom_cfg_line_state()
|
/third_party/libinput/src/ |
H A D | evdev-tablet.h | 72 int prev_value[LIBINPUT_TABLET_TOOL_AXIS_MAX + 1]; member
|
H A D | evdev-tablet.c | 185 previous = tablet->prev_value[axis]; in tablet_filter_axis_fuzz() 231 tablet->prev_value[axis] = tablet->current_value[axis]; in tablet_process_absolute()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
H A D | demangle.cc | 482 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/ |
H A D | gcmodule.c | 377 uintptr_t prev_value = 0, next_value = 0; in validate_list() local 382 prev_value = PREV_MASK_COLLECTING; in validate_list() 388 prev_value = PREV_MASK_COLLECTING; in validate_list() 401 assert((gc->_gc_prev & PREV_MASK_COLLECTING) == prev_value); in validate_list()
|
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_if.c | 506 nir_ssa_def *prev_value = clone_alu_and_replace_src_defs(b, alu, prev_srcs); in opt_split_alu_of_phi() local 523 nir_phi_instr_add_src(phi, prev_block, nir_src_for_ssa(prev_value)); in opt_split_alu_of_phi()
|
/third_party/node/deps/v8/src/ic/ |
H A D | keyed-store-generic.cc | 948 TNode<Object> prev_value = in EmitGenericPropertyStore() local 951 BranchIfSameValue(prev_value, p->value(), &done, slow, in EmitGenericPropertyStore()
|
H A D | accessor-assembler.cc | 1299 TNode<Object> prev_value = in HandleStoreICHandlerCase() local 1301 BranchIfSameValue(prev_value, p->value(), &done, miss, in HandleStoreICHandlerCase()
|
/third_party/backends/frontend/ |
H A D | scanimage.c | 810 SANE_Word value, prev_value = 0; in parse_vector() local 863 v = (double) prev_value; in parse_vector() 874 prev_value = value; in parse_vector()
|
/third_party/rust/crates/memchr/bench/data/code/ |
H A D | rust-library.rs | 19898 let prev_value = (*inner).strong.get(); in new_cyclic() 19899 debug_assert_eq!(prev_value, 0, "No prior strong references should exist"); in new_cyclic() 23671 let prev_value = (*inner).strong.fetch_add(1, Release); in new_cyclic() 23672 debug_assert_eq!(prev_value, 0, "No prior strong references should exist"); in new_cyclic() [all...] |