HomeSort by relevance Sort by last modified time
    Searched defs:nb (Results 1 - 25 of 212) sorted by null

1 2 3 4 5 6 7 8 9

  /external/libopus/silk/
LP_variable_cutoff.c 48 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_NB; nb++ )
    [all...]
  /external/ltp/lib/
pattern.c 42 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...]
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
NodeBuilderTest.java 73 Node.Builder<Integer> nb = m.apply(l.size()); local
74 nb.begin(l.size());
76 nb.accept(i);
78 nb.end();
80 Node<Integer> n = nb.build();
118 Node.Builder.OfInt nb = m.apply(l.size()); local
119 nb.begin(l.size());
121 nb.accept((int) i);
123 nb.end();
125 Node.OfInt n = nb.build()
168 Node.Builder.OfLong nb = m.apply(l.size()); local
218 Node.Builder.OfDouble nb = m.apply(l.size()); local
    [all...]
  /cts/tests/tests/shortcutmanager/throttling/src/android/content/pm/cts/shortcutmanager/throttling/
InlineReply.java 47 final Notification.Builder nb = new Builder(context) local
54 context.getSystemService(NotificationManager.class).notify(0, nb.build());
  /external/iproute2/tc/
em_nbyte.c 47 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/ltp/testcases/kernel/input/
input01.c 35 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)
    [all...]
input02.c 90 int nb; local
95 for (nb = 0; nb < NB_TEST; ++nb) {
input04.c 89 int nb; local
91 for (nb = 0; nb < NB_TEST; ++nb) {
input05.c 96 int nb; local
98 for (nb = 0; nb < NB_TEST; ++nb) {
input03.c 95 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;
input06.c 130 int nb; local
134 nb = 0;
152 nb++;
161 return (nb > 0 && check_bound(i, rd)
  /external/valgrind/none/tests/
shorts.c 4 typedef struct { short ot; short ob; short nt; short nb; } Stuff; member in struct:__anon36364
11 short newbot = w->nb;
33 st.nb = 31;
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachineLoopRanges.cpp 87 unsigned nb = b->getNumber(); local
88 if (na < nb)
90 if (na > nb)
  /dalvik/dx/src/com/android/dx/ssa/
DomFront.java 169 SsaBasicBlock nb = nodes.get(b); local
171 BitSet pred = nb.getPredecessors();
  /external/libopus/celt/dump_modes/
dump_modes.c 317 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/xmlrpcpp/test/
FileClient.cpp 36 long nb = infile.tellg(); local
39 char* b = new char[nb+1];
40 infile.read(b, nb);
41 b[nb] = 0;
  /frameworks/base/services/tests/notification/src/com/android/server/notification/
GroupHelperTest.java 61 Notification.Builder nb = new Notification.Builder(getContext(), "test_channel_id") local
65 nb.setGroup(groupKey);
67 return new StatusBarNotification(pkg, pkg, id, tag, 0, 0, nb.build(), user, null,
  /libcore/ojluni/src/main/java/sun/nio/fs/
LinuxUserDefinedFileAttributeView.java 166 NativeBuffer nb; local
169 nb = null;
173 nb = NativeBuffers.getNativeBuffer(rem);
174 address = nb.address();
190 if (nb != null) {
209 if (nb != null)
210 nb.release();
224 NativeBuffer nb; local
227 nb = null;
231 nb = NativeBuffers.getNativeBuffer(rem)
    [all...]
  /developers/build/prebuilts/gradle/NotificationChannels/Application/src/main/java/com/example/android/notificationchannels/
MainActivity.java 69 Notification.Builder nb = null; local
72 nb = noti.getNotification1(title, getString(R.string.primary1_body));
76 nb = noti.getNotification1(title, getString(R.string.primary2_body));
80 nb = noti.getNotification2(title, getString(R.string.secondary1_body));
84 nb = noti.getNotification2(title, getString(R.string.secondary2_body));
87 if (nb != null) {
88 noti.notify(id, nb);
  /developers/samples/android/notification/NotificationChannels/Application/src/main/java/com/example/android/notificationchannels/
MainActivity.java 69 Notification.Builder nb = null; local
72 nb = noti.getNotification1(title, getString(R.string.primary1_body));
76 nb = noti.getNotification1(title, getString(R.string.primary2_body));
80 nb = noti.getNotification2(title, getString(R.string.secondary1_body));
84 nb = noti.getNotification2(title, getString(R.string.secondary2_body));
87 if (nb != null) {
88 noti.notify(id, nb);
  /external/clang/test/SemaCXX/
copy-assignment.cpp 54 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/drm_gralloc/
gralloc_drm_nouveau.c 178 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->bo
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/blas/
level2_impl.h 259 int nb = std::min(*n,(*m)+(*ku)); local
260 for(int j=0; j<nb; ++j)
  /external/libutf/
rune.c 316 int nb, c; local
318 nb = 0;
322 nb++;
324 nb += 2;
326 nb += 3;
328 nb += 4;
330 return nb;
  /external/libxml2/doc/
search.php 233 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) {

Completed in 730 milliseconds

1 2 3 4 5 6 7 8 9