Searched defs:nb (Results 1 - 25 of 65) sorted by relevance

123

/external/tcpdump/
H A Dprint-netbios.c49 netbios_print(struct p8022Hdr *nb, u_int length) argument
56 if (nb->flags == UI) {
62 if ((u_char *)(nb + 1) > snapend) {
68 netbios_decode(nb, (u_char *)nb + p8022Size, length - p8022Size);
/external/libopus/silk/
H A DLP_variable_cutoff.c48 opus_int nb, na; local
54 for( nb = 0; nb < TRANSITION_NB; nb++ ) {
55 B_Q28[ nb ] = silk_SMLAWB(
56 silk_Transition_LP_B_Q28[ ind ][ nb ],
57 silk_Transition_LP_B_Q28[ ind + 1 ][ nb ] -
58 silk_Transition_LP_B_Q28[ ind ][ nb ],
71 for( nb = 0; nb < TRANSITION_N
[all...]
/external/linux-tools-perf/src/tools/perf/arch/powerpc/util/
H A Dheader.c24 int nb; local
28 nb = scnprintf(buffer, sz, "%lu,%lu$", PVR_VER(pvr), PVR_REV(pvr));
32 buffer[nb-1] = '\0';
/external/linux-tools-perf/src/tools/perf/arch/x86/util/
H A Dheader.c27 int nb; local
51 nb = scnprintf(buffer, sz, "%s,%u,%u,%u$", vendor, family, model, step);
55 buffer[nb-1] = '\0';
/external/valgrind/none/tests/
H A Dshorts.c4 typedef struct { short ot; short ob; short nt; short nb; } Stuff; member in struct:__anon16773
11 short newbot = w->nb;
33 st.nb = 31;
/external/iproute2/tc/
H A Dem_nbyte.c47 struct tcf_em_nbyte nb; local
49 memset(&nb, 0, sizeof(nb));
95 nb.len = needle->len;
96 nb.layer = (__u8) layer;
97 nb.off = (__u16) offset;
100 addraw_l(n, MAX_MSG, &nb, sizeof(nb));
111 struct tcf_em_nbyte *nb = data; local
114 if (data_len < sizeof(*nb)) {
[all...]
/external/pdfium/core/src/fxge/agg/agg23/
H A Dfx_agg_path_storage.cpp50 void path_storage::allocate_block(unsigned nb) argument
52 if(nb >= m_max_blocks) {
70 m_coord_blocks[nb] =
74 m_cmd_blocks[nb] =
75 (unsigned char*)(m_coord_blocks[nb] + block_size * 2);
H A Dagg_path_storage.h95 unsigned nb = idx >> block_shift; local
96 const FX_FLOAT* pv = m_coord_blocks[nb] + ((idx & block_mask) << 1);
99 return m_cmd_blocks[nb][idx & block_mask];
114 void allocate_block(unsigned nb);
147 unsigned nb = m_total_vertices >> block_shift; local
148 if(nb >= m_total_blocks) {
149 allocate_block(nb);
151 *xy_ptr = m_coord_blocks[nb] + ((m_total_vertices & block_mask) << 1);
152 return m_cmd_blocks[nb] + (m_total_vertices & block_mask);
H A Dagg_array.h259 const T* block(unsigned nb) const
261 return m_blocks[nb];
264 void allocate_block(unsigned nb);
287 unsigned nb = (size + block_mask) >> block_shift; local
288 while(m_num_blocks > nb) {
339 void pod_deque<T, S>::allocate_block(unsigned nb) argument
341 if(nb >= m_max_blocks) {
352 m_blocks[nb] = FX_Alloc(T, block_size);
358 unsigned nb = m_size >> block_shift; local
359 if(nb >
[all...]
H A Dfx_agg_rasterizer_scanline_aa.cpp435 unsigned nb = m_num_cells >> cell_block_shift; local
437 while(nb--) {
460 nb = m_num_cells >> cell_block_shift;
461 while(nb--) {
/external/v8/src/compiler/
H A Dvalue-numbering-reducer-unittest.cc40 Node* nb = graph()->NewNode(&kOp0); local
42 Node* n2 = graph()->NewNode(&kOp0, nb);
/external/clang/test/SemaCXX/
H A Dcopy-assignment.cpp54 B b, nb; local
75 nb = b;
76 nb = constB; // expected-error{{no viable overloaded '='}}
77 nb = convertibleToB; // expected-error{{no viable overloaded '='}}
78 nb = convertibleToBref;
79 nb = convertibleToConstB; // expected-error{{no viable overloaded '='}}
80 nb = convertibleToConstBref; // expected-error{{no viable overloaded '='}}
/external/libutf/
H A Drune.c316 int nb, c; local
318 nb = 0;
322 nb++;
324 nb += 2;
326 nb += 3;
328 nb += 4;
330 return nb;
/external/libxml2/doc/
H A Dsearch.php232 list($rb,$tb,$mb,$nb,$db) = $b;
448 $nb = count($results); variable
449 echo "<h3 align='center'>Found $nb results for query $query</h3>\n";
452 if ($nb > 0) {
/external/boringssl/src/crypto/bn/
H A Dmul.c65 void bn_mul_normal(BN_ULONG *r, BN_ULONG *a, int na, BN_ULONG *b, int nb) { argument
68 if (na < nb) {
73 na = nb;
74 nb = itmp;
80 if (nb <= 0) {
88 if (--nb <= 0) {
92 if (--nb <= 0) {
96 if (--nb <= 0) {
100 if (--nb <= 0) {
/external/boringssl/src/crypto/poly1305/
H A Dpoly1305.c263 uint32_t b, nb; local
307 nb = ~b;
308 state->h0 = (state->h0 & nb) | (g0 & b);
309 state->h1 = (state->h1 & nb) | (g1 & b);
310 state->h2 = (state->h2 & nb) | (g2 & b);
311 state->h3 = (state->h3 & nb) | (g3 & b);
312 state->h4 = (state->h4 & nb) | (g4 & b);
/external/drm_gralloc/
H A Dgralloc_drm_nouveau.c178 struct nouveau_buffer *nb; local
187 nb = calloc(1, sizeof(*nb));
188 if (!nb)
192 if (nouveau_bo_handle_ref(info->dev, handle->name, &nb->bo)) {
195 free(nb);
206 nb->bo = alloc_bo(info, width, height,
208 if (!nb->bo) {
211 free(nb);
215 if (nouveau_bo_handle_get(nb
237 struct nouveau_buffer *nb = (struct nouveau_buffer *) bo; local
246 struct nouveau_buffer *nb = (struct nouveau_buffer *) bo; local
265 struct nouveau_buffer *nb = (struct nouveau_buffer *) bo; local
[all...]
/external/eigen/bench/btl/libs/eigen3/
H A Deigen3_interface.hh220 DenseIndex nb; local
222 internal::partial_lu_inplace(C,piv,nb);
/external/eigen/blas/
H A Dlevel2_impl.h241 int nb = std::min(*n,(*m)+(*ku)); local
242 for(int j=0; j<nb; ++j)
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_detokenize.c43 ctx = get_coef_context(nb, token_cache, c); \
55 int ctx, const int16_t *scan, const int16_t *nb,
93 ctx = get_coef_context(nb, token_cache, c);
53 decode_coefs(VP9_COMMON *cm, const MACROBLOCKD *xd, PLANE_TYPE type, int16_t *dqcoeff, TX_SIZE tx_size, const int16_t *dq, int ctx, const int16_t *scan, const int16_t *nb, vp9_reader *r) argument
/external/openssh/
H A Dpoly1305.c39 uint32_t b, nb; local
144 nb = ~b;
145 h0 = (h0 & nb) | (g0 & b);
146 h1 = (h1 & nb) | (g1 & b);
147 h2 = (h2 & nb) | (g2 & b);
148 h3 = (h3 & nb) | (g3 & b);
149 h4 = (h4 & nb) | (g4 & b);
/external/elfutils/src/src/
H A Dstrings.c545 size_t nb = (size_t) n + ntrailer; local
546 if (nb >= min_len_bytes)
549 nb &= ~(bytes_per_char - 1);
551 process_chunk (fname, buf, from + nb, nb, &unprinted);
557 memmove (buf, buf + nb - to_keep, to_keep);
559 from += nb;
562 ntrailer = nb;
/external/libxml2/
H A Dhash.c862 int i, nb; local
878 nb = table->nbElems;
882 if (nb != table->nbElems) {
/external/ppp/pppd/
H A Dccp.c1077 int len, clen, type, nb; local
1216 ho->deflate_size = nb = DEFLATE_SIZE(p[2]);
1219 || nb > ao->deflate_size || nb < DEFLATE_MIN_WORKS) {
1240 if (res < 0 || nb == DEFLATE_MIN_WORKS || dont_nak) {
1246 --nb;
1247 p[2] = DEFLATE_MAKE_OPT(nb);
1259 ho->bsd_bits = nb = BSD_NBITS(p[2]);
1261 || nb > ao->bsd_bits || nb < BSD_MIN_BIT
[all...]
H A Dutils.c838 ssize_t nb; local
842 nb = read(fd, ptr, count - done);
843 if (nb < 0) {
848 if (nb == 0)
850 done += nb;
851 ptr += nb;

Completed in 851 milliseconds

123