Home
last modified time | relevance | path

Searched defs:H (Results 1 – 25 of 296) sorted by relevance

12345678910>>...12

/external/libvpx/libvpx/vpx_mem/memory_manager/
Dhmm_base.c345 #define AVL_GET_LESS(H, ACCESS) \ argument
347 #define AVL_GET_GREATER(H, ACCESS) \ argument
352 #define AVL_GET_LESS(H, ACCESS) ((H)->self) argument
353 #define AVL_GET_GREATER(H, ACCESS) ((H)->prev) argument
357 #define AVL_SET_LESS(H, LH) (H)->self = (LH); argument
358 #define AVL_SET_GREATER(H, GH) (H)->prev = (GH); argument
369 #define AVL_GET_BALANCE_FACTOR(H) \ argument
375 #define AVL_SET_BALANCE_FACTOR(H, BF) \ argument
393 #define AVL_COMPARE_KEY_NODE(K, H) \ argument
/external/clang/test/CodeGen/
D2007-09-28-PackedUnionMember.c4 struct H { struct
5 unsigned long f1;
29 struct H cmd = { 4, 412 }; in hndlr() argument
/external/clang/test/CodeGenCXX/
Dpr20719.cpp9 struct H { struct
10 H() {} in H() function
/external/clang/test/CodeGenObjC/
Ddebug-info-pubtypes.m6 @interface H interface
10 @implementation H implementation
/external/clang/test/CXX/special/class.copy/
Dimplicit-move-def.cpp21 struct H : G { struct
28 H s; in f() argument
/external/llvm/include/llvm/ExecutionEngine/Orc/
DIRCompileLayer.h85 ModuleSetHandleT H = in addModuleSet() local
94 void removeModuleSet(ModuleSetHandleT H) { BaseLayer.removeObjectSet(H); } in removeModuleSet()
112 JITSymbol findSymbolIn(ModuleSetHandleT H, const std::string &Name, in findSymbolIn()
120 void emitAndFinalize(ModuleSetHandleT H) { in emitAndFinalize()
DIRTransformLayer.h57 void removeModuleSet(ModuleSetHandleT H) { BaseLayer.removeModuleSet(H); } in removeModuleSet()
75 JITSymbol findSymbolIn(ModuleSetHandleT H, const std::string &Name, in findSymbolIn()
83 void emitAndFinalize(ModuleSetHandleT H) { in emitAndFinalize()
DObjectLinkingLayer.h91 void takeOwnershipOfBuffers(ObjSetHandleT H, OwningMBSet MBs) { in takeOwnershipOfBuffers()
204 void removeObjectSet(ObjSetHandleT H) { in removeObjectSet()
229 JITSymbol findSymbolIn(ObjSetHandleT H, StringRef Name, in findSymbolIn()
261 void mapSectionAddress(ObjSetHandleT H, const void *LocalAddress, in mapSectionAddress()
269 void emitAndFinalize(ObjSetHandleT H) { in emitAndFinalize()
DCompileOnDemandLayer.h77 void addToLogicalModule(LMHandle LMH, BaseLayerModuleSetHandleT H) { in addToLogicalModule()
158 for (auto H : BaseLayerModuleSetHandles) in releaseResources() local
187 ModuleSetHandleT H = in addModuleSet() local
202 void removeModuleSet(ModuleSetHandleT H) { in removeModuleSet()
217 JITSymbol findSymbolIn(ModuleSetHandleT H, const std::string &Name, in findSymbolIn()
294 auto H = addModule(std::move(SubM), MSI, LogicalModule); in partitionAndAdd() local
353 BaseLayerModuleSetHandleT H = in addModule() local
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
DTables8kGCMMultiplier.java8 private byte[] H; field in Tables8kGCMMultiplier
11 public void init(byte[] H) in init()
/external/libcxx/test/std/containers/sequences/vector.bool/
Dvector_bool.pass.cpp31 typedef std::hash<T> H; in main() typedef
43 typedef std::hash<T> H; in main() typedef
/external/clang/test/CXX/drs/
Ddr14xx.cpp72 struct H { struct
73 union {
76 union { // expected-note 2{{member not initialized}}
79 constexpr H() {} // expected-error {{must initialize all members}} in H() argument
80 constexpr H(bool) : m(1) {} in H() function
81 constexpr H(char) : n(1) {} // expected-error {{must initialize all members}} in H() function
82 constexpr H(double) : m(1), n(1) {} in H() function
103 union H { union
/external/ceres-solver/examples/
Dlibmv_homography.cc110 void SymmetricGeometricDistanceTerms(const Eigen::Matrix<T, 3, 3> &H, in SymmetricGeometricDistanceTerms() argument
135 double SymmetricGeometricDistance(const Mat3 &H, in SymmetricGeometricDistance()
200 Mat3 *H, in Homography2DFromCorrespondencesLinearEuc()
256 Mat3 H(homography_parameters); in operator ()() local
283 Mat3 *H) in TerminationCheckingCallback()
320 Mat3 *H) { in EstimateHomography2DFromCorrespondences()
/external/llvm/lib/Object/
DMachOUniversal.cpp29 void SwapStruct(MachO::fat_header &H) { in SwapStruct()
35 void SwapStruct(MachO::fat_arch &H) { in SwapStruct()
115 MachO::fat_header H= getUniversalBinaryStruct<MachO::fat_header>(Buf.begin()); in MachOUniversalBinary() local
/external/clang/test/SemaCXX/
Dvirtual-base-used.cpp66 struct H : public virtual A { struct
70 …icit default constructor for 'I' must explicitly initialize the base class 'H' which does not have… argument
/external/clang/lib/Analysis/
DScanfFormatString.cpp32 static bool ParseScanList(FormatStringHandler &H, in ParseScanList()
76 static ScanfSpecifierResult ParseScanfSpecifier(FormatStringHandler &H, in ParseScanfSpecifier()
525 bool clang::analyze_format_string::ParseScanfString(FormatStringHandler &H, in ParseScanfString()
DPrintfFormatString.cpp37 static bool ParsePrecision(FormatStringHandler &H, PrintfSpecifier &FS, in ParsePrecision()
52 static PrintfSpecifierResult ParsePrintfSpecifier(FormatStringHandler &H, in ParsePrintfSpecifier()
259 bool clang::analyze_format_string::ParsePrintfString(FormatStringHandler &H, in ParsePrintfString()
298 FormatStringHandler H; in ParseFormatStringHasSArg() local
/external/wpa_supplicant_8/src/crypto/
Daes-gcm.c175 static void * aes_gcm_init_hash_subkey(const u8 *key, size_t key_len, u8 *H) in aes_gcm_init_hash_subkey()
192 static void aes_gcm_prepare_j0(const u8 *iv, size_t iv_len, const u8 *H, u8 *J0) in aes_gcm_prepare_j0()
229 static void aes_gcm_ghash(const u8 *H, const u8 *aad, size_t aad_len, in aes_gcm_ghash()
258 u8 H[AES_BLOCK_SIZE]; in aes_gcm_ae() local
292 u8 H[AES_BLOCK_SIZE]; in aes_gcm_ad() local
/external/clang/utils/ABITest/
DEnumeration.py83 def getNthPairBounded(N,W=aleph0,H=aleph0,useDivmod=False): argument
127 def getNthPairBoundedChecked(N,W=aleph0,H=aleph0,useDivmod=False,GNP=getNthPairBounded): argument
132 def getNthNTuple(N, W, H=aleph0, useLeftToRight=False): argument
154 def getNthNTupleChecked(N, W, H=aleph0, useLeftToRight=False, GNT=getNthNTuple): argument
/external/clang/test/Layout/
Dms-x86-empty-nonvirtual-bases.cpp158 struct __declspec(align(32)) H : B0, B1, B2, B3, B4 { struct
160 H() : a(0xf0000011) {printf("X : %p\n", this);} in H() argument
/external/libcxx/test/std/utilities/type.index/type.index.synopsis/
Dhash_type_index.pass.cpp23 typedef std::hash<std::type_index> H; in main() typedef
/external/eigen/doc/snippets/
DHessenbergDecomposition_matrixH.cpp4 MatrixXf H = hessOfA.matrixH(); variable
/external/v8/test/mjsunit/
Dmultiple-return.js48 function H() { class
/external/v8/test/mjsunit/compiler/
Dregress-arrayliteral.js31 var H = 42; variable
/external/libcxx/test/std/utilities/type.index/type.index.hash/
Dhash.pass.cpp26 typedef std::hash<std::type_index> H; in main() typedef

12345678910>>...12