HomeSort by relevance Sort by last modified time
    Searched refs:bp (Results 351 - 375 of 993) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/test/intltest/
rbbitst.cpp 780 int32_t getSrcLine(int32_t bp);
781 int32_t getExpectedBreak(int32_t bp);
782 int32_t getSrcCol(int32_t bp);
857 int32_t TestParams::getSrcLine(int32_t bp) {
858 if (bp >= textMap->size()) {
859 bp = textMap->size() - 1;
862 for(; bp >= 0 ; --bp) {
864 i = textMap->elementAti(bp);
873 int32_t TestParams::getExpectedBreak(int32_t bp) {
903 int32_t bp; local
    [all...]
  /external/boringssl/src/crypto/fipsmodule/bn/asm/
armv8-mont.pl 61 $bp="x2"; # const BN_ULONG *bp,
84 ldr $m0,[$bp],#8 // bp[0]
92 mul $lo0,$hi0,$m0 // ap[0]*bp[0]
95 mul $alo,$aj,$m0 // ap[1]*bp[0]
127 mul $alo,$aj,$m0 // ap[j]*bp[0]
155 ldr $m0,[$bp],#8 // bp[i]
160 mul $lo0,$hi0,$m0 // ap[0]*bp[i
    [all...]
  /external/curl/lib/
content_encoding.c 622 brotli_params *bp = (brotli_params *) &writer->params; local
629 bp->br = BrotliDecoderCreateInstance(NULL, NULL, NULL);
630 return bp->br? CURLE_OK: CURLE_OUT_OF_MEMORY;
637 brotli_params *bp = (brotli_params *) &writer->params; local
645 if(!bp->br)
656 r = BrotliDecoderDecompressStream(bp->br,
667 BrotliDecoderDestroyInstance(bp->br);
668 bp->br = NULL;
673 result = brotli_map_error(BrotliDecoderGetErrorCode(bp->br));
684 brotli_params *bp = (brotli_params *) &writer->params local
    [all...]
  /build/soong/ui/build/
finder.go 59 IncludeFiles: []string{"Android.mk", "Android.bp", "Blueprints", "CleanSpec.mk", "TEST_MAPPING"},
96 androidBps := f.FindNamedAt(".", "Android.bp")
99 ctx.Fatalf("No Android.bp found")
101 err = dumpListToFile(androidBps, filepath.Join(dumpDir, "Android.bp.list"))
  /external/boringssl/src/crypto/bio/
fd.c 246 static int fd_gets(BIO *bp, char *buf, int size) {
254 while (ptr < end && fd_read(bp, ptr, 1) > 0 && ptr[0] != '\n') {
  /external/compiler-rt/lib/asan/
asan_malloc_win.cc 131 return asan_malloc_usable_size(ptr, pc, bp);
200 return asan_malloc_usable_size(lpMem, pc, bp);
  /external/skia/gn/
gn_to_bp.py 8 # Generate Android.bp for Skia from GN configuration.
19 # First we start off with a template for Android.bp,
21 bp = string.Template('''// This file is autogenerated by gn_to_bp.py.
272 # OK! We have everything to fill in Android.bp...
273 with open('Android.bp', 'w') as f:
274 print >>f, bp.substitute({
  /external/skqp/gn/
gn_to_bp.py 8 # Generate Android.bp for Skia from GN configuration.
19 # First we start off with a template for Android.bp,
21 bp = string.Template('''// This file is autogenerated by gn_to_bp.py.
267 # OK! We have everything to fill in Android.bp...
268 with open('Android.bp', 'w') as f:
269 print >>f, bp.substitute({
  /external/syslinux/core/fs/xfs/
xfs_sb.h 176 #define XFS_BUF_TO_SBP(bp) ((xfs_dsb_t *)((bp)->b_addr))
  /external/tcpdump/
print-chdlc.c 56 const u_char *bp = p; local
114 return ndo->ndo_snapend - bp;
print-icmp.c 330 icmp_print(netdissect_options *ndo, const u_char *bp, u_int plen, const u_char *bp2,
348 dp = (const struct icmp *)bp;
349 ext_dp = (const struct icmp_ext_t *)bp;
562 if (ND_TTEST2(*bp, plen)) {
580 bp += 8;
582 ip = (const struct ip *)bp;
583 ndo->ndo_snaplen = ndo->ndo_snapend - bp;
586 ip_print(ndo, bp, EXTRACT_16BITS(&ip->ip_len));
print-pppoe.c 94 pppoe_print(netdissect_options *ndo, register const u_char *bp, u_int length)
105 pppoe_packet = bp;
  /prebuilts/go/darwin-x86/src/go/internal/gcimporter/
gcimporter.go 45 bp, _ := build.Import(path, srcDir, build.FindOnly|build.AllowBinary)
46 if bp.PkgObj == "" {
50 noext = strings.TrimSuffix(bp.PkgObj, ".a")
51 id = bp.ImportPath
  /prebuilts/go/linux-x86/src/go/internal/gcimporter/
gcimporter.go 45 bp, _ := build.Import(path, srcDir, build.FindOnly|build.AllowBinary)
46 if bp.PkgObj == "" {
50 noext = strings.TrimSuffix(bp.PkgObj, ".a")
51 id = bp.ImportPath
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
local_ssa_elim_pass.cpp 209 ir::BasicBlock* bp = *bi; local
210 for (auto ii = bp->begin(); ii != bp->end(); ++ii) {
414 ir::BasicBlock* bp = *bi; local
415 const uint32_t label = bp->id();
416 for (auto ii = bp->begin(); ii != bp->end(); ++ii) {
460 bp->ForEachSuccessorLabel([&header,this](uint32_t succ) {
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
naked.d 27 44: 66 87 dd [ ]*xchg %bx,%bp
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_pow.c 64 bp[] = {1.0, 1.5,}, variable
222 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
223 v = one/(ax+bp[k]);
227 /* t_h=ax+bp[k] High */
230 t_l = ax - (t_h-bp[k]);
e_powf.c 23 bp[] = {1.0, 1.5,}, variable
164 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
165 v = one/(ax+bp[k]);
170 /* t_h=ax+bp[k] High */
173 t_l = ax - (t_h-bp[k]);
  /device/google/contexthub/firmware/lib/libm/
ef_pow.c 27 bp[] = {1.0, 1.5,}, variable
166 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
167 v = one/(ax+bp[k]);
172 /* t_h=ax+bp[k] High */
174 t_l = ax - (t_h-bp[k]);
  /device/linaro/bootloader/edk2/DuetPkg/BootSector/
st16_64.S 67 movw $0x7c00,%bp
102 movw VolId(%bp), %ax
104 movw VolId+2(%bp), %ax
171 addw ReservedSectors(%bp), %ax # ax = FatSectorNumber = ReservedSectors + (FatOffset >> BLOCK_OFFSET)
200 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
202 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
231 addl LBAOffsetForBootSector(%bp), %eax # Add LBAOffsetForBootSector to Start LBA
232 addl HiddenSectors(%bp), %eax # Add HiddenSectors to Start LBA
236 movw $0x7bfc,%bp # bp = 0x7bfc
    [all...]
st32_64.S 82 movw $0x7c00,%bp
117 movw VolId(%bp), %ax
119 movw VolId+2(%bp), %ax
186 addw ReservedSectors(%bp), %ax # ax = FatSectorNumber = ReservedSectors + (FatOffset >> BLOCK_OFFSET)
215 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
217 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
246 addl LBAOffsetForBootSector(%bp), %eax # Add LBAOffsetForBootSector to Start LBA
247 addl HiddenSectors(%bp), %eax # Add HiddenSectors to Start LBA
251 movw $0x7bfc,%bp # bp = 0x7bfc
    [all...]
start64.S 67 movw $0x7c00,%bp
102 movw VolId(%bp), %ax
104 movw VolId+2(%bp), %ax
173 addw ReservedSectors(%bp), %ax # ax = FatSectorNumber = ReservedSectors + (FatOffset >> BLOCK_OFFSET)
207 movb SectorsPerCluster(%bp), %bl # bx = SectorsPerCluster
209 addw (%bp), %ax # ax = FirstClusterLBA + (StartCluster-2)*SectorsPerCluster
238 addl LBAOffsetForBootSector(%bp), %eax # Add LBAOffsetForBootSector to Start LBA
239 addl HiddenSectors(%bp), %eax # Add HiddenSectors to Start LBA
243 movw $0x7bfc,%bp # bp = 0x7bfc
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
e_pow.c 85 bp[] = {1.0, 1.5,}, variable
239 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
240 v = one/(ax+bp[k]);
244 /* t_h=ax+bp[k] High */
247 t_l = ax - (t_h-bp[k]);
  /external/boringssl/src/crypto/bn_extra/
convert.c 338 int BN_print(BIO *bp, const BIGNUM *a) {
342 if (a->neg && BIO_write(bp, "-", 1) != 1) {
346 if (BN_is_zero(a) && BIO_write(bp, "0", 1) != 1) {
355 if (BIO_write(bp, &hextable[v], 1) != 1) {
  /external/fdlibm/
e_pow.c 68 bp[] = {1.0, 1.5,}, variable
224 u = ax-bp[k]; /* bp[0]=1.0, bp[1]=1.5 */
225 v = one/(ax+bp[k]);
229 /* t_h=ax+bp[k] High */
232 t_l = ax - (t_h-bp[k]);

Completed in 1419 milliseconds

<<11121314151617181920>>