Searched refs:blend_mask (Results 1 – 3 of 3) sorted by relevance
/external/libxcam/modules/ocl/ |
D | cl_pyramid_blender.cpp | 274 return _pyramid_layers[layer].blend_mask[plane]; in get_blend_mask() 379 this->blend_mask[0] = new CLBuffer(context, mask_size); in init_layer0() 381 XCamReturn ret = this->blend_mask[0]->enqueue_map((void*&)blend_ptr, 0, mask_size); in init_layer0() 393 this->blend_mask[0]->enqueue_unmap ((void*)blend_ptr); in init_layer0() 394 gauss_blur_buffer (this->blend_mask[0], this->mask_width[0], mask_radius, mask_sigma); in init_layer0() 489 XCAM_ASSERT (this->blend_mask[0].ptr ()); in copy_mask_from_y_to_uv() 492 this->blend_mask[1] = new CLBuffer (context, this->mask_width[1] * sizeof(float)); in copy_mask_from_y_to_uv() 493 XCAM_ASSERT (this->blend_mask[1].ptr ()); in copy_mask_from_y_to_uv() 497 ret = this->blend_mask[1]->enqueue_map ((void*&)to_ptr, 0, this->mask_width[1] * sizeof(float)); in copy_mask_from_y_to_uv() 499 … ret = this->blend_mask[0]->enqueue_map((void*&)from_ptr, 0, this->mask_width[0] * sizeof(float)); in copy_mask_from_y_to_uv() [all …]
|
D | cl_pyramid_blender.h | 56 SmartPtr<CLBuffer> blend_mask[CLBlenderPlaneMax]; // sizeof(float) * mask_width member
|
/external/v8/src/compiler/ia32/ |
D | instruction-selector-ia32.cc | 2281 bool TryMatch16x8HalfShuffle(uint8_t* shuffle16x8, uint8_t* blend_mask) { in TryMatch16x8HalfShuffle() argument 2282 *blend_mask = 0; in TryMatch16x8HalfShuffle() 2285 *blend_mask |= (shuffle16x8[i] > 7 ? 1 : 0) << i; in TryMatch16x8HalfShuffle() 2476 uint8_t blend_mask = PackBlend4(shuffle32x4); in VisitS8x16Shuffle() local 2477 imms[imm_count++] = blend_mask; in VisitS8x16Shuffle() 2483 int8_t blend_mask = PackBlend4(shuffle32x4); in VisitS8x16Shuffle() local 2484 imms[imm_count++] = blend_mask; in VisitS8x16Shuffle() 2488 uint8_t blend_mask; in VisitS8x16Shuffle() local 2491 blend_mask = PackBlend8(shuffle16x8); in VisitS8x16Shuffle() 2492 imms[imm_count++] = blend_mask; in VisitS8x16Shuffle() [all …]
|