Home
last modified time | relevance | path

Searched refs:bdp (Results 1 – 11 of 11) sorted by relevance

/external/icu4c/common/
Dubidi_props.c62 ubidi_addPropertyStarts(const UBiDiProps *bdp, const USetAdder *sa, UErrorCode *pErrorCode) { in ubidi_addPropertyStarts() argument
74 utrie2_enum(&bdp->trie, NULL, _enumPropertyStartsRange, sa); in ubidi_addPropertyStarts()
77 length=bdp->indexes[UBIDI_IX_MIRROR_LENGTH]; in ubidi_addPropertyStarts()
79 c=UBIDI_GET_MIRROR_CODE_POINT(bdp->mirrors[i]); in ubidi_addPropertyStarts()
84 start=bdp->indexes[UBIDI_IX_JG_START]; in ubidi_addPropertyStarts()
85 limit=bdp->indexes[UBIDI_IX_JG_LIMIT]; in ubidi_addPropertyStarts()
86 jgArray=bdp->jgArray; in ubidi_addPropertyStarts()
109 ubidi_getMaxValue(const UBiDiProps *bdp, UProperty which) { in ubidi_getMaxValue() argument
112 if(bdp==NULL) { in ubidi_getMaxValue()
116 max=bdp->indexes[UBIDI_MAX_VALUES_INDEX]; in ubidi_getMaxValue()
[all …]
Dubidi_props.h38 ubidi_addPropertyStarts(const UBiDiProps *bdp, const USetAdder *sa, UErrorCode *pErrorCode);
43 ubidi_getMaxValue(const UBiDiProps *bdp, UProperty which);
46 ubidi_getClass(const UBiDiProps *bdp, UChar32 c);
49 ubidi_isMirrored(const UBiDiProps *bdp, UChar32 c);
52 ubidi_getMirror(const UBiDiProps *bdp, UChar32 c);
55 ubidi_isBidiControl(const UBiDiProps *bdp, UChar32 c);
58 ubidi_isJoinControl(const UBiDiProps *bdp, UChar32 c);
61 ubidi_getJoiningType(const UBiDiProps *bdp, UChar32 c);
64 ubidi_getJoiningGroup(const UBiDiProps *bdp, UChar32 c);
Dsprpimpl.h91 const UBiDiProps *bdp; /* used only if checkBiDi is set */ member
Dushape.cpp320 const UBiDiProps *bdp; in _shapeToArabicDigitsWithContext() local
324 bdp=ubidi_getSingleton(); in _shapeToArabicDigitsWithContext()
331 switch(ubidi_getClass(bdp, c)) { in _shapeToArabicDigitsWithContext()
351 switch(ubidi_getClass(bdp, c)) { in _shapeToArabicDigitsWithContext()
Dubidiimp.h199 const UBiDiProps *bdp; member
Dusprep.cpp354 newProfile->bdp = ubidi_getSingleton(); in usprep_getProfile()
768 direction = ubidi_getClass(profile->bdp, ch); in usprep_prepare()
Duts46.cpp1116 const UBiDiProps *bdp=ubidi_getSingleton(); in isLabelOkContextJ() local
1138 UJoiningType type=ubidi_getJoiningType(bdp, c); in isLabelOkContextJ()
1156 UJoiningType type=ubidi_getJoiningType(bdp, c); in isLabelOkContextJ()
Dubidi.c149 pBiDi->bdp=ubidi_getSingleton(); in ubidi_openSized()
2367 return ubidi_getClass(pBiDi->bdp, c); in ubidi_getCustomizedClass()
/external/blktrace/btt/
Dbno_dump.c53 struct bno_dump *bdp; in bno_dump_alloc() local
57 bdp = malloc(sizeof(*bdp)); in bno_dump_alloc()
58 bdp->rfp = bno_dump_open(device, 'r'); in bno_dump_alloc()
59 bdp->wfp = bno_dump_open(device, 'w'); in bno_dump_alloc()
60 bdp->cfp = bno_dump_open(device, 'c'); in bno_dump_alloc()
62 return bdp; in bno_dump_alloc()
72 struct bno_dump *bdp = handle; in bno_dump_add() local
74 if (bdp) { in bno_dump_add()
75 FILE *fp = IOP_READ(iop) ? bdp->rfp : bdp->wfp; in bno_dump_add()
79 if (bdp->cfp) in bno_dump_add()
[all …]
/external/openssl/crypto/bn/
Dbn_gf2m.c574 BN_ULONG *udp,*bdp,*vdp,*cdp; in BN_GF2m_mod_inv() local
579 bn_wexpand(b,top); bdp = b->d; in BN_GF2m_mod_inv()
580 bdp[0] = 1; in BN_GF2m_mod_inv()
581 for (i=1;i<top;i++) bdp[i] = 0; in BN_GF2m_mod_inv()
597 b0 = bdp[0]; in BN_GF2m_mod_inv()
605 b1 = bdp[i+1]^(p->d[i+1]&mask); in BN_GF2m_mod_inv()
606 bdp[i] = ((b0>>1)|(b1<<(BN_BITS2-1)))&BN_MASK2; in BN_GF2m_mod_inv()
610 bdp[i] = b0>>1; in BN_GF2m_mod_inv()
622 bdp = cdp; cdp = c->d; in BN_GF2m_mod_inv()
627 bdp[i] ^= cdp[i]; in BN_GF2m_mod_inv()
/external/icu4c/test/cintltst/
Dcucdtst.c3230 UBiDiProps *bdp; in TestUBiDiProps() local
3243 bdp=ubidi_openBinary((const uint8_t *)pData->pHeader, -1, &errorCode); in TestUBiDiProps()
3251 if(0x2215!=ubidi_getMirror(bdp, 0x29F5)) { /* verify some data */ in TestUBiDiProps()
3255 ubidi_closeProps(bdp); in TestUBiDiProps()