Home
last modified time | relevance | path

Searched refs:bhi (Results 1 – 25 of 48) sorted by relevance

12

/external/python/cpython2/Lib/
Ddifflib.py348 def find_longest_match(self, alo, ahi, blo, bhi): argument
420 if j >= bhi:
435 while besti+bestsize < ahi and bestj+bestsize < bhi and \
451 while besti+bestsize < ahi and bestj+bestsize < bhi and \
490 alo, ahi, blo, bhi = queue.pop()
491 i, j, k = x = self.find_longest_match(alo, ahi, blo, bhi)
499 if i+k < ahi and j+k < bhi:
500 queue.append((i+k, ahi, j+k, bhi))
908 for tag, alo, ahi, blo, bhi in cruncher.get_opcodes():
910 g = self._fancy_replace(a, alo, ahi, b, blo, bhi)
[all …]
Dmhlib.py817 blo, bhi = self.pairs[i]
819 self.pairs[i-1:i+1] = [(alo, max(ahi, bhi))]
/external/python/cpython3/Lib/
Ddifflib.py336 def find_longest_match(self, alo, ahi, blo, bhi): argument
408 if j >= bhi:
423 while besti+bestsize < ahi and bestj+bestsize < bhi and \
439 while besti+bestsize < ahi and bestj+bestsize < bhi and \
478 alo, ahi, blo, bhi = queue.pop()
479 i, j, k = x = self.find_longest_match(alo, ahi, blo, bhi)
487 if i+k < ahi and j+k < bhi:
488 queue.append((i+k, ahi, j+k, bhi))
895 for tag, alo, ahi, blo, bhi in cruncher.get_opcodes():
897 g = self._fancy_replace(a, alo, ahi, b, blo, bhi)
[all …]
/external/u-boot/board/nokia/rx51/
Dlowlevel_init.S84 bhi copy_kernel_loop
116 bhi copy_uboot_start /* now coping u-boot code directly is safe */
152 bhi copy_code_loop
184 bhi copy_uboot_loop_right
/external/webrtc/webrtc/modules/audio_coding/codecs/cng/
Dwebrtc_cng.c247 int32_t blo, bhi; in WebRtcCng_Encode() local
313 bhi = ((blo >> 16) & 0xffff) in WebRtcCng_Encode()
315 blo = (blo & 0xffff) | ((bhi & 0xffff) << 16); in WebRtcCng_Encode()
317 *bptr = (((bhi >> 16) & 0x7fff) << 17) | ((uint32_t) blo >> 15); in WebRtcCng_Encode()
/external/u-boot/arch/arm/mach-at91/arm920t/
Dlowlevel_init.S44 bhi LoopOsc
66 bhi lock
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Thumb/
Dselect.ll66 ; CHECK: bhi
68 ; CHECK-EABI: bhi
/external/llvm/test/CodeGen/Thumb/
Dselect.ll66 ; CHECK: bhi
68 ; CHECK-EABI: bhi
/external/swiftshader/third_party/LLVM/test/CodeGen/Thumb/
Dselect.ll66 ; CHECK: bhi
68 ; CHECK-EABI: bhi
/external/llvm/test/MC/AArch64/
Darm64-condbr-without-dots.s13 bhi lbl
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/
Darm64-condbr-without-dots.s13 bhi lbl
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Disassembler/ARC/
Dbr.txt24 # CHECK: bhi 416
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DREADME-Thumb.txt103 bhi LBB1_4 @bb12.exitStub
139 bhi L2
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DREADME-Thumb.txt103 bhi LBB1_4 @bb12.exitStub
139 bhi L2
/external/llvm/lib/Target/ARM/
DREADME-Thumb.txt103 bhi LBB1_4 @bb12.exitStub
139 bhi L2
/external/python/cpython2/Doc/tools/
Dsusp-ignored.csv58 library/difflib,,:bhi,b[blo:bhi]
/external/libpng/contrib/libtests/
Dpngvalid.c7919 double rlo, rhi, glo, ghi, blo, bhi, graylo, grayhi; in image_transform_png_set_rgb_to_gray_mod() local
7950 b = blo = bhi = that->bluef; in image_transform_png_set_rgb_to_gray_mod()
7953 bhi += that->bluee; in image_transform_png_set_rgb_to_gray_mod()
7954 bhi = DU(bhi, calc_depth, 1/*round*/); in image_transform_png_set_rgb_to_gray_mod()
7974 bhi = DU(bhi, gamma_depth, 0/*truncate*/); in image_transform_png_set_rgb_to_gray_mod()
7988 bhi = DU(pow(bhi, power)+abse, calc_depth, 1); in image_transform_png_set_rgb_to_gray_mod()
8016 bhi * (data.blue_coefficient+ce), calc_depth, do_round); in image_transform_png_set_rgb_to_gray_mod()
8034 bhi = DU(bhi, gamma_depth, 0/*truncate*/); in image_transform_png_set_rgb_to_gray_mod()
8141 double rhi, ghi, bhi, grayhi; in image_transform_png_set_rgb_to_gray_mod() local
8148 bhi = b + be + in_qe; if (bhi > 1) bhi = 1; in image_transform_png_set_rgb_to_gray_mod()
[all …]
/external/llvm/test/MC/Lanai/
Dv11.s51 bhi 0x123454 label
91 bhi.r 0x5678
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/Lanai/
Dv11.s51 bhi 0x123454 label
91 bhi.r 0x5678
/external/python/cpython3/Doc/library/
Ddifflib.rst420 .. method:: find_longest_match(alo, ahi, blo, bhi)
422 Find longest matching block in ``a[alo:ahi]`` and ``b[blo:bhi]``.
426 <= i <= i+k <= ahi`` and ``blo <= j <= j+k <= bhi``. For all ``(i', j',
/external/python/cpython2/Doc/library/
Ddifflib.rst393 .. method:: find_longest_match(alo, ahi, blo, bhi)
395 Find longest matching block in ``a[alo:ahi]`` and ``b[blo:bhi]``.
399 <= i <= i+k <= ahi`` and ``blo <= j <= j+k <= bhi``. For all ``(i', j',
/external/python/cpython3/Doc/tools/
Dsusp-ignored.csv122 library/difflib,,:bhi,b[blo:bhi]
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/
Dund-Latn-t-und-orya.txt682 ଭିଶ୍ମା bhiśmā
1283 ଭିଏତନାମ୍ bhi'ētanām
/external/boringssl/ios-arm/crypto/fipsmodule/
Darmv4-mont.S229 bhi LNEON_8n
/external/boringssl/linux-arm/crypto/fipsmodule/
Darmv4-mont.S226 bhi .LNEON_8n

12