Searched defs:half (Results 26 - 50 of 53) sorted by relevance

123

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_action.c919 LLVMValueRef half, tmp; local
920 half = lp_build_const_vec(bld_base->base.gallivm, bld_base->base.type, 0.5);
922 emit_data->args[2], half);
H A Dlp_bld_arit.c432 /* lower half of regs */
442 /* upper half of regs */
1632 LLVMValueRef half; local
1634 half = lp_build_const_vec(bld->gallivm, type, 0.5);
1647 half = LLVMBuildBitCast(builder, half, int_vec_type, "");
1648 half = LLVMBuildOr(builder, sign, half, "");
1649 half = LLVMBuildBitCast(builder, half, vec_typ
1965 LLVMValueRef half = lp_build_const_vec(bld->gallivm, bld->type, 0.5); local
2179 LLVMValueRef half = lp_build_const_vec(gallivm, bld->type, 0.5); local
2397 LLVMValueRef half = lp_build_const_vec(gallivm, bld->type, 0.5); local
[all...]
H A Dlp_bld_sample.c944 LLVMValueRef half = lp_build_const_vec(coord_bld->gallivm, coord_bld->type, 0.5); local
958 res = lp_build_add(coord_bld, res, half);
H A Dlp_bld_sample_aos.c367 LLVMValueRef half = lp_build_const_vec(bld->gallivm, coord_bld->type, 0.5); local
376 coord = lp_build_sub(coord_bld, coord, half);
396 *coord1 = lp_build_add(coord_bld, coord, half);
397 coord = lp_build_sub(coord_bld, coord, half);
416 coord = lp_build_sub(coord_bld, coord, half);
/external/chromium_org/third_party/skia/src/effects/
H A DSkBlurMask.cpp44 * *dptr = (sum * scale + half) >> 24;
48 * *dptr = (sum * scale + half) >> 24;
52 * *dptr = (sum * scale + half) >> 24;
59 * *dptr = (sum * scale + half) >> 24;
64 * *dptr = (sum * scale + half) >> 24;
69 * *dptr = (sum * scale + half) >> 24;
86 uint32_t half = 1 << 23; local
98 *dptr = (sum * scale + half) >> 24; \
127 *dptr = (sum * scale + half) >> 24; \
156 *dptr = (sum * scale + half) >> 2
289 uint32_t half = 1 << 23; local
[all...]
/external/chromium_org/ui/native_theme/
H A Dnative_theme_base.cc828 gfx::Rect half = rect; local
829 half.set_height(rect.height() / 2);
830 PaintArrowButton(canvas, half, kScrollbarUpArrow, north_state);
832 half.set_y(rect.y() + rect.height() / 2);
833 PaintArrowButton(canvas, half, kScrollbarDownArrow, south_state);
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DFastMath.java934 * into half precision (16 bit).
939 * @param half The half floating point value as a short.
940 * @return floating point value of the half.
942 public static float convertHalfToFloat(short half) { argument
943 switch ((int) half) {
954 return Float.intBitsToFloat(((half & 0x8000) << 16)
955 | (((half & 0x7c00) + 0x1C000) << 13)
956 | ((half & 0x03FF) << 13));
962 throw new UnsupportedOperationException("NaN to half conversio
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c239 LLVMValueRef half = lp_build_const_vec(bld->gallivm, coord_bld->type, 0.5); local
247 coord_f = lp_build_sub(coord_bld, coord_f, half);
280 LLVMValueRef half = lp_build_const_vec(bld->gallivm, coord_bld->type, 0.5); local
289 coord = lp_build_sub(coord_bld, coord, half);
319 coord = lp_build_sub(coord_bld, coord, half);
338 coord = lp_build_sub(coord_bld, coord, half);
357 coord = lp_build_sub(coord_bld, coord, half);
372 coord = lp_build_sub(coord_bld, coord, half);
395 coord = lp_build_sub(coord_bld, coord, half);
415 min = half;
[all...]
H A Dlp_bld_tgsi_action.c919 LLVMValueRef half, tmp; local
920 half = lp_build_const_vec(bld_base->base.gallivm, bld_base->base.type, 0.5);
922 emit_data->args[2], half);
H A Dlp_bld_arit.c432 /* lower half of regs */
442 /* upper half of regs */
1632 LLVMValueRef half; local
1634 half = lp_build_const_vec(bld->gallivm, type, 0.5);
1647 half = LLVMBuildBitCast(builder, half, int_vec_type, "");
1648 half = LLVMBuildOr(builder, sign, half, "");
1649 half = LLVMBuildBitCast(builder, half, vec_typ
1965 LLVMValueRef half = lp_build_const_vec(bld->gallivm, bld->type, 0.5); local
2179 LLVMValueRef half = lp_build_const_vec(gallivm, bld->type, 0.5); local
2397 LLVMValueRef half = lp_build_const_vec(gallivm, bld->type, 0.5); local
[all...]
H A Dlp_bld_sample.c944 LLVMValueRef half = lp_build_const_vec(coord_bld->gallivm, coord_bld->type, 0.5); local
958 res = lp_build_add(coord_bld, res, half);
H A Dlp_bld_sample_aos.c367 LLVMValueRef half = lp_build_const_vec(bld->gallivm, coord_bld->type, 0.5); local
376 coord = lp_build_sub(coord_bld, coord, half);
396 *coord1 = lp_build_add(coord_bld, coord, half);
397 coord = lp_build_sub(coord_bld, coord, half);
416 coord = lp_build_sub(coord_bld, coord, half);
/external/skia/src/effects/
H A DSkBlurMask.cpp44 * *dptr = (sum * scale + half) >> 24;
48 * *dptr = (sum * scale + half) >> 24;
52 * *dptr = (sum * scale + half) >> 24;
59 * *dptr = (sum * scale + half) >> 24;
64 * *dptr = (sum * scale + half) >> 24;
69 * *dptr = (sum * scale + half) >> 24;
86 uint32_t half = 1 << 23; local
98 *dptr = (sum * scale + half) >> 24; \
127 *dptr = (sum * scale + half) >> 24; \
156 *dptr = (sum * scale + half) >> 2
289 uint32_t half = 1 << 23; local
[all...]
/external/valgrind/main/none/tests/ppc32/
H A Dround.c173 double half = (double)denorm_small/2; local
174 double qtr = half/2;
175 double D_hi = (double)*base + half + qtr;
176 double D_lo = (double)*base + half - qtr;
386 double qtr, half, fA, fB, fD; local
401 half = (double)whole/2;
402 qtr = half/2;
428 fB = s*(4+q)*half;
431 fA = s*(4+q)*half;
/external/valgrind/main/none/tests/ppc64/
H A Dround.c173 double half = (double)denorm_small/2; local
174 double qtr = half/2;
175 double D_hi = (double)*base + half + qtr;
176 double D_lo = (double)*base + half - qtr;
386 double qtr, half, fA, fB, fD; local
401 half = (double)whole/2;
402 qtr = half/2;
428 fB = s*(4+q)*half;
431 fA = s*(4+q)*half;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_tgsi_insn.c2409 struct src_register half = get_half_immediate(emit); local
2413 absolute(src0), half))
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dffvertex_prog.c1120 struct ureg half = undef; local
1158 half = get_temp(p);
1159 emit_op2(p, OPCODE_SUB, half, 0, VPpli, eye_hat);
1160 emit_normalize_vec3(p, half, half);
1162 half = register_param3(p, STATE_INTERNAL,
1166 half = get_temp(p);
1167 emit_op2(p, OPCODE_ADD, half, 0, VPpli, z_dir);
1168 emit_normalize_vec3(p, half, half);
1371 struct ureg half = register_scalar_const(p, .5); local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c333 /* Split the second half of doclist d into a separate doclist d2. Returns 1
1355 /* If the blob is too big, split it in half. */
1357 DocList half; local
1358 if( docListSplit(&doclist, &half) ){
1359 rc = term_insert(v, zTerm, nTerm, firstDocid(&half), &half);
1360 docListDestroy(&half);
/external/libvpx/libvpx/test/
H A Dvariance_test.cc155 const int half = block_size_ / 2; local
156 memset(ref_, 255, half);
157 memset(ref_ + half, 0, half);
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_insn.c2409 struct src_register half = get_half_immediate(emit); local
2413 absolute(src0), half))
/external/mesa3d/src/mesa/main/
H A Dffvertex_prog.c1120 struct ureg half = undef; local
1158 half = get_temp(p);
1159 emit_op2(p, OPCODE_SUB, half, 0, VPpli, eye_hat);
1160 emit_normalize_vec3(p, half, half);
1162 half = register_param3(p, STATE_INTERNAL,
1166 half = get_temp(p);
1167 emit_op2(p, OPCODE_ADD, half, 0, VPpli, z_dir);
1168 emit_normalize_vec3(p, half, half);
1371 struct ureg half = register_scalar_const(p, .5); local
[all...]
/external/pixman/pixman/
H A Dpixman-region.c1763 int half = num_ri / 2; local
1764 for (j = num_ri & 1; j < (half + (num_ri & 1)); j++)
1767 hreg = &ri[j + half].reg;
1787 num_ri -= half;
/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumber.c4732 Int half; /* half to add to lower unit */ local
4733 half=*up & 0x01;
4735 if (!half) continue;
6961 Unit half=(Unit)powers[DECDPUN]>>1; local
6963 if (*up>=half) {
6964 if (*up>half) *residue=7;
6967 else { /* <half */
7055 /* 5: rounding digit is exactly half-way */
/external/icu4c/i18n/
H A DdecNumber.c4755 Int half; /* half to add to lower unit */ local
4756 half=*up & 0x01;
4758 if (!half) continue;
6992 Unit half=(Unit)powers[DECDPUN]>>1; local
6994 if (*up>=half) {
6995 if (*up>half) *residue=7;
6998 else { /* <half */
7087 /* 5: rounding digit is exactly half-way */
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...

Completed in 889 milliseconds

123