HomeSort by relevance Sort by last modified time
    Searched defs:ps (Results 51 - 75 of 648) sorted by null

1 23 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PSourceTest.java 54 PSource.PSpecified ps = new PSource.PSpecified(p); local
57 + "should not cause the change of internal array.", p[0] == ps
69 PSource.PSpecified ps = new PSource.PSpecified(p); local
70 byte[] result = ps.getValue();
78 result[0] == ps.getValue()[0]);
101 PSource ps = new PSource(pSrcName) {}; local
103 + "in constructor", pSrcName.equals(ps.getAlgorithm()));
  /prebuilts/go/darwin-x86/test/interface/
embed2.go 31 var ps = &s var
53 check("ps.M()", ps.M())
67 i = ps
68 check("i = ps; i.M()", i.M())
69 check("i = ps; pi.M()", pi.M()) // ERROR "pointer to interface, not interface"
  /prebuilts/go/linux-x86/test/interface/
embed2.go 31 var ps = &s var
53 check("ps.M()", ps.M())
67 i = ps
68 check("i = ps; i.M()", i.M())
69 check("i = ps; pi.M()", pi.M()) // ERROR "pointer to interface, not interface"
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThrowableTest.java 76 PrintStream ps = new PrintStream(bao); local
80 e.printStackTrace(ps);
82 ps.flush();
89 e.printStackTrace(ps);
91 ps.close();
131 PrintStream ps = new PrintStream(bao); local
133 System.setErr(ps);
136 ps.close();
149 PrintStream ps = new PrintStream(bao); local
151 x.printStackTrace(ps);
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/
BitmapHandler.java 56 PrintStream ps = new PrintStream(exchange.getResponseBody()); local
57 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css"));
StaticHandler.java 43 PrintStream ps = new PrintStream(exchange.getResponseBody()); local
44 HtmlDoc doc = new HtmlDoc(ps, DocString.text("ahat"), DocString.uri("style.css"));
  /cts/hostsidetests/incident/src/com/android/server/cts/
