Searched refs:pb (Results 1 - 25 of 144) sorted by path

123456

/macosx-10.10/BerkeleyDB-21/db/clib/
H A Dqsort.c107 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
132 pa = pb = (char *)a + es;
136 while (pb <= pc && (r = cmp(pb, a)) <= 0) {
139 swap(pa, pb);
142 pb += es;
144 while (pb <= pc && (r = cmp(pc, a)) >= 0) {
152 if (pb > pc)
154 swap(pb, pc);
156 pb
[all...]
/macosx-10.10/BootCache-109/
H A Dlibrary.c260 BC_merge_playlists(struct BC_playlist* pa, const struct BC_playlist* pb) argument
263 if ((pa->p_mounts = reallocf(pa->p_mounts, sizeof(*pa->p_mounts) * (pa->p_nmounts + pb->p_nmounts))) == NULL)
267 for (mount_idx_b = 0; mount_idx_b < pb->p_nmounts; mount_idx_b++) {
269 if (0 == uuid_compare(pa->p_mounts[mount_idx_a].pm_uuid, pb->p_mounts[mount_idx_b].pm_uuid)) {
278 uuid_copy(pa->p_mounts[mount_idx_a].pm_uuid, pb->p_mounts[mount_idx_b].pm_uuid);
281 pa->p_mounts[mount_idx_a].pm_nentries += pb->p_mounts[mount_idx_b].pm_nentries;
284 if ((pa->p_entries = reallocf(pa->p_entries, sizeof(*pa->p_entries) * (pa->p_nentries + pb->p_nentries))) == NULL)
286 memcpy(pa->p_entries + pa->p_nentries, pb->p_entries, pb->p_nentries * sizeof(*pb
[all...]
/macosx-10.10/CPANInternal-159.1/IO-Socket-SSL/
H A DSSL.pm861 ( my $pb = Net::SSLeay::peek( $ssl,$pending )) ne '' ) {
862 $buf .= $pb
/macosx-10.10/Heimdal-398.1.2/lib/asn1/
H A Dcheck-gen.c78 Principal *pb = b; local
81 COMPARE_STRING(pa,pb,realm);
82 COMPARE_INTEGER(pa,pb,name.name_type);
83 COMPARE_INTEGER(pa,pb,name.name_string.len);
86 COMPARE_STRING(pa,pb,name.name_string.val[i]);
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/
H A Dbn_s_mp_mul_digs.c25 int res, pa, pb, ix, iy; local
49 pb = MIN (b->used, digs - ix);
62 for (iy = 0; iy < pb; iy++) {
H A Dbn_s_mp_mul_high_digs.c25 int res, pa, pb, ix, iy; local
44 pb = b->used;
58 for (iy = digs - ix; iy < pb; iy++) {
H A Dtommath.tex2536 \hspace{3mm}5.2 $pb \leftarrow \mbox{min}(b.used, digs - ix)$ \\
2537 \hspace{3mm}5.3 If $pb < 1$ then goto step 6. \\
2538 \hspace{3mm}5.4 for $iy$ from $0$ to $pb - 1$ do \\
2542 \hspace{3mm}5.5 if $ix + pb < digs$ then do \\
2543 \hspace{6mm}5.5.1 $t_{ix + pb} \leftarrow u$ \\
2567 All of step 5 is the infamous $O(n^2)$ multiplication loop slightly modified to only produce upto $digs$ digits of output. The $pb$ variable
2568 is given the count of digits to read from $b$ inside the nested loop. If $pb \le 1$ then no more output digits can be produced and the algorithm
2569 will exit the loop. The best way to think of the loops are as a series of $pb \times 1$ multiplications. That is, in each pass of the
2599 At step 5.5 the nested loop is finished and any carry that was left over should be forwarded. The carry does not have to be added to the $ix+pb$'th
2600 digit since that digit is assumed to be zero at this point. However, if $ix + pb \g
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/mtest/
H A Dmpi.c3268 mp_digit *pa, *pb; local
3284 pb = DIGITS(b);
3286 w += *pa + *pb++;
3325 mp_digit *pa, *pb; local
3335 pb = DIGITS(b);
3338 w = (RADIX + *pa) - w - *pb++;
3429 mp_digit *pa, *pb, *pt, *pbt; local
3442 pb = DIGITS(b);
3443 for(ix = 0; ix < ub; ++ix, ++pb) {
3444 if(*pb
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hx509/
H A Dicp.c85 pctbRequest.pb = rk_UNCONST(heim_data_get_bytes(pkcs10));
92 pctbAttribs.pb = rk_UNCONST(heim_data_get_bytes(c_attrs_utf16));
114 certificate = heim_data_create(pctbEncodedCert.pb, pctbEncodedCert.cb);
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Dqsort.c119 char *pa, *pb, *pc, *pd, *pl, *pm, *pn; local
147 pa = pb = (char *)a + es;
151 while (pb <= pc && (cmp_result = CMP(thunk, pb, a)) <= 0) {
154 swap(pa, pb);
157 pb += es;
159 while (pb <= pc && (cmp_result = CMP(thunk, pc, a)) >= 0) {
167 if (pb > pc)
169 swap(pb, pc);
171 pb
[all...]
H A Dsetprogname.c57 const char * pb; local
59 pb = strrchr((p != NULL)? p : argv0, '\\');
60 if (pb != NULL)
61 p = pb;
/macosx-10.10/Heimdal-398.1.2/lib/sqlite/
H A Dsqlite3.c27065 struct ByteRangeLockPB2 pb; local
27068 pb.unLockFlag = setLockFlag ? 0 : 1;
27069 pb.startEndFlag = 0;
27070 pb.offset = offset;
27071 pb.length = length;
27072 pb.fd = pFile->h;
27075 (setLockFlag?"ON":"OFF"), pFile->h, (pb.fd==-1?"[testval-1]":""),
27077 err = fsctl(path, afpfsByteRangeLock2FSCTL, &pb, 0);
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Drbbi.cpp1446 int32_t pb = next(); local
1447 if (pa != pb) {
1448 // note: the if (pa != pb) test is here only to eliminate warnings for
1450 U_ASSERT(pa == pb);
H A Dusprep.cpp230 const uint8_t *pb; local
246 pb=(const uint8_t *)(p+_SPREP_INDEX_TOP);
247 utrie_unserialize(&_sprepTrie, pb, p[_SPREP_INDEX_TRIE_SIZE], errorCode);
/macosx-10.10/ICU-531.30/icuSources/test/cintltst/
H A Dcustrtrn.c987 const char *pb; local
1029 for(pb=(const char *)bytes, pu=uchars;
1030 *pb!=(char)0xff;
1031 pb+=srcLength+1, pu+=destLength0+1, ++number
1033 srcLength=uprv_strlen(pb);
1040 pDest=u_strFromUTF8Lenient(NULL, 0, &destLength, pb, -1, &errorCode);
1052 pDest=u_strFromUTF8Lenient(dest, destLength0-1, &destLength, pb, -1, &errorCode);
1064 pDest=u_strFromUTF8Lenient(dest, LENGTHOF(dest), &destLength, pb, -1, &errorCode);
1076 pDest=u_strFromUTF8Lenient(dest, destLength0, &destLength, pb, -1, &errorCode);
1088 pDest=u_strFromUTF8Lenient(NULL, 0, &destLength, pb, srcLengt
[all...]
H A Dtrie2test.c83 const CheckRange **pb=(const CheckRange **)context; local
84 const CheckRange *b=(*pb)++;
H A Dtrietest.c128 const CheckRange **pb=(const CheckRange **)context; local
129 const CheckRange *b=(*pb)++;
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dloctest.cpp340 Locale *pb=a.clone(); local
341 if(pb==&a || *pb!=a) {
344 delete pb;
/macosx-10.10/ICU-531.30/icuSources/tools/makeconv/
H A Dgenmbcs.cpp680 const uint8_t *pb; local
829 pb=bytes;
833 b=*pb++;
835 b=(b<<8)|*pb++;
837 b=(b<<8)|*pb++;
840 b=(b<<8)|*pb++;
/macosx-10.10/ICU-531.30/icuSources/tools/toolutil/
H A Dxmlparser.cpp166 const char *charset, *pb; local
216 pb=bytes;
221 &pb, bytes+bytesLength,
276 pb=bytes;
289 &pb, bytes+bytesLength,
/macosx-10.10/IOFWDVComponents-207.4.1/
H A DDVIsochComponent.c1336 IDHParameterBlock *pb; local
1338 pb = client->fActiveHead;
1339 if(pb && !waiting) {
1353 client->fActiveHead = (IDHParameterBlock *)pb->reserved1;
1356 pb->actualCount = deviceDescriptionPtr->fBufSize;
1357 pb->result = err;
1359 //syslog(LOG_INFO, "write callback, buffer = %p\n", pb->buffer);
1360 //syslog(LOG_INFO, "pb %p = req %d actual %d\n",
1361 // pb, pb
1558 IDHParameterBlock *pb = client->fHead; local
1610 IDHParameterBlock *pb = (IDHParameterBlock *)params; local
1781 IDHParameterBlock *pb = client->fHead; local
[all...]
H A DIsochComponentsRef391 pascal ComponentResult IDHRead( ComponentInstance idh, IDHParameterBlock *pb)
396 pb - Specifies the address of a IDHParameterBlock structure. Each of the fields are described in detail
412 pascal ComponentResult IDHWrite( ComponentInstance idh, IDHParameterBlock *pb)
417 pb - Specifies the address of a IDHParameterBlock structure. Each of the fields are described in detail
432 pascal ComponentResult IDHReleaseBuffer( ComponentInstance idh, IDHParameterBlock *pb)
437 pb - Specifies the address of the IDHParameterBlock structure that was originally passed into
451 pascal ComponentResult IDHCancelPendingIO( ComponentInstance idh, IDHParameterBlock *pb)
456 pb - Specifies the address of the IDHParameterBlock structure that was originally passed into
805 IDHParameterBlock *pb = (IDHParameterBlock *) eventRecord;
808 pb
[all...]
H A DIsochronousDataHandler.h412 IDHParameterBlock * pb);
426 IDHParameterBlock * pb);
500 IDHParameterBlock * pb);
514 IDHParameterBlock * pb);
H A DIsochronousDataHandler.i413 ComponentResult IDHRead(ComponentInstance idh, IDHParameterBlock* pb) = ComponentCall(8);
416 ComponentResult IDHWrite(ComponentInstance idh, IDHParameterBlock* pb) = ComponentCall(9);
431 ComponentResult IDHReleaseBuffer(ComponentInstance idh, IDHParameterBlock* pb) = ComponentCall(14);
434 ComponentResult IDHCancelPendingIO(ComponentInstance idh, IDHParameterBlock* pb) = ComponentCall(15);
H A DIsochronousDataHandler.i.c438 DEFINE_API( ComponentResult ) IDHRead(ComponentInstance idh, IDHParameterBlock* pb)
451 IDHParameterBlock* pb; member in struct:IDHReadGluePB
479 myIDHReadGluePB.pb = pb;
492 DEFINE_API( ComponentResult ) IDHWrite(ComponentInstance idh, IDHParameterBlock* pb)
505 IDHParameterBlock* pb; member in struct:IDHWriteGluePB
533 myIDHWriteGluePB.pb = pb;
771 DEFINE_API( ComponentResult ) IDHReleaseBuffer(ComponentInstance idh, IDHParameterBlock* pb)
784 IDHParameterBlock* pb; member in struct:IDHReleaseBufferGluePB
838 IDHParameterBlock* pb; member in struct:IDHCancelPendingIOGluePB
[all...]

Completed in 745 milliseconds

123456