Searched refs:branchNode (Results 1 – 10 of 10) sorted by relevance
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | StringTrieBuilder.java | 406 DynamicBranchNode branchNode=new DynamicBranchNode(); in add() local 413 branchNode.setValue(value); in add() 421 result=branchNode; in add() 426 next=branchNode; in add() 435 next=branchNode; in add() 439 branchNode.add(thisChar, thisSuffixNode); in add() 440 branchNode.add(newChar, newSuffixNode); in add()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | StringTrieBuilder.java | 405 DynamicBranchNode branchNode=new DynamicBranchNode(); in add() local 412 branchNode.setValue(value); in add() 420 result=branchNode; in add() 425 next=branchNode; in add() 434 next=branchNode; in add() 438 branchNode.add(thisChar, thisSuffixNode); in add() 439 branchNode.add(newChar, newSuffixNode); in add()
|
/external/aac/libAACdec/src/ |
D | rvlc.cpp | 253 UINT branchNode; in rvlcDecodeEscapeWord() local 269 treeNode, &branchValue, &branchNode); in rvlcDecodeEscapeWord() 271 if ((branchNode & TEST_BIT_10) == in rvlcDecodeEscapeWord() 274 value = (SCHAR)branchNode & CLR_BIT_10; in rvlcDecodeEscapeWord() 367 UINT branchNode; in decodeRVLCodeword() local 381 treeNode, &branchValue, &branchNode); in decodeRVLCodeword() 383 if ((branchNode & TEST_BIT_10) == in decodeRVLCodeword() 387 value = (SCHAR)(branchNode & CLR_BIT_10); in decodeRVLCodeword()
|
D | aacdec_hcrs.cpp | 584 UINT branchNode; in Hcr_State_BODY_ONLY() local 626 treeNode, &branchValue, &branchNode); in Hcr_State_BODY_ONLY() 630 if ((branchNode & TEST_BIT_10) == in Hcr_State_BODY_ONLY() 726 UINT branchNode; in Hcr_State_BODY_SIGN__BODY() local 760 treeNode, &branchValue, &branchNode); in Hcr_State_BODY_SIGN__BODY() 764 if ((branchNode & TEST_BIT_10) == in Hcr_State_BODY_SIGN__BODY() 977 UINT branchNode; in Hcr_State_BODY_SIGN_ESC__BODY() local 1008 CarryBitToBranchValue(carryBit, treeNode, &branchValue, &branchNode); in Hcr_State_BODY_SIGN_ESC__BODY() 1012 if ((branchNode & TEST_BIT_10) == in Hcr_State_BODY_SIGN_ESC__BODY()
|
D | aacdec_hcr.cpp | 1315 UINT *branchNode) { in CarryBitToBranchValue() argument 1317 *branchNode = in CarryBitToBranchValue() 1320 *branchNode = treeNode & MASK_RIGHT; /* MASK_RIGHT: 00000FFF */ in CarryBitToBranchValue() 1323 *branchValue = *branchNode & CLR_BIT_10; /* clear bit 10 (if set) */ in CarryBitToBranchValue() 1340 UINT branchNode; in DecodePCW_Body() local 1357 CarryBitToBranchValue(carryBit, treeNode, &branchValue, &branchNode); in DecodePCW_Body() 1359 if ((branchNode & TEST_BIT_10) == in DecodePCW_Body()
|
D | aacdec_hcr.h | 118 UINT *branchNode);
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | ParseHelper.h | 413 void wrapupSwitchSubsequence(TIntermAggregate* statements, TIntermNode* branchNode);
|
D | ParseHelper.cpp | 7726 void TParseContext::wrapupSwitchSubsequence(TIntermAggregate* statements, TIntermNode* branchNode) in wrapupSwitchSubsequence() argument 7736 if (branchNode) { in wrapupSwitchSubsequence() 7742 TIntermTyped* newExpression = branchNode->getAsBranchNode()->getExpression(); in wrapupSwitchSubsequence() 7744 error(branchNode->getLoc(), "duplicate label", "default", ""); in wrapupSwitchSubsequence() 7751 error(branchNode->getLoc(), "duplicated value", "case", ""); in wrapupSwitchSubsequence() 7754 switchSequence->push_back(branchNode); in wrapupSwitchSubsequence()
|
/external/deqp-deps/glslang/hlsl/ |
D | hlslParseHelper.h | 163 void wrapupSwitchSubsequence(TIntermAggregate* statements, TIntermNode* branchNode);
|
D | hlslParseHelper.cpp | 9055 …id HlslParseContext::wrapupSwitchSubsequence(TIntermAggregate* statements, TIntermNode* branchNode) in wrapupSwitchSubsequence() argument 9063 if (branchNode) { in wrapupSwitchSubsequence() 9069 TIntermTyped* newExpression = branchNode->getAsBranchNode()->getExpression(); in wrapupSwitchSubsequence() 9071 error(branchNode->getLoc(), "duplicate label", "default", ""); in wrapupSwitchSubsequence() 9078 error(branchNode->getLoc(), "duplicated value", "case", ""); in wrapupSwitchSubsequence() 9081 switchSequence->push_back(branchNode); in wrapupSwitchSubsequence()
|