HomeSort by relevance Sort by last modified time
    Searched defs:bp (Results 76 - 100 of 271) sorted by null

1 2 34 5 6 7 8 91011

  /development/ndk/platforms/android-21/arch-x86_64/include/asm/
sigcontext32.h 75 unsigned int bp; member in struct:sigcontext_ia32
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
FieldLUDecompositionImpl.java 275 final T[] bp = (T[]) Array.newInstance(field.getZero().getClass(), m); local
279 bp[row] = b[pivot[row]];
284 final T bpCol = bp[col];
286 bp[i] = bp[i].subtract(bpCol.multiply(lu[i][col]));
292 bp[col] = bp[col].divide(lu[col][col]);
293 final T bpCol = bp[col];
295 bp[i] = bp[i].subtract(bpCol.multiply(lu[i][col]))
321 final T[] bp = (T[]) Array.newInstance(field.getZero().getClass(), m); local
380 final T[][] bp = (T[][]) Array.newInstance(field.getZero().getClass(), new int[] { m, nColB }); local
    [all...]
LUDecompositionImpl.java 273 final double[] bp = new double[m]; local
277 bp[row] = b[pivot[row]];
282 final double bpCol = bp[col];
284 bp[i] -= bpCol * lu[i][col];
290 bp[col] /= lu[col][col];
291 final double bpCol = bp[col];
293 bp[i] -= bpCol * lu[i][col];
297 return bp;
317 final double[] bp = new double[m]; local
321 bp[row] = b.getEntry(pivot[row])
375 final double[][] bp = new double[m][nColB]; local
    [all...]
  /external/clang/test/Sema/
init.c 56 static short *bp = &b; // expected-error {{initializer element is not a compile-time constant}} local
58 return bp;
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_posix.cc 381 uptr pc, sp, bp; local
382 GetPcSpBp(context, &pc, &sp, &bp);
383 return SignalContext(context, addr, pc, sp, bp);
  /external/dhcpcd/
