HomeSort by relevance Sort by last modified time
    Searched refs:src_value (Results 1 - 5 of 5) sorted by null

  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
split_merge.hpp 197 const src_type src_value = src(y, x); local
199 dst1(y, x) = src_value.x;
200 dst2(y, x) = src_value.y;
227 const src_type src_value = src(y, x); local
229 dst1(y, x) = src_value.x;
230 dst2(y, x) = src_value.y;
231 dst3(y, x) = src_value.z;
258 const src_type src_value = src(y, x); local
260 dst1(y, x) = src_value.x;
261 dst2(y, x) = src_value.y
    [all...]
  /hardware/intel/common/libmix/mix_video/src/
mixdisplay.c 28 static void mix_value_display_copy (const GValue * src_value,
252 mix_value_display_copy (const GValue * src_value, GValue * dest_value)
254 if (src_value->data[0].v_pointer)
257 mix_display_ref (MIX_DISPLAY_CAST (src_value->data[0].v_pointer));
  /art/runtime/
dex_file_verifier_test.cc 732 // To simplify generation of interesting "sub-states" of src_value, allow a "simple" mask to apply
733 // to a src_value, such that mask bit 0 applies to the lowest set bit in src_value, and so on.
734 static uint32_t ApplyMaskShifted(uint32_t src_value, uint32_t mask) {
737 while (src_value != 0) {
738 uint32_t index = CTZ(src_value);
739 if (((src_value & (1 << index)) != 0) &&
743 src_value &= ~(1 << index);
    [all...]
  /art/runtime/interpreter/
interpreter_common.cc 463 uint32_t src_value = shadow_frame.GetVReg(src_reg); local
469 if (src_value == reinterpret_cast<uintptr_t>(o)) {
472 new_shadow_frame->SetVReg(dest_reg, src_value);
    [all...]
  /external/v8/src/interpreter/
interpreter.cc 384 Node* src_value = __ LoadRegister(src_index); local
386 __ StoreRegister(src_value, dst_index);
    [all...]

Completed in 1622 milliseconds