Searched defs:bs (Results 26 - 50 of 195) sorted by relevance

12345678

/external/syslinux/gpxe/src/interface/efi/
H A Defi_timer.c54 EFI_BOOT_SERVICES *bs = efi_systab->BootServices; local
57 if ( ( efirc = bs->Stall ( usecs ) ) != 0 ) {
H A Defi_umalloc.c45 EFI_BOOT_SERVICES *bs = efi_systab->BootServices; local
57 if ( ( efirc = bs->AllocatePages ( AllocateAnyPages,
85 if ( ( efirc = bs->FreePages ( phys_addr, old_pages ) ) != 0 ){
/external/syslinux/libfat/
H A Dopen.c29 struct fat_bootsect *bs; local
42 bs = libfat_get_sector(fs, 0);
43 if (!bs)
46 if (read16(&bs->bsBytesPerSec) != LIBFAT_SECTOR_SIZE)
50 if ((uint8_t) (1 << i) == read8(&bs->bsSecPerClust))
58 sectors = read16(&bs->bsSectors);
60 sectors = read32(&bs->bsHugeSectors);
64 fs->fat = read16(&bs->bsResSectors);
65 fatsize = read16(&bs->bsFATsecs);
67 fatsize = read32(&bs
[all...]
/external/testng/src/test/java/test/hook/
H A DBaseConfigurable.java20 public void bs() { method in class:BaseConfigurable
H A DConfigurableSuccessWithListenerTest.java20 public void bs() { method in class:ConfigurableSuccessWithListenerTest
/external/aac/libAACdec/src/
H A Dchannelinfo.cpp108 AAC_DECODER_ERROR IcsReadMaxSfb(HANDLE_FDK_BITSTREAM bs, CIcsInfo *pIcsInfo, argument
120 pIcsInfo->MaxSfBands = (UCHAR)FDKreadBits(bs, nbits);
129 AAC_DECODER_ERROR IcsRead(HANDLE_FDK_BITSTREAM bs, CIcsInfo *pIcsInfo, argument
141 FDKreadBits(bs, 1);
143 pIcsInfo->WindowSequence = (BLOCK_TYPE)FDKreadBits(bs, 2);
144 pIcsInfo->WindowShape = (UCHAR)FDKreadBits(bs, 1);
159 ErrorStatus = IcsReadMaxSfb(bs, pIcsInfo, pSamplingRateInfo);
169 if ((UCHAR)FDKreadBits(bs, 1) != 0) /* UCHAR PredictorDataPresent */
182 pIcsInfo->ScaleFactorGrouping = (UCHAR)FDKreadBits(bs, 7);
H A Daacdec_drc.cpp355 HANDLE_FDK_BITSTREAM bs) {
361 if (FDKreadBits(bs, 1)) {
367 while (FDKreadBits(bs, 1)) {
369 if (FDKreadBits(bs, 1)) {
386 \bs Handle of FDK bitstream
390 int aacDecoder_drcMarkPayload(HANDLE_AAC_DRC self, HANDLE_FDK_BITSTREAM bs,
399 bsStartPos = FDKgetValidBits(bs);
405 if (FDKreadBits(bs, 1)) { /* pce_tag_present */
406 FDKreadBits(bs, 8); /* pce_instance_tag + drc_tag_reserved_bits */
410 if (FDKreadBits(bs,
354 parseExcludedChannels(UINT *excludedChnsMask, HANDLE_FDK_BITSTREAM bs) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
H A DPack.java8 public static int bigEndianToInt(byte[] bs, int off) argument
10 int n = bs[ off] << 24;
11 n |= (bs[++off] & 0xff) << 16;
12 n |= (bs[++off] & 0xff) << 8;
13 n |= (bs[++off] & 0xff);
17 public static void bigEndianToInt(byte[] bs, int off, int[] ns) argument
21 ns[i] = bigEndianToInt(bs, off);
28 byte[] bs = new byte[4];
29 intToBigEndian(n, bs, 0);
30 return bs;
33 intToBigEndian(int n, byte[] bs, int off) argument
48 intToBigEndian(int[] ns, byte[] bs, int off) argument
57 bigEndianToLong(byte[] bs, int off) argument
64 bigEndianToLong(byte[] bs, int off, long[] ns) argument
80 longToBigEndian(long n, byte[] bs, int off) argument
93 longToBigEndian(long[] ns, byte[] bs, int off) argument
102 littleEndianToInt(byte[] bs, int off) argument
111 littleEndianToInt(byte[] bs, int off, int[] ns) argument
120 littleEndianToInt(byte[] bs, int bOff, int[] ns, int nOff, int count) argument
136 intToLittleEndian(int n, byte[] bs, int off) argument
151 intToLittleEndian(int[] ns, byte[] bs, int off) argument
160 littleEndianToLong(byte[] bs, int off) argument
167 littleEndianToLong(byte[] bs, int off, long[] ns) argument
183 longToLittleEndian(long n, byte[] bs, int off) argument
196 longToLittleEndian(long[] ns, byte[] bs, int off) argument
[all...]
/external/fio/engines/
H A Dglusterfs.c176 unsigned int bs; local
185 bs = td->o.max_bs[DDIR_WRITE];
186 if (bs > left)
187 bs = left;
189 fill_io_buffer(td, b, bs, bs);
191 r = glfs_write(g->fd, b, bs, 0);
/external/fio/profiles/
H A Dtiobench.c8 static unsigned int bs = 4096; variable
29 unsigned int bs; member in struct:tiobench_options
50 .off1 = offsetof(struct tiobench_options, bs),
102 sprintf(bs_idx, "bs=%u", bs);
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_pipe_blend.c100 struct svga_blend_state *bs)
108 bs->id = util_bitmask_add(svga->blend_object_id_bm);
111 perRT[i].blendEnable = bs->rt[i].blend_enable;
112 perRT[i].srcBlend = bs->rt[i].srcblend;
113 perRT[i].destBlend = bs->rt[i].dstblend;
114 perRT[i].blendOp = bs->rt[i].blendeq;
115 perRT[i].srcBlendAlpha = bs->rt[i].srcblend_alpha;
116 perRT[i].destBlendAlpha = bs->rt[i].dstblend_alpha;
117 perRT[i].blendOpAlpha = bs->rt[i].blendeq_alpha;
118 perRT[i].renderTargetWriteMask = bs
99 define_blend_state_object(struct svga_context *svga, struct svga_blend_state *bs) argument
360 struct svga_blend_state *bs = local
[all...]
/external/mesa3d/src/intel/vulkan/
H A DgenX_gpu_memcpy.c67 unsigned bs = 16; local
68 bs = gcd_pow2_u64(bs, src_offset);
69 bs = gcd_pow2_u64(bs, dst_offset);
70 bs = gcd_pow2_u64(bs, size);
73 switch (bs) {
98 .BufferPitch = bs,
115 .Component0Control = (bs >
[all...]
/external/boringssl/src/crypto/x509/
H A Dt_req.c174 ASN1_BIT_STRING *bs = at->value.asn1_string; local
191 if (BIO_write(bio, (char *)bs->data, bs->length) != bs->length) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DDESedeWrapEngine.java344 private static byte[] reverse(byte[] bs) argument
346 byte[] result = new byte[bs.length];
347 for (int i = 0; i < bs.length; i++)
349 result[i] = bs[bs.length - (i + 1)];
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DPack.java8 public static short bigEndianToShort(byte[] bs, int off) argument
10 int n = (bs[ off] & 0xff) << 8;
11 n |= (bs[++off] & 0xff);
15 public static int bigEndianToInt(byte[] bs, int off) argument
17 int n = bs[ off] << 24;
18 n |= (bs[++off] & 0xff) << 16;
19 n |= (bs[++off] & 0xff) << 8;
20 n |= (bs[++off] & 0xff);
24 public static void bigEndianToInt(byte[] bs, int off, int[] ns) argument
28 ns[i] = bigEndianToInt(bs, of
40 intToBigEndian(int n, byte[] bs, int off) argument
55 intToBigEndian(int[] ns, byte[] bs, int off) argument
64 bigEndianToLong(byte[] bs, int off) argument
71 bigEndianToLong(byte[] bs, int off, long[] ns) argument
87 longToBigEndian(long n, byte[] bs, int off) argument
100 longToBigEndian(long[] ns, byte[] bs, int off) argument
109 littleEndianToShort(byte[] bs, int off) argument
116 littleEndianToInt(byte[] bs, int off) argument
125 littleEndianToInt(byte[] bs, int off, int[] ns) argument
134 littleEndianToInt(byte[] bs, int bOff, int[] ns, int nOff, int count) argument
143 littleEndianToInt(byte[] bs, int off, int count) argument
161 shortToLittleEndian(short n, byte[] bs, int off) argument
174 intToLittleEndian(int n, byte[] bs, int off) argument
189 intToLittleEndian(int[] ns, byte[] bs, int off) argument
198 littleEndianToLong(byte[] bs, int off) argument
205 littleEndianToLong(byte[] bs, int off, long[] ns) argument
221 longToLittleEndian(long n, byte[] bs, int off) argument
234 longToLittleEndian(long[] ns, byte[] bs, int off) argument
[all...]
/external/icu/icu4c/source/test/perf/usetperf/
H A Dusetperf.cpp50 BitSet bs; member in class:CmdOp
56 bs.clearAll();
59 bs.set((int32_t) cp);
74 if (bs.get((int32_t) cp)) {
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format_etc.c28 const unsigned bw = 4, bh = 4, bs = 8, comps = 4; local
52 src += bs;
/external/skia/bench/
H A DBlurBench.cpp38 BlurBench(SkScalar rad, SkBlurStyle bs, uint32_t flags = 0) { argument
40 fStyle = bs;
42 const char* name = rad > 0 ? gStyleName[bs] : "none";
/external/skia/src/core/
H A DSk4x4f.h48 inline Sk4x4f Sk4x4f::Transpose(const uint8_t bs[16]) { argument
49 auto b16 = _mm_loadu_si128((const __m128i*)bs);
68 inline void Sk4x4f::transpose(uint8_t bs[16]) const {
73 _mm_storeu_si128((__m128i*)bs, _mm_or_si128(A, _mm_or_si128(B, _mm_or_si128(G, R))));
91 inline Sk4x4f Sk4x4f::Transpose(const uint8_t bs[16]) { argument
92 auto b16 = vreinterpretq_u32_u8(vld1q_u8(bs));
105 inline void Sk4x4f::transpose(uint8_t bs[16]) const {
110 vst1q_u8(bs, vreinterpretq_u8_u32(vorrq_u32(A, vorrq_u32(B, vorrq_u32(G, R)))));
128 inline Sk4x4f Sk4x4f::Transpose(const uint8_t bs[16]) { argument
130 { (float)bs[
[all...]
/external/skqp/bench/
H A DBlurBench.cpp38 BlurBench(SkScalar rad, SkBlurStyle bs, uint32_t flags = 0) { argument
40 fStyle = bs;
42 const char* name = rad > 0 ? gStyleName[bs] : "none";
/external/skqp/src/core/
H A DSk4x4f.h48 inline Sk4x4f Sk4x4f::Transpose(const uint8_t bs[16]) { argument
49 auto b16 = _mm_loadu_si128((const __m128i*)bs);
68 inline void Sk4x4f::transpose(uint8_t bs[16]) const {
73 _mm_storeu_si128((__m128i*)bs, _mm_or_si128(A, _mm_or_si128(B, _mm_or_si128(G, R))));
91 inline Sk4x4f Sk4x4f::Transpose(const uint8_t bs[16]) { argument
92 auto b16 = vreinterpretq_u32_u8(vld1q_u8(bs));
105 inline void Sk4x4f::transpose(uint8_t bs[16]) const {
110 vst1q_u8(bs, vreinterpretq_u8_u32(vorrq_u32(A, vorrq_u32(B, vorrq_u32(G, R)))));
128 inline Sk4x4f Sk4x4f::Transpose(const uint8_t bs[16]) { argument
130 { (float)bs[
[all...]
/external/syslinux/libinstaller/
H A Dfs.c34 void syslinux_make_bootsect(void *bs, int fs_type) argument
37 struct fat_boot_sector *bootsect = bs;
44 struct ntfs_boot_sector *bootsect = bs;
53 static const char *check_fat_bootsect(const void *bs, int *fs_type) argument
56 const struct fat_boot_sector *sectbuf = bs;
133 static const char *check_ntfs_bootsect(const void *bs, int *fs_type) argument
135 const struct ntfs_boot_sector *sectbuf = bs;
148 const char *syslinux_check_bootsect(const void *bs, int *fs_type) argument
152 const struct fat_boot_sector *sectbuf = bs;
168 if (ntfs_check_zero_fields((struct ntfs_boot_sector *)bs))
[all...]
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
H A Dgrpc_util.cc119 ByteSource bs; local
120 bs.buffer = &src;
121 return dst->ParseFrom(&bs).ok() && bs.ok;
/external/toybox/toys/pending/
H A Ddd.c16 usage: dd [if=FILE] [of=FILE] [ibs=N] [obs=N] [bs=N] [count=N] [skip=N]
22 bs=N Read and write N bytes at a time
109 unsigned long long bs = 0; local
119 if (strstarteq(&arg, "bs")) bs = atolx_range(arg, 1, LONG_MAX);
146 if (bs) TT.in.sz = TT.out.sz = bs;
152 /* for bs=, in/out is done as it is. so only in.sz is enough.
155 TT.in.buff = TT.out.buff = xmalloc(TT.in.sz + (bs ? 0 : TT.out.sz));
190 if (TT.out.fd!=1 && (bs
[all...]
/external/aac/libMpegTPDec/src/
H A Dtpdec_adts.cpp118 if (pAdts->bs.protection_absent) {
130 if (pAdts->bs.protection_absent == 0) {
139 if (pAdts->bs.protection_absent) return TRANSPORTDEC_OK;
176 STRUCT_ADTS_BS bs; local
186 bs.mpeg_id = FDKreadBits(hBs, Adts_Length_Id);
187 bs.layer = FDKreadBits(hBs, Adts_Length_Layer);
188 bs.protection_absent = FDKreadBits(hBs, Adts_Length_ProtectionAbsent);
189 bs.profile = FDKreadBits(hBs, Adts_Length_Profile);
190 bs.sample_freq_index = FDKreadBits(hBs, Adts_Length_SamplingFrequencyIndex);
191 bs
[all...]

Completed in 3108 milliseconds

12345678