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

12345

/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/ltp/testcases/kernel/fs/doio/
H A Dpattern.c42 int nb, ncmp, nleft; local
58 nb = patlen - patshift;
59 if (nleft < nb) {
62 if (memcmp(cp, pat + patshift, nb))
65 nleft -= nb;
66 cp += nb;
70 nb = patshift;
71 if (nleft < nb) {
74 if (memcmp(cp, pat, nb))
77 nleft -= nb;
[all...]
/external/ltp/testcases/kernel/input/
H A Dinput02.c90 int nb; local
95 for (nb = 0; nb < NB_TEST; ++nb) {
H A Dinput04.c89 int nb; local
91 for (nb = 0; nb < NB_TEST; ++nb) {
H A Dinput05.c96 int nb; local
98 for (nb = 0; nb < NB_TEST; ++nb) {
H A Dinput01.c35 static int verify_data(struct input_event *iev, int nb);
90 int nb; local
92 for (nb = 0; nb < NB_TEST; ++nb) {
100 int nb, rd; local
104 nb = 0;
106 while (nb < NB_TEST * 3) {
118 if (verify_data(&iev[i], nb++))
126 static int verify_data(struct input_event *iev, int nb) argument
[all...]
H A Dinput03.c95 int nb; local
97 for (nb = 0; nb < NB_TEST; ++nb) {
109 int nb, rd, i, pressed = 0; local
112 nb = 0;
114 while (nb < NB_TEST) {
131 nb++;
136 return nb != NB_TEST;
/external/ltp/testcases/kernel/syscalls/getrandom/
H A Dgetrandom02.c37 static int check_content(unsigned char *buf, int nb) argument
44 max = 6 + nb * 0.2;
46 for (i = 0; i < nb; i++) {
51 for (i = 0; i < nb; i++) {
/external/python/cpython2/Demo/tkinter/ttk/
H A Dnotebook_closebtn.py68 nb = ttk.Notebook(width=200, height=200, style="ButtonNotebook") variable
69 nb.pressed_index = None
70 f1 = Tkinter.Frame(nb, background="red")
71 f2 = Tkinter.Frame(nb, background="green")
72 f3 = Tkinter.Frame(nb, background="blue")
73 nb.add(f1, text='Red', padding=3)
74 nb.add(f2, text='Green', padding=3)
75 nb.add(f3, text='Blue', padding=3)
76 nb.pack(expand=1, fill='both')
/external/valgrind/none/tests/
H A Dshorts.c4 typedef struct { short ot; short ob; short nt; short nb; } Stuff; member in struct:__anon29827
11 short newbot = w->nb;
33 st.nb = 31;
/external/iproute2/tc/
H A Dem_nbyte.c47 struct tcf_em_nbyte nb = {}; local
93 nb.len = needle->len;
94 nb.layer = (__u8) layer;
95 nb.off = (__u16) offset;
98 addraw_l(n, MAX_MSG, &nb, sizeof(nb));
109 struct tcf_em_nbyte *nb = data; local
112 if (data_len < sizeof(*nb)) {
117 if (data_len < sizeof(*nb) + nb
[all...]
/external/pdfium/third_party/agg23/
H A Dagg_path_storage.cpp53 void path_storage::allocate_block(unsigned nb) argument
55 if(nb >= m_max_blocks) {
69 m_coord_blocks[nb] =
73 m_cmd_blocks[nb] =
74 (unsigned char*)(m_coord_blocks[nb] + block_size * 2);
/external/xmlrpcpp/test/
H A DFileClient.cpp36 long nb = infile.tellg(); local
39 char* b = new char[nb+1];
40 infile.read(b, nb);
41 b[nb] = 0;
/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/libopus/celt/dump_modes/
H A Ddump_modes.c317 int i, nb; local
325 nb = (argc-1)/2;
326 m = malloc(nb*sizeof(CELTMode*));
327 for (i=0;i<nb;i++)
342 dump_modes_arch_init(m, nb);
344 dump_modes(file, m, nb);
349 for (i=0;i<nb;i++)
/external/libxml2/doc/
H A Dsearch.php233 list($rb,$tb,$mb,$nb,$db) = $b;
449 $nb = count($results); variable
450 echo "<h3 align='center'>Found $nb results for query $querystr</h3>\n";
453 if ($nb > 0) {
/external/ltp/testcases/kernel/syscalls/pread/
H A Dpread02.c98 size_t nb; member in struct:test_case_t
131 nbytes = Test_cases[i].nb;
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DMachineLoopRanges.cpp87 unsigned nb = b->getNumber(); local
88 if (na < nb)
90 if (na > nb)
/external/syslinux/core/lwip/src/netif/ppp/
H A Dvj.c132 * packet. This assumes that nb and comp are not null and that the first
427 vj_uncompress_uncomp(struct pbuf *nb, struct vjcompress *comp) argument
433 ip = (struct ip_hdr *)nb->payload;
436 || hlen + sizeof(struct tcp_hdr) > nb->len
438 > nb->len
441 IPH_PROTO(ip), hlen, nb->len));
464 vj_uncompress_tcp(struct pbuf **nb, struct vjcompress *comp) argument
470 struct pbuf *n0 = *nb;
640 *nb = n0;
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/
H A Dg722_enc_dec.h86 int nb; member in struct:__anon30716::__anon30717
124 int nb; member in struct:__anon30718::__anon30719
/external/boringssl/src/crypto/fipsmodule/bn/
H A Dmul.c74 const BN_ULONG *b, size_t nb) {
75 if (na < nb) {
77 na = nb;
78 nb = itmp;
84 if (nb == 0) {
91 if (--nb == 0) {
95 if (--nb == 0) {
99 if (--nb == 0) {
103 if (--nb == 0) {
73 bn_mul_normal(BN_ULONG *r, const BN_ULONG *a, size_t na, const BN_ULONG *b, size_t nb) argument
/external/boringssl/src/crypto/poly1305/
H A Dpoly1305.c250 uint32_t b, nb; local
294 nb = ~b;
295 state->h0 = (state->h0 & nb) | (g0 & b);
296 state->h1 = (state->h1 & nb) | (g1 & b);
297 state->h2 = (state->h2 & nb) | (g2 & b);
298 state->h3 = (state->h3 & nb) | (g3 & b);
299 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/libvpx/libvpx/vp9/decoder/
H A Dvp9_detokenize.c76 int ctx, const int16_t *scan, const int16_t *nb,
138 ctx = get_coef_context(nb, token_cache, c);
211 ctx = get_coef_context(nb, token_cache, c);
74 decode_coefs(const MACROBLOCKD *xd, PLANE_TYPE type, tran_low_t *dqcoeff, TX_SIZE tx_size, const int16_t *dq, int ctx, const int16_t *scan, const int16_t *nb, vpx_reader *r) argument

Completed in 651 milliseconds

12345