ProcStatsProtoTest.java 69 ProcessStatsProto ps = dump.getProcstatsNow().getProcessStats(i); local
70 if (DEVICE_SIDE_TEST_PACKAGE.equals(ps.getProcess())) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
parsetok.c 132 parser_state *ps; local
136 if ((ps = PyParser_New(g, start)) == NULL) {
144 ps->p_flags |= CO_FUTURE_PRINT_FUNCTION;
147 ps->p_flags |= CO_FUTURE_UNICODE_LITERALS;
198 PyParser_AddToken(ps, (int)type, str, tok->lineno, col_offset,
209 n = ps->p_tree;
210 ps->p_tree = NULL;
216 *flags = ps->p_flags;
218 PyParser_Delete(ps);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
parsetok.c 141 parser_state *ps; local
147 if ((ps = PyParser_New(g, start)) == NULL) {
155 ps->p_flags |= CO_FUTURE_PRINT_FUNCTION;
158 ps->p_flags |= CO_FUTURE_UNICODE_LITERALS;
211 PyParser_AddToken(ps, (int)type, str, tok->lineno, col_offset,
222 n = ps->p_tree;
223 ps->p_tree = NULL;
229 *flags = ps->p_flags;
231 PyParser_Delete(ps);
  /external/annotation-tools/annotation-file-utilities/src/annotator/find/
AnnotationInsertion.java 76 Pair<String, String> ps = removePackage(result); local
77 String packageName = ps.a;
80 result = ps.b;
  /external/elfutils/src/
ranlib.c 142 size_t ps = sysconf (_SC_PAGESIZE); local
143 if (n > 2 * ps)
144 posix_madvise (rawfile + (off & ~(ps - 1)), n, POSIX_MADV_SEQUENTIAL);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
BasicDurationFormatterFactory.java 27 private BasicPeriodFormatterService ps; field in class:BasicDurationFormatterFactory
39 BasicDurationFormatterFactory(BasicPeriodFormatterService ps) {
40 this.ps = ps;
180 formatter = ps.newPeriodFormatterFactory()
194 builder = ps.newPeriodBuilderFactory()
  /external/iw/
hwsim.c 50 printf("HWSIM PS: %d\n", nla_get_u32(tb[HWSIM_TM_ATTR_PS]));
82 __u32 ps; local
88 ps = strtoul(argv[0], &end, 0);
97 NLA_PUT_U32(msg, HWSIM_TM_ATTR_PS, ps);
  /external/jemalloc/test/integration/
mallocx.c 172 void *ps[NITER]; local
175 ps[i] = NULL;
190 ps[i] = mallocx(sz, MALLOCX_ALIGN(alignment) |
192 assert_ptr_not_null(ps[i],
195 rsz = sallocx(ps[i], 0);
203 (void *)((uintptr_t)ps[i] & (alignment-1)),
205 " alignment=%zu, size=%zu", ps[i],
212 if (ps[i] != NULL) {
213 dallocx(ps[i], 0);
214 ps[i] = NULL
    [all...]
  /external/libpcap/
pcap-septel.c 45 static int septel_stats(pcap_t *p, struct pcap_stat *ps);
62 struct pcap_septel *ps = p->priv; local
160 ps->stat.ps_recv++;
243 static int septel_stats(pcap_t *p, struct pcap_stat *ps) {
248 *ps = handlep->stat;
  /external/ltp/testcases/kernel/mem/mtest06/
mmap2.c 147 unsigned long ps, pn; local
149 ps = sysconf(_SC_PAGESIZE);
151 return (ps / 1024) * pn / 1024;
  /external/ltp/testcases/kernel/mem/vma/
vma01.c 14 * an unpatched kernel, there is a single 6*ps VMA for the child
19 * On a patched kernel, there are two 3*ps VMAs like this:
68 static unsigned long ps; variable
77 ps = sysconf(_SC_PAGE_SIZE);
96 t = mmap(p, 3 * ps, PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
99 memset(t, 1, ps);
105 memset(t, 2, ps);
106 u = mmap(t + 3 * ps, 3 * ps, PROT_WRITE,
115 memset(u, 2, ps);
    [all...]
  /external/lzma/C/
Ppmd7Dec.c 141 CPpmd_State *ps[256], *s; local
161 ps[i] = s++;
173 CPpmd_State **pps = ps;
187 do { MASK(ps[--i]->Symbol) = 0; } while (i != 0);
  /external/mesa3d/src/gallium/drivers/i915/
i915_clear.c 229 struct pipe_surface *ps = framebuffer->cbufs[i]; local
231 if (ps) {
232 pipe->clear_render_target(pipe, ps, color, 0, 0, ps->width,
233 ps->height, true);
239 struct pipe_surface *ps = framebuffer->zsbuf; local
240 pipe->clear_depth_stencil(pipe, ps, buffers & PIPE_CLEAR_DEPTHSTENCIL,
242 0, 0, ps->width, ps->height, true);
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_psi_ops.cpp 93 int ps = !predsel ? 3 : predsel == sh.get_pred_sel(0) ? 1 : 2; local
97 if (val->def->subtype == NST_PSI && ps == 3) {
109 if ((ps_mask & ps) == ps) {
113 ps_mask |= ps;
  /external/mesa3d/src/gallium/drivers/swr/
swr_context.cpp 50 struct pipe_surface *ps; local
52 ps = CALLOC_STRUCT(pipe_surface);
53 if (ps) {
54 pipe_reference_init(&ps->reference, 1);
55 pipe_resource_reference(&ps->texture, pt);
56 ps->context = pipe;
57 ps->format = surf_tmpl->format;
60 ps->width = u_minify(pt->width0, surf_tmpl->u.tex.level);
61 ps->height = u_minify(pt->height0, surf_tmpl->u.tex.level);
62 ps->u.tex.level = surf_tmpl->u.tex.level
    [all...]
  /external/proguard/src/proguard/obfuscate/
MappingPrinter.java 46 private final PrintStream ps; field in class:MappingPrinter
64 this.ps = printStream;
75 ps.println(ClassUtil.externalClassName(name) +
93 ps.println(" " +
117 ps.print(" ");
119 ps.println(ClassUtil.externalFullMethodDescription(
143 // ps.print(lineNumberTableAttribute.getLowestLineNumber() + ":" +
156 ps.print(low + ":" + high + ":");
  /external/python/cpython2/Parser/
parsetok.c 132 parser_state *ps; local
136 if ((ps = PyParser_New(g, start)) == NULL) {
144 ps->p_flags |= CO_FUTURE_PRINT_FUNCTION;
147 ps->p_flags |= CO_FUTURE_UNICODE_LITERALS;
198 PyParser_AddToken(ps, (int)type, str, tok->lineno, col_offset,
209 n = ps->p_tree;
210 ps->p_tree = NULL;
216 *flags = ps->p_flags;
218 PyParser_Delete(ps);
  /external/python/cpython3/Parser/
parser.c 74 parser_state *ps; local
78 ps = (parser_state *)PyMem_MALLOC(sizeof(parser_state));
79 if (ps == NULL)
81 ps->p_grammar = g;
83 ps->p_flags = 0;
85 ps->p_tree = PyNode_New(start);
86 if (ps->p_tree == NULL) {
87 PyMem_FREE(ps);
90 s_reset(&ps->p_stack);
91 (void) s_push(&ps->p_stack, PyGrammar_FindDFA(g, start), ps->p_tree)
    [all...]
parsetok.c 187 parser_state *ps; local
191 if ((ps = PyParser_New(g, start)) == NULL) {
198 ps->p_flags |= CO_FUTURE_BARRY_AS_BDFL;
240 if (!(ps->p_flags & CO_FUTURE_BARRY_AS_BDFL) &&
246 else if ((ps->p_flags & CO_FUTURE_BARRY_AS_BDFL) &&
263 PyParser_AddToken(ps, (int)type, str,
275 n = ps->p_tree;
276 ps->p_tree = NULL;
312 *flags = ps->p_flags;
314 PyParser_Delete(ps);
    [all...]

Completed in 701 milliseconds

1 23 4 5 6 7 8 91011>>