if-bsd.c 206 char *bp = rtm.buffer; local
212 memcpy(bp, &(_su), l); \
213 bp += l; \
268 rtm.hdr.rtm_msglen = l = bp - (char *)&rtm;
showlease.c 201 uint8_t *bp = NULL; local
213 if (!bp)
214 bp = dhcp_opt_buffer;
215 memcpy(bp, op, ol);
216 bp += ol;
256 if (bp) {
257 memcpy(bp, op, ol);
  /external/e2fsprogs/lib/ext2fs/
blkmap64_ba.c 44 ext2fs_ba_private bp; local
54 retval = ext2fs_get_mem(sizeof (ext2fs_ba_private), &bp);
60 retval = ext2fs_get_mem(size, &bp->bitarray);
62 ext2fs_free_mem(&bp);
63 bp = 0;
66 bitmap->private = (void *) bp;
73 ext2fs_ba_private bp; variable
81 bp = (ext2fs_ba_private) bitmap->private;
83 memset(bp->bitarray, 0, size);
90 ext2fs_ba_private bp = (ext2fs_ba_private) bitmap->private local
126 ext2fs_ba_private bp = (ext2fs_ba_private) bmap->private; local
166 ext2fs_ba_private bp = (ext2fs_ba_private) bitmap->private; local
174 ext2fs_ba_private bp = (ext2fs_ba_private) bitmap->private; local
182 ext2fs_ba_private bp = (ext2fs_ba_private) bitmap->private; local
191 ext2fs_ba_private bp = (ext2fs_ba_private) bitmap->private; local
202 ext2fs_ba_private bp = (ext2fs_ba_private) bitmap->private; local
213 ext2fs_ba_private bp = (ext2fs_ba_private) bitmap->private; local
287 ext2fs_ba_private bp = (ext2fs_ba_private) bitmap->private; local
297 ext2fs_ba_private bp = (ext2fs_ba_private) bitmap->private; local
306 ext2fs_ba_private bp = (ext2fs_ba_private) bitmap->private; local
323 ext2fs_ba_private bp = (ext2fs_ba_private)bitmap->private; local
    [all...]
  /external/icu/icu4c/source/i18n/
collationsets.cpp 220 const UnicodeString *bp = NULL; // Base prefix. local
232 if(bp == NULL) {
234 bp = &basePrefixes.getString();
236 bp = &none;
239 if(tp == &none && bp == &none) { break; }
240 int32_t cmp = tp->compare(*bp);
246 // bp occurs in the base but not in the tailoring.
247 addPrefix(baseData, *bp, c, (uint32_t)basePrefixes.getValue());
248 bp = NULL;
254 bp = NULL
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
TailoredSet.java 235 String bp = null; // Base prefix. local
250 if (bp == null) {
253 bp = be.chars.toString();
256 bp = none;
259 if (tp == none && bp == none) {
262 int cmp = tp.compareTo(bp);
270 // bp occurs in the base but not in the tailoring.
272 addPrefix(baseData, bp, c, be.value);
274 bp = null;
281 tp = bp = null
    [all...]
  /external/kernel-headers/original/uapi/asm-x86/asm/
sigcontext32.h 59 unsigned int bp; member in struct:sigcontext_ia32
  /external/libmtp/examples/
sendtr.c 66 char *cp, *bp; local
82 bp = buffer;
83 while ( bp != cp ) {
84 if ( *bp != ' ' && *bp != '\t' ) return bp;
85 bp++;
88 if (! required) return bp;
  /external/libpcap/
pcap-win32.c 191 register u_char *bp, *ep; local
216 bp = p->Packet->Buffer;
219 bp = p->bp;
224 #define bhp ((struct bpf_hdr *)bp)
225 ep = bp + cc;
243 p->bp = bp;
244 p->cc = ep - bp;
248 if (bp >= ep
    [all...]
  /external/libunwind/src/ia64/
unwind_decoder.h 92 unsigned char *bp = *dpp; local
96 byte = *bp++;
102 *dpp = bp;
  /external/libvorbis/lib/
block.c 546 long bp=_ve_envelope_search(v); local
547 if(bp==-1){
557 v->nW=bp;
  /external/lldb/examples/functions/
main.cpp 216 SBBreakpoint bp = target.BreakpointCreateByRegex (".", module_list, comp_unit_list); local
218 const size_t num_locations = bp.GetNumLocations();
221 SBBreakpointLocation bp_loc = bp.GetLocationAtIndex(bp_loc_idx);
  /external/lldb/source/Commands/
CommandObjectBreakpointCommand.cpp 555 Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); local
560 bp_options = bp->GetOptions();
564 BreakpointLocationSP bp_loc_sp(bp->FindLocationByID (cur_bp_id.GetLocationID()));
730 Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); local
733 BreakpointLocationSP bp_loc_sp (bp->FindLocationByID (cur_bp_id.GetLocationID()));
747 bp->ClearCallback();
828 Breakpoint *bp = target->GetBreakpointByID (cur_bp_id.GetBreakpointID()).get(); local
    [all...]
  /external/lldb/source/Target/
ThreadPlanCallFunction.cpp 409 Breakpoint &bp = bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint(); local
411 log->Printf ("ThreadPlanCallFunction::PlanExplainsStop: hit breakpoint %d while calling function", bp.GetID());
413 if (!bp.IsInternal())
  /external/ltrace/
breakpoints.c 63 breakpoint_on_hit(struct breakpoint *bp, struct process *proc)
65 assert(bp != NULL);
66 if (bp->cbs != NULL && bp->cbs->on_hit != NULL)
67 (bp->cbs->on_hit)(bp, proc);
71 breakpoint_on_continue(struct breakpoint *bp, struct process *proc)
73 assert(bp != NULL);
74 if (bp->cbs != NULL && bp->cbs->on_continue != NULL
258 struct breakpoint *bp = malloc(sizeof *bp); local
278 struct breakpoint *bp = malloc(sizeof *bp); local
341 struct breakpoint *bp = NULL; local
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsgmt.c 429 cmsTACestimator* bp = (cmsTACestimator*) Cargo; local
436 cmsDoTransform(bp->hRoundTrip, In, RoundTrip, 1);
439 for (Sum=0, i=0; i < bp ->nOutputChans; i++)
443 if (Sum > bp ->MaxTAC) {
445 bp ->MaxTAC = Sum;
447 for (i=0; i < bp ->nOutputChans; i++) {
448 bp ->MaxInput[i] = In[i];
461 cmsTACestimator bp; local
475 bp.nOutputChans = T_CHANNELS(dwFormatter);
476 bp.MaxTAC = 0; // Initial TAC is
    [all...]
  /external/regex-re2/re2/
nfa.cc 465 const char* bp = context.begin(); local
502 fprintf(stderr, "%c[%#x/%d/%d]:", p > text.end() ? '$' : p == bp ? '^' : c, flag, isword, wasword);
onepass.cc 248 const char* bp = text.begin(); local
252 matchcap[0] = bp;
253 cap[0] = bp;
255 for (p = bp; p < ep; p++) {
  /external/tcpdump/
print-bootp.c 66 register const struct bootp *bp; local
70 bp = (const struct bootp *)cp;
71 TCHECK(bp->bp_op);
74 tok2str(bootp_op_values, "unknown (0x%02x)", bp->bp_op));
76 if (bp->bp_htype == 1 && bp->bp_hlen == 6 && bp->bp_op == BOOTPREQUEST) {
77 TCHECK2(bp->bp_chaddr[0], 6);
78 printf(" from %s", etheraddr_string(bp->bp_chaddr));
86 TCHECK(bp->bp_secs)
    [all...]
  /external/toybox/toys/pending/
dd.c 57 unsigned char *buff, *bp; member in struct:io
165 in.bp = out.bp = in.buff;
187 if ((n = read(in.fd, in.bp, in.sz)) < 0) {
206 out.bp = out.buff;
208 nw = writeall(out.fd, out.bp, ((all)? out.count : out.sz));
214 out.bp += nw;
218 if (out.count) memmove(out.buff, out.bp, out.count); //move remainder to front
241 in.bp = in.buff + in.count;
242 if (toys.optflags & C_SYNC) memset(in.bp, 0, in.sz)
    [all...]
  /external/zopfli/src/zopflipng/
zopflipng_lib.cc 47 unsigned char bp = 0; local
59 ZopfliDeflate(&options, 2 /* Dynamic */, 1, in, insize, &bp, out, outsize);
60 bp = 0;
63 in, insize, &bp, &out2, &outsize2);
76 ZopfliDeflate(&options, 2 /* Dynamic */, 1, in, insize, &bp, out, outsize);

Completed in 1972 milliseconds

1 2 34 5 6 7 8 91011