Searched defs:bdp (Results 1 - 16 of 16) sorted by relevance

/external/blktrace/btt/
H A Dbno_dump.c53 struct bno_dump *bdp; local
57 bdp = malloc(sizeof(*bdp));
58 bdp->rfp = bno_dump_open(device, 'r');
59 bdp->wfp = bno_dump_open(device, 'w');
60 bdp->cfp = bno_dump_open(device, 'c');
62 return bdp;
72 struct bno_dump *bdp = handle; local
74 if (bdp) {
75 FILE *fp = IOP_READ(iop) ? bdp
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dsprpimpl.h91 const UBiDiProps *bdp; /* used only if checkBiDi is set */ member in struct:UStringPrepProfile
H A Dubidi_props.c62 ubidi_addPropertyStarts(const UBiDiProps *bdp, const USetAdder *sa, UErrorCode *pErrorCode) { argument
74 utrie2_enum(&bdp->trie, NULL, _enumPropertyStartsRange, sa);
77 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH];
79 c=UBIDI_GET_MIRROR_CODE_POINT(bdp->mirrors[i]);
84 start=bdp->indexes[UBIDI_IX_JG_START];
85 limit=bdp->indexes[UBIDI_IX_JG_LIMIT];
86 jgArray=bdp->jgArray;
109 ubidi_getMaxValue(const UBiDiProps *bdp, UProperty which) { argument
112 if(bdp==NULL) {
116 max=bdp
132 ubidi_getClass(const UBiDiProps *bdp, UChar32 c) argument
138 ubidi_isMirrored(const UBiDiProps *bdp, UChar32 c) argument
144 getMirror(const UBiDiProps *bdp, UChar32 c, uint16_t props) argument
176 ubidi_getMirror(const UBiDiProps *bdp, UChar32 c) argument
182 ubidi_isBidiControl(const UBiDiProps *bdp, UChar32 c) argument
188 ubidi_isJoinControl(const UBiDiProps *bdp, UChar32 c) argument
194 ubidi_getJoiningType(const UBiDiProps *bdp, UChar32 c) argument
200 ubidi_getJoiningGroup(const UBiDiProps *bdp, UChar32 c) argument
213 ubidi_getPairedBracketType(const UBiDiProps *bdp, UChar32 c) argument
219 ubidi_getPairedBracket(const UBiDiProps *bdp, UChar32 c) argument
[all...]
H A Dushape.cpp321 const UBiDiProps *bdp; local
325 bdp=ubidi_getSingleton();
332 switch(ubidi_getClass(bdp, c)) {
352 switch(ubidi_getClass(bdp, c)) {
H A Duts46.cpp1114 const UBiDiProps *bdp=ubidi_getSingleton(); local
1136 UJoiningType type=ubidi_getJoiningType(bdp, c);
1154 UJoiningType type=ubidi_getJoiningType(bdp, c);
H A Dubidiimp.h266 const UBiDiProps *bdp; member in struct:UBiDi
/external/icu/icu4c/source/common/
H A Dsprpimpl.h91 const UBiDiProps *bdp; /* used only if checkBiDi is set */ member in struct:UStringPrepProfile
H A Dubidi_props.c62 ubidi_addPropertyStarts(const UBiDiProps *bdp, const USetAdder *sa, UErrorCode *pErrorCode) { argument
74 utrie2_enum(&bdp->trie, NULL, _enumPropertyStartsRange, sa);
77 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH];
79 c=UBIDI_GET_MIRROR_CODE_POINT(bdp->mirrors[i]);
84 start=bdp->indexes[UBIDI_IX_JG_START];
85 limit=bdp->indexes[UBIDI_IX_JG_LIMIT];
86 jgArray=bdp->jgArray;
109 ubidi_getMaxValue(const UBiDiProps *bdp, UProperty which) { argument
112 if(bdp==NULL) {
116 max=bdp
132 ubidi_getClass(const UBiDiProps *bdp, UChar32 c) argument
138 ubidi_isMirrored(const UBiDiProps *bdp, UChar32 c) argument
144 getMirror(const UBiDiProps *bdp, UChar32 c, uint16_t props) argument
176 ubidi_getMirror(const UBiDiProps *bdp, UChar32 c) argument
182 ubidi_isBidiControl(const UBiDiProps *bdp, UChar32 c) argument
188 ubidi_isJoinControl(const UBiDiProps *bdp, UChar32 c) argument
194 ubidi_getJoiningType(const UBiDiProps *bdp, UChar32 c) argument
200 ubidi_getJoiningGroup(const UBiDiProps *bdp, UChar32 c) argument
213 ubidi_getPairedBracketType(const UBiDiProps *bdp, UChar32 c) argument
219 ubidi_getPairedBracket(const UBiDiProps *bdp, UChar32 c) argument
[all...]
H A Dushape.cpp345 const UBiDiProps *bdp; local
349 bdp=ubidi_getSingleton();
356 switch(ubidi_getClass(bdp, c)) {
376 switch(ubidi_getClass(bdp, c)) {
H A Duts46.cpp1112 const UBiDiProps *bdp=ubidi_getSingleton(); local
1134 UJoiningType type=ubidi_getJoiningType(bdp, c);
1152 UJoiningType type=ubidi_getJoiningType(bdp, c);
H A Dubidiimp.h257 const UBiDiProps *bdp; member in struct:UBiDi
/external/chromium_org/net/quic/congestion_control/
H A Dsend_algorithm_simulator.cc349 // If the number of bytes in flight are less than the bdp, there's
351 QuicByteCount bdp = bandwidth_.ToBytesPerPeriod(rtt_); local
353 if (kPacketSize > bdp) {
354 ack_time = ack_time.Add(bandwidth_.TransferTime(kPacketSize - bdp));
/external/openssl/crypto/bn/
H A Dbn_gf2m.c574 BN_ULONG *udp,*bdp,*vdp,*cdp; local
579 bn_wexpand(b,top); bdp = b->d;
580 bdp[0] = 1;
581 for (i=1;i<top;i++) bdp[i] = 0;
597 b0 = bdp[0];
605 b1 = bdp[i+1]^(p->d[i+1]&mask);
606 bdp[i] = ((b0>>1)|(b1<<(BN_BITS2-1)))&BN_MASK2;
610 bdp[i] = b0>>1;
622 bdp = cdp; cdp = c->d;
627 bdp[
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcucdtst.c3264 UBiDiProps *bdp; local
3277 bdp=ubidi_openBinary((const uint8_t *)pData->pHeader, -1, &errorCode);
3285 if(0x2215!=ubidi_getMirror(bdp, 0x29F5)) { /* verify some data */
3289 ubidi_closeProps(bdp);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcucdtst.c3265 UBiDiProps *bdp; local
3278 bdp=ubidi_openBinary((const uint8_t *)pData->pHeader, -1, &errorCode);
3286 if(0x2215!=ubidi_getMirror(bdp, 0x29F5)) { /* verify some data */
3290 ubidi_closeProps(bdp);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 3949 milliseconds