Searched refs:class_id (Results 1 - 25 of 50) sorted by relevance

12

/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libmkv/
H A DEbmlWriter.h30 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id);
31 void Ebml_SerializeUnsigned64(EbmlGlobal *glob, unsigned long class_id, uint64_t ui);
32 void Ebml_SerializeUnsigned(EbmlGlobal *glob, unsigned long class_id, unsigned long ui);
33 void Ebml_SerializeBinary(EbmlGlobal *glob, unsigned long class_id, unsigned long ui);
34 void Ebml_SerializeFloat(EbmlGlobal *glob, unsigned long class_id, double d);
37 void Ebml_SerializeString(EbmlGlobal *glob, unsigned long class_id, const char *s);
38 void Ebml_SerializeUTF8(EbmlGlobal *glob, unsigned long class_id, wchar_t *s);
39 void Ebml_SerializeData(EbmlGlobal *glob, unsigned long class_id, unsigned char *data, unsigned long data_length);
H A DEbmlWriter.c62 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id) { argument
65 if (class_id >= 0x01000000)
67 else if (class_id >= 0x00010000)
69 else if (class_id >= 0x00000100)
74 Ebml_Serialize(glob, (void *)&class_id, sizeof(class_id), len);
77 void Ebml_SerializeUnsigned64(EbmlGlobal *glob, unsigned long class_id, uint64_t ui) { argument
79 Ebml_WriteID(glob, class_id);
84 void Ebml_SerializeUnsigned(EbmlGlobal *glob, unsigned long class_id, unsigned long ui) { argument
89 Ebml_WriteID(glob, class_id);
105 Ebml_SerializeBinary(EbmlGlobal *glob, unsigned long class_id, unsigned long bin) argument
116 Ebml_SerializeFloat(EbmlGlobal *glob, unsigned long class_id, double d) argument
129 Ebml_SerializeString(EbmlGlobal *glob, unsigned long class_id, const char *s) argument
134 Ebml_SerializeUTF8(EbmlGlobal *glob, unsigned long class_id, wchar_t *s) argument
139 Ebml_SerializeData(EbmlGlobal *glob, unsigned long class_id, unsigned char *data, unsigned long data_length) argument
[all...]
H A DEbmlBufferWriter.h15 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
H A DEbmlBufferWriter.c36 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id) { argument
37 Ebml_WriteID(glob, class_id);
/external/libvpx/libvpx/third_party/libmkv/
H A DEbmlWriter.h30 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id);
31 void Ebml_SerializeUnsigned64(EbmlGlobal *glob, unsigned long class_id, uint64_t ui);
32 void Ebml_SerializeUnsigned(EbmlGlobal *glob, unsigned long class_id, unsigned long ui);
33 void Ebml_SerializeBinary(EbmlGlobal *glob, unsigned long class_id, unsigned long ui);
34 void Ebml_SerializeFloat(EbmlGlobal *glob, unsigned long class_id, double d);
37 void Ebml_SerializeString(EbmlGlobal *glob, unsigned long class_id, const char *s);
38 void Ebml_SerializeUTF8(EbmlGlobal *glob, unsigned long class_id, wchar_t *s);
39 void Ebml_SerializeData(EbmlGlobal *glob, unsigned long class_id, unsigned char *data, unsigned long data_length);
H A DEbmlWriter.c62 void Ebml_WriteID(EbmlGlobal *glob, unsigned long class_id) { argument
65 if (class_id >= 0x01000000)
67 else if (class_id >= 0x00010000)
69 else if (class_id >= 0x00000100)
74 Ebml_Serialize(glob, (void *)&class_id, sizeof(class_id), len);
77 void Ebml_SerializeUnsigned64(EbmlGlobal *glob, unsigned long class_id, uint64_t ui) { argument
79 Ebml_WriteID(glob, class_id);
84 void Ebml_SerializeUnsigned(EbmlGlobal *glob, unsigned long class_id, unsigned long ui) { argument
89 Ebml_WriteID(glob, class_id);
105 Ebml_SerializeBinary(EbmlGlobal *glob, unsigned long class_id, unsigned long bin) argument
116 Ebml_SerializeFloat(EbmlGlobal *glob, unsigned long class_id, double d) argument
129 Ebml_SerializeString(EbmlGlobal *glob, unsigned long class_id, const char *s) argument
134 Ebml_SerializeUTF8(EbmlGlobal *glob, unsigned long class_id, wchar_t *s) argument
139 Ebml_SerializeData(EbmlGlobal *glob, unsigned long class_id, unsigned char *data, unsigned long data_length) argument
[all...]
H A DEbmlBufferWriter.h15 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id);
H A DEbmlBufferWriter.c36 void Ebml_StartSubElement(EbmlGlobal *glob, EbmlLoc *ebmlLoc, unsigned long class_id) { argument
37 Ebml_WriteID(glob, class_id);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dpartition.h99 // Add element_id to class_id. The Add method is used to initialize
102 void Add(T element_id, T class_id) { argument
105 if (classes_[class_id])
106 classes_[class_id]->prev = element;
107 element->next = classes_[class_id];
109 classes_[class_id] = element;
111 class_index_[element_id] = class_id;
112 class_size_[class_id]++;
115 // Move and element_id to class_id. Disconnects (removes) element
117 void Move(T element_id, T class_id) { argument
131 T class_id = class_index_[element_id]; local
154 SplitRefine(T class_id) argument
207 const T class_id(T element_id) const { function in class:fst::Partition
255 PartitionIterator(const Partition<T>& partition, T class_id) argument
[all...]
H A Dminimize.h87 if (partition_.class_id(arc1.nextstate) <
88 partition_.class_id(arc2.nextstate)) return true;
89 if (partition_.class_id(arc1.nextstate) >
90 partition_.class_id(arc2.nextstate)) return false;
177 StateId class_id = P_.AddClass(); local
178 P_.Add(siter.Value(), class_id);
179 equiv_map[siter.Value()] = class_id;
180 L_.Enqueue(class_id);
185 class_id = P_.AddClass();
186 P_.Add(s, class_id);
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_fake_stack.h92 static uptr FlagsOffset(uptr stack_size_log, uptr class_id) { argument
93 uptr t = kNumberOfSizeClasses - 1 - class_id;
98 static uptr NumberOfFrames(uptr stack_size_log, uptr class_id) { argument
99 return 1UL << (stack_size_log - kMinStackFrameSizeLog - class_id);
103 static uptr ModuloNumberOfFrames(uptr stack_size_log, uptr class_id, uptr n) { argument
104 return n & (NumberOfFrames(stack_size_log, class_id) - 1);
107 // The the pointer to the flags of the given class_id.
108 u8 *GetFlags(uptr stack_size_log, uptr class_id) { argument
110 FlagsOffset(stack_size_log, class_id);
113 // Get frame by class_id an
114 GetFrame(uptr stack_size_log, uptr class_id, uptr pos) argument
124 Deallocate(uptr x, uptr class_id) argument
139 BytesInSizeClass(uptr class_id) argument
146 SavedFlagPtr(uptr x, uptr class_id) argument
[all...]
H A Dasan_fake_stack.cc26 ALWAYS_INLINE void SetShadow(uptr ptr, uptr size, uptr class_id, u64 magic) { argument
29 if (class_id <= 6) {
30 for (uptr i = 0; i < (1U << class_id); i++)
63 for (uptr class_id = 0; class_id < kNumberOfSizeClasses; class_id++)
64 str.append("%zd: %zd/%zd; ", class_id, hint_position_[class_id],
65 NumberOfFrames(stack_size_log(), class_id));
79 FakeFrame *FakeStack::Allocate(uptr stack_size_log, uptr class_id, argument
101 *SavedFlagPtr(reinterpret_cast<uptr>(res), class_id) = &flags[pos]; local
193 OnMalloc(uptr class_id, uptr size, uptr real_stack) argument
204 OnFree(uptr ptr, uptr class_id, uptr size, uptr real_stack) argument
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h31 // Classes 1 - 16 correspond to sizes 16 to 256 (size = class_id * 16).
120 static uptr Size(uptr class_id) { argument
121 if (class_id <= kMidClass)
122 return kMinSize * class_id;
123 class_id -= kMidClass;
124 uptr t = kMidSize << (class_id >> S);
125 return t + (t >> S) * (class_id & M);
139 static uptr MaxCached(uptr class_id) { argument
140 if (class_id == 0) return 0;
141 uptr n = (1UL << kMaxBytesCachedLog) / Size(class_id);
165 SizeClassRequiresSeparateTransferBatch(uptr class_id) argument
341 AllocateBatch(AllocatorStats *stat, AllocatorCache *c, uptr class_id) argument
352 DeallocateBatch(AllocatorStats *stat, uptr class_id, Batch *b) argument
368 uptr class_id = GetSizeClass(p); local
390 uptr class_id = GetSizeClass(p); local
498 GetRegionInfo(uptr class_id) argument
513 PopulateFreeList(AllocatorStats *stat, AllocatorCache *c, uptr class_id, RegionInfo *region) argument
725 AllocateBatch(AllocatorStats *stat, AllocatorCache *c, uptr class_id) argument
738 DeallocateBatch(AllocatorStats *stat, uptr class_id, Batch *b) argument
845 AllocateRegion(AllocatorStats *stat, uptr class_id) argument
856 GetSizeClassInfo(uptr class_id) argument
861 PopulateFreeList(AllocatorStats *stat, AllocatorCache *c, SizeClassInfo *sci, uptr class_id) argument
913 Allocate(SizeClassAllocator *allocator, uptr class_id) argument
925 Deallocate(SizeClassAllocator *allocator, uptr class_id, void *p) argument
967 Refill(SizeClassAllocator *allocator, uptr class_id) argument
979 Drain(SizeClassAllocator *allocator, uptr class_id) argument
[all...]
/external/chromium_org/media/tools/constrained_network_server/
H A Dtraffic_control.py196 class_id = '1:%x' % config['port']
204 'parent', '1:', 'classid', class_id, 'htb', 'rate', bandwidth,
207 (class_id, option)))
221 class_id = '1:%x' % config['port']
223 class_id, 'handle', port_hex + ':0', 'netem']
234 _Exec(command, msg='Could not attach qdisc to class ID %s.' % class_id)
244 class_id = '1:%x' % port
248 '0xffff', 'flowid', class_id]
/external/chromium_org/chrome/tools/ipclist/
H A Dipclist.cc53 int class_id = IPC_MESSAGE_ID_CLASS(msgtable[i].id); local
54 if (class_id >= LastIPCMsgStart) {
58 while (class_id > previous_class_id + 1) {
62 std::cout << "Missing message file: gap before " << class_id << "\n"; local
68 previous_class_id = class_id;
69 if (class_id > highest_class_id)
70 highest_class_id = class_id;
/external/chromium_org/third_party/hwcplus/src/
H A Dhardware.c165 int hw_get_module_by_class(const char *class_id, const char *inst, argument
175 snprintf(name, PATH_MAX, "%s.%s", class_id, inst);
177 strlcpy(name, class_id, PATH_MAX);
214 return load(class_id, path, module);
/external/chromium_org/v8/src/
H A Dheap-profiler.cc47 uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback) {
48 ASSERT(class_id != v8::HeapProfiler::kPersistentHandleNoClassId);
49 if (wrapper_callbacks_.length() <= class_id) {
51 NULL, class_id - wrapper_callbacks_.length() + 1);
53 wrapper_callbacks_[class_id] = callback;
58 uint16_t class_id, Object** wrapper) {
59 if (wrapper_callbacks_.length() <= class_id) return NULL;
60 return wrapper_callbacks_[class_id](
61 class_id, Utils::ToLocal(Handle<Object>(wrapper)));
46 DefineWrapperClass( uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback) argument
57 ExecuteWrapperClassCallback( uint16_t class_id, Object** wrapper) argument
H A Dheap-profiler.h55 uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback);
57 v8::RetainedObjectInfo* ExecuteWrapperClassCallback(uint16_t class_id,
/external/libsepol/include/sepol/policydb/
H A Davrule_block.h35 extern int is_perm_enabled(char *class_id, char *perm_id, policydb_t * p);
/external/compiler-rt/lib/asan/tests/
H A Dasan_fake_stack_test.cc50 for (uptr class_id = 0; class_id < FakeStack::kNumberOfSizeClasses;
51 class_id++) {
52 uptr frame_size = FakeStack::BytesInSizeClass(class_id);
54 EXPECT_EQ(offset, FakeStack::FlagsOffset(stack_size_log, class_id));
55 // printf("%zd: %zd => %zd %zd\n", stack_size_log, class_id, offset,
56 // FakeStack::FlagsOffset(stack_size_log, class_id));
136 uptr class_id = depth / 3; local
137 FakeFrame *ff = fs->Allocate(fs->stack_size_log(), class_id, 0);
142 fs->Deallocate(reinterpret_cast<uptr>(ff), class_id); local
[all...]
/external/chromium_org/media/formats/webm/chromeos/
H A Dwebm_encoder.h60 void StartSubElement(unsigned long class_id);
/external/libsepol/src/
H A Davrule_block.c177 int is_perm_enabled(char *class_id, char *perm_id, policydb_t * p) argument
181 if (!is_id_enabled(class_id, p, SYM_CLASSES)) {
185 (class_datum_t *) hashtab_search(p->p_classes.table, class_id);
/external/checkpolicy/
H A Dmodule_compiler.h73 int is_perm_in_scope(hashtab_key_t perm_id, hashtab_key_t class_id);
/external/chromium_org/media/video/capture/win/
H A Dfilter_base_win.h62 STDMETHOD(GetClassID)(CLSID* class_id) = 0;
/external/chromium_org/v8/src/third_party/vtune/
H A Djitprofiling.h239 unsigned int class_id; member in struct:_iJIT_Method_Load

Completed in 5469 milliseconds

12