Searched refs:lo (Results 176 - 200 of 630) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/re2/re2/
H A Dunicode.py67 lo = _UInt(a[0])
69 if lo < hi:
70 return range(lo, hi + 1)
H A Dmake_unicode_casefold.py134 for lo, hi, delta in foldranges:
135 print "\t{ %d, %d, %s }," % (lo, hi, delta)
/external/llvm/test/MC/Mips/
H A Delf-tls.s32 addiu $2, $2, %lo(_gp_disp)
64 addiu $2, $2, %lo(_gp_disp)
96 addiu $2, $2, %lo(_gp_disp)
H A Delf-N64.s38 daddiu $gp, $1, %lo(%neg(%gp_rel(main)))
H A Delf-gprel-32-64.s48 daddiu $1, $2, %lo(%neg(%gp_rel(test)))
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_pack.c237 * This differs to lp_build_interleave2 as that function would do the following (for lo):
247 * So interleave-lo would result in:
366 * lo = l0 __ l1 __ l2 __.. __ ln __
381 LLVMValueRef lo,
431 res = lp_build_intrinsic_binary(builder, intrinsic, intr_vec_type, lo, hi);
451 lo, i*nlen*2, nlen);
453 lo, i*nlen*2 + nlen, nlen);
480 lo = LLVMBuildBitCast(builder, lo, dst_vec_type, "");
485 res = LLVMBuildShuffleVector(builder, lo, h
378 lp_build_pack2(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, LLVMValueRef lo, LLVMValueRef hi) argument
499 lp_build_packs2(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, LLVMValueRef lo, LLVMValueRef hi) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_endian.h165 Uint32 hi, lo; local
168 lo = SDL_static_cast(Uint32, x & 0xFFFFFFFF);
171 x = SDL_Swap32(lo);
/external/regex-re2/re2/
H A Dunicode.py67 lo = _UInt(a[0])
69 if lo < hi:
70 return range(lo, hi + 1)
H A Dmake_unicode_casefold.py134 for lo, hi, delta in foldranges:
135 print "\t{ %d, %d, %s }," % (lo, hi, delta)
/external/tremolo/Tremolo/
H A Dmisc.h75 ogg_int32_t lo; member in struct:magic::__anon31579
86 ogg_int32_t lo; member in struct:magic::__anon31580
105 return ((ogg_uint32_t)(magic.halves.lo)>>15) | ((magic.halves.hi)<<17);
/external/llvm/test/MC/Sparc/
H A Dsparc-relocations.s20 ! CHECK: or %g1, %lo(sym), %g3 ! encoding: [0x86,0x10,0b011000AA,A]
21 ! CHECK-NEXT ! fixup A - offset: 0, value: %lo(sym), kind: fixup_sparc_lo10
22 or %g1, %lo(sym), %g3
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DloadimageSSE2.cpp43 __m128i lo = _mm_unpacklo_epi16(zeroWide, sourceData); local
46 _mm_store_si128(reinterpret_cast<__m128i*>(&dest[x]), lo); local
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dtools_common.h52 #define LITERALU64(hi, lo) ((((uint64_t)hi) << 32) | lo)
/external/libsepol/src/
H A DMakefile17 LOBJS= $(patsubst %.c,%.lo,$(wildcard *.c))
37 %.lo: %.c
/external/libvorbis/lib/
H A Dpsy.c269 long i,j,lo=-99,hi=1; local
314 for(;lo+vi->noisewindowlomin<i &&
315 toBARK(rate/(2*n)*lo)<(bark-vi->noisewindowlo);lo++);
320 p->bark[i]=((lo-1)<<16)+(hi-1);
559 int lo, hi; local
605 lo = b[i] >> 16;
606 if( lo>=0 ) break;
609 tN = N[hi] + N[-lo];
610 tX = X[hi] - X[-lo];
[all...]
/external/qemu/telephony/
H A Dgsm.c131 int lo = gsm_hexchar_to_int(hex[1]); local
133 if (hi < 0 || lo < 0)
136 return ( (hi << 4) | lo );
143 int lo = gsm_hex2_to_byte(hex+2); local
145 if (hi < 0 || lo < 0)
148 return ((hi << 8) | lo);
155 int lo = gsm_hexchar_to_int0(hex[1]); local
157 return (byte_t)( (hi << 4) | lo );
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DStylesheetRoot.java1141 int lo = lo0;
1151 while( lo <= hi )
1155 while( (lo < hi0) && (((ElemTemplateElement) v.elementAt(lo)).compareTo(midNode) < 0) )
1157 ++lo;
1167 if( lo <= hi )
1169 ElemTemplateElement node = (ElemTemplateElement) v.elementAt(lo);
1170 v.setElementAt(v.elementAt(hi), lo);
1173 ++lo;
1187 if( lo < hi
[all...]
/external/chromium-trace/trace-viewer/src/base/
H A Dsorted_array_utils.js59 * mapWidthFn the width. Intersection is lower-inclusive, e.g. [lo,lo+w).
149 var lo = mapLoFn(ary[i]);
150 if (lo >= hiVal)
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dext_lang_enc.cc518 int lo = 0; local
520 while (lo < hi) {
521 int mid = (lo + hi) >> 1;
525 lo = mid + 1;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
H A DMakefile48 -rm -f *.lo
/external/chromium_org/third_party/skia/src/animator/
H A DSkTime.cpp65 int64_t s = ((int64_t)wide.hi << 32) | wide.lo;
/external/iproute2/testsuite/
H A DMakefile2 DEV := lo
/external/llvm/test/MC/ARM/
H A Dthumb-only-conditionals.s49 itt lo
52 @ CHECK: itt lo
/external/mesa3d/src/gallium/state_trackers/xa/
H A DMakefile48 -rm -f *.lo
/external/openssl/crypto/modes/asm/
H A Dghashv8-armx.S79 .byte 0x86,0x0e,0xa8,0xf2 @ pmull q0,q12,q3 @ H.lo·Xi.lo
83 .byte 0xa2,0x2e,0xaa,0xf2 @ pmull q1,q13,q9 @ (H.lo+H.hi)·(Xi.lo+Xi.hi)

Completed in 1115 milliseconds

1234567891011>>