HomeSort by relevance Sort by last modified time
    Searched refs:pb (Results 1 - 25 of 549) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p10.cpp 12 B* pb = new B; local
13 A* pa = pb;
15 pb->f(); // expected-error{{too few arguments to function call, expected 1, have 0; did you mean 'A::f'?}}
  /external/libutf/
runestrstr.c 27 const Rune *p, *pa, *pb; local
36 for(pb=s2;; pb++) {
37 c = *pb;
  /external/nanopb-c/examples/network_server/
common.h 4 #include <pb.h>
Makefile 13 rm -f server client fileproto.pb.c fileproto.pb.h
15 %: %.c common.c fileproto.pb.c
  /external/clang/test/FixIt/
typo-location-bugs.cpp 16 B* pb = new B; local
17 A* pa = pb;
19 pb->f(); // expected-error{{too few arguments to function call, expected 1, have 0; did you mean 'A::f'?}}
  /external/e2fsprogs/lib/ext2fs/
bmove.c 43 struct process_block_struct *pb; local
48 pb = (struct process_block_struct *) priv_data;
55 if (ext2fs_test_block_bitmap2(pb->reserve, block)) {
60 pb->error = EXT2_ET_BLOCK_ALLOC_FAIL;
63 } while (ext2fs_test_block_bitmap2(pb->reserve, block) ||
64 ext2fs_test_block_bitmap2(pb->alloc_map, block));
66 retval = io_channel_read_blk64(fs->io, orig, 1, pb->buf);
68 pb->error = retval;
71 retval = io_channel_write_blk64(fs->io, block, 1, pb->buf);
73 pb->error = retval
104 struct process_block_struct pb; local
    [all...]
  /cts/hostsidetests/theme/app/src/android/theme/app/modifiers/
ProgressBarModifier.java 27 ProgressBar pb = (ProgressBar) view; local
28 pb.setInterpolator(new ZeroInterpolator());
29 return pb;
  /external/nanopb-c/examples/using_union_messages/
Makefile 16 rm -f encode unionproto.pb.h unionproto.pb.c
18 %: %.c unionproto.pb.c
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.sat4j.pb_2.2.0.v20100429.jar 
  /external/clang/test/CodeGen/
types.c 19 typedef struct MpegEncContext {int pb;} MpegEncContext; member in struct:MpegEncContext
20 static void test2(void) {MpegEncContext s; s.pb;}
  /external/nanopb-c/tools/
set_version.sh 5 # It sets the version number in pb.h and generator/nanopb_generator.py.
8 sed -i -e 's/#define\s*NANOPB_VERSION\s*.*/#define NANOPB_VERSION '$1'/' pb.h
  /external/nanopb-c/examples/using_double_on_avr/
Makefile 13 rm -f test_conversions encode_double decode_double doubleproto.pb.c doubleproto.pb.h
18 %: %.c double_conversion.c doubleproto.pb.c
  /external/nanopb-c/extra/
nanopb.mk 2 # .pb.c and .pb.h files out of .proto, as well the path to nanopb core.
34 # Rule for building .pb.c and .pb.h
35 %.pb.c %.pb.h: %.proto $(wildcard %.options)
  /external/compiler-rt/test/msan/
tsearch.cc 7 int compare(const void *pa, const void *pb) {
9 int b = *(const int *)pb;
  /external/nanopb-c/examples/simple/
Makefile 10 CSRC += simple.pb.c # The compiled protocol definition
19 simple.pb.c: simple.proto
  /bionic/libc/upstream-freebsd/lib/libc/stdlib/
qsort.c 113 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
141 pa = pb = (char *)a + es;
145 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
148 swap(pa, pb);
151 pb += es;
153 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
161 if (pb > pc)
163 swap(pb, pc);
165 pb += es
    [all...]
  /art/test/063-process-manager/src/
Main.java 17 ProcessBuilder pb = new ProcessBuilder("sleep", "5"); local
18 Process proc = pb.start();
  /external/chromium_org/third_party/lzma_sdk/
LzmaLib.h 26 0 1 lc, lp and pb in encoded form.
39 -1 for any from: level, loc, lp, pb, fb, numThreads
76 pb - The number of pos bits (low bits of current position).
78 The pb switch is intended for periodical data when the period is equal 2^pb.
104 int pb, /* 0 <= pb <= 4, default = 2 */
LzmaLib.c 21 int pb, /* 0 <= pb <= 4, default = 2 */
32 props.pb = pb;
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaLib.h 27 0 1 lc, lp and pb in encoded form.
40 -1 for any from: level, loc, lp, pb, fb, numThreads
77 pb - The number of pos bits (low bits of current position).
79 The pb switch is intended for periodical data when the period is equal 2^pb.
105 int pb, /* 0 <= pb <= 4, default = 2 */
LzmaLib.c 22 int pb, /* 0 <= pb <= 4, default = 2 */
33 props.pb = pb;
  /external/lzma/C/
LzmaLib.h 26 0 1 lc, lp and pb in encoded form.
39 -1 for any from: level, loc, lp, pb, fb, numThreads
76 pb - The number of pos bits (low bits of current position).
78 The pb switch is intended for periodical data when the period is equal 2^pb.
104 int pb, /* 0 <= pb <= 4, default = 2 */
LzmaLib.c 21 int pb, /* 0 <= pb <= 4, default = 2 */
32 props.pb = pb;
  /external/libcxx/test/
runtests.py 26 self.pb = progressbar.ProgressBar(maxval=maxval)
28 self.pb = None
31 if self.pb:
32 self.pb.start()
35 if self.pb:
36 self.pb.update(value)
39 if self.pb:
40 self.pb.finish()
99 pb = ProgressBarWrapper(maxval=len(tests))
102 pb.start(
    [all...]
  /external/libpcap/
pcap-bpf.c 237 * pb->nonblock so we don't call select(2) if the pcap handle is in non-
244 struct pcap_bpf *pb = p->priv; local
246 if (pb->zerocopy)
247 return (pb->nonblock);
256 struct pcap_bpf *pb = p->priv; local
258 if (pb->zerocopy) {
259 pb->nonblock = nonblock;
279 struct pcap_bpf *pb = p->priv; local
282 if (pb->zbuffer == pb->zbuf2 || pb->zbuffer == NULL)
317 struct pcap_bpf *pb = p->priv; local
415 struct pcap_bpf *pb = p->priv; local
826 struct pcap_bpf *pb = p->priv; local
1277 struct pcap_bpf *pb = p->priv; local
1481 struct pcap_bpf *pb = p->priv; local
2294 struct pcap_bpf *pb = p->priv; local
2609 struct pcap_bpf *pb = p->priv; local
    [all...]

Completed in 328 milliseconds

1 2 3 4 5 6 7 8 91011>>