/external/sfntly/cpp/src/sfntly/table/bitmap/ |
index_sub_table.cc | 56 IndexSubTable::CreateIndexSubTable(ReadableFontData* data, 61 data, offset_to_index_sub_table_array, array_index)); 65 IndexSubTable::IndexSubTable(ReadableFontData* data, 68 : SubTable(data), 146 IndexSubTable::Builder::CreateBuilder(ReadableFontData* data, 152 data->ReadUShort(index_sub_table_entry_offset + 155 data->ReadUShort(index_sub_table_entry_offset + 157 int32_t additional_offset_to_index_subtable = data->ReadULongAsInt( 162 int32_t index_format = data->ReadUShort(index_sub_table_offset); 166 data, index_sub_table_offset, first_glyph_index, last_glyph_index) [all...] |
/external/srec/srec/ca/ |
utt_basi.c | 73 if (hUtt->data.utt_type != 0) 76 init_utterance(&hUtt->data, LIVE_INPUT, 3*hFrontPar->mel_dim, /* TODO: change to proper function */ 80 set_voicing_durations(&hUtt->data, hFrontPar->voice_duration / 2, 85 set_voicing_durations(&hUtt->data, hFrontPar->voice_duration, 102 if (hUtt->data.utt_type == 0) 107 if (hUtt->data.utt_type == LIVE_INPUT) 109 free_utterance(&hUtt->data); 110 hUtt->data.utt_type = 0; 129 if (hUtt->data.utt_type != LIVE_INPUT) 132 status_code = advance_utterance_frame(&hUtt->data); [all...] |
utt_data.c | 46 if (utterance_started(&hUtt->data)) 48 if ((gap = getBlockGap(hUtt->data.gen_utt.frame)) > 0) 49 (void) setRECframePtr(hUtt->data.gen_utt.frame, gap, 1); 50 if (hUtt->data.gen_utt.frame->holdOffPeriod > 0) 51 setRECframePtr(hUtt->data.gen_utt.frame, -MIN(hUtt->data.gen_utt.frame->holdOffPeriod, getFrameGap(hUtt->data.gen_utt.frame)), 1); 52 while (!(rec_frame_voicing_status(hUtt->data.gen_utt.frame) & VOICE_BIT)) 54 incRECframePtr(hUtt->data.gen_utt.frame); 55 if (getFrameGap(hUtt->data.gen_utt.frame) == 0 [all...] |
/external/wpa_supplicant_8/src/utils/ |
trace.c | 128 struct bfd_data *data = obj; local 132 if (data->found) 139 if (data->pc < vma) 143 if (data->pc >= vma + size) 146 data->found = bfd_find_nearest_line(abfd, section, syms, 147 data->pc - vma, 148 &data->filename, 149 &data->function, 150 &data->line); 157 struct bfd_data data; local 200 struct bfd_data data; local [all...] |
/frameworks/av/media/libmedia/ |
IEffect.cpp | 47 Parcel data, reply; local 48 data.writeInterfaceToken(IEffect::getInterfaceDescriptor()); 49 remote()->transact(ENABLE, data, &reply); 56 Parcel data, reply; local 57 data.writeInterfaceToken(IEffect::getInterfaceDescriptor()); 58 remote()->transact(DISABLE, data, &reply); 69 Parcel data, reply; local 70 data.writeInterfaceToken(IEffect::getInterfaceDescriptor()); 71 data.writeInt32(cmdCode); 76 data.writeInt32(size) 106 Parcel data, reply; local 114 Parcel data, reply; local [all...] |
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
LoadUrlParams.java | 60 * Helper method to create a LoadUrlParams object for data url. 61 * @param data Data to be loaded. 62 * @param mimeType Mime type of the data. 63 * @param isBase64Encoded True if the data is encoded in Base 64 format. 66 String data, String mimeType, boolean isBase64Encoded) { 67 return createLoadDataParams(data, mimeType, isBase64Encoded, null); 71 * Helper method to create a LoadUrlParams object for data url. 72 * @param data Data to be loaded [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/ |
HexEncoder.java | 46 * encode the input data producing a Hex output stream. 51 byte[] data, 59 int v = data[i] & 0xff; 75 * decode the Hex encoded byte data writing it to the given output stream, 81 byte[] data, 94 if (!ignore((char)data[end - 1])) 105 while (i < end && ignore((char)data[i])) 110 b1 = decodingTable[data[i++]]; 112 while (i < end && ignore((char)data[i])) 117 b2 = decodingTable[data[i++]] [all...] |
/external/chromium/base/memory/ |
weak_ptr_unittest.cc | 44 int data; local 45 WeakPtrFactory<int> factory(&data); 47 EXPECT_EQ(&data, ptr.get()); 51 int data; local 52 WeakPtrFactory<int> factory(&data); 62 int data; local 63 WeakPtrFactory<int> factory(&data); 72 int data; local 73 WeakPtrFactory<int> factory(&data); 76 EXPECT_EQ(&data, a.get()) 84 Derived data; local 98 int data; local 109 int data; local [all...] |
/external/chromium/chrome/browser/ui/gtk/ |
gtk_expanded_container.cc | 40 SizeAllocateData* data = reinterpret_cast<SizeAllocateData*>(userdata); 43 child_requisition.width = data->allocation->width - data->border_width * 2; 44 child_requisition.height = data->allocation->height - data->border_width * 2; 48 g_signal_emit(data->container, 64 GetChildPosition(data->container, child, &x, &y); 66 child_allocation.x = x + data->border_width; 67 child_allocation.y = y + data->border_width; 69 if (GTK_WIDGET_NO_WINDOW(data->container)) 154 SizeAllocateData data; local 159 gtk_container_foreach(GTK_CONTAINER(widget), ChildSizeAllocate, &data); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
CachedMetadata.h | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 42 // Serialized data is NOT portable across architectures. However, reading the 43 // data type ID will reject data generated with a different byte-order. 46 static PassRefPtr<CachedMetadata> create(unsigned dataTypeID, const char* data, size_t size) 48 return adoptRef(new CachedMetadata(dataTypeID, data, size)); 51 static PassRefPtr<CachedMetadata> deserialize(const char* data, size_t size) 53 return adoptRef(new CachedMetadata(data, size)); 68 const char* data() const function in class:WebCore::CachedMetadata 72 return m_serializedData.data() + dataStart [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
HeapSnapshotWorkerDispatcher.js | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 53 var data = event.data; 54 var response = {callId: data.callId}; 56 switch (data.disposition) { 58 var constructorFunction = this._findFunction(data.methodName); 59 this._objects[data.objectId] = new constructorFunction(); 63 delete this._objects[data.objectId]; 67 var object = this._objects[data.objectId]; 68 var result = object[data.methodName] [all...] |
/external/chromium_org/third_party/icu/source/data/unidata/ |
ucdterms.txt | 1 UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE 3 Unicode Data Files include all data files under the directories 9 INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), 12 DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. 20 the Unicode data files and associated documentation (the "Data Files") or 22 Data Files or Software without restriction, including without limitation the 24 the Data Files or Software, and to permit persons to whom the Data Files o [all...] |
/external/chromium_org/third_party/skia/src/xml/ |
SkBML_XMLParser.cpp | 23 static int rdata(SkStream& s, int data) 25 SkASSERT((data & ~31) == 0); 26 if (data == 31) 28 data = rbyte(s); 29 if (data == 0xFF) 31 data = rbyte(s); 32 data = (data << 8) | rbyte(s); 35 return data; 38 static void set(char* array[256], int index, SkStream& s, int data) 88 int data = verb & 31; local 123 int data = verb & 31; local [all...] |
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
module.in | 21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 34 void *data; /* associated data */ 78 void *data; /* associated data */ 96 return loaded_modules[i].data; 104 return modules[i].data; 111 yasm_register_module(yasm_module_type type, const char *keyword, void *data) 118 loaded_modules[num_loaded_modules].data = data; [all...] |
/external/chromium_org/ui/base/gtk/ |
gtk_expanded_container.cc | 42 SizeAllocateData* data = reinterpret_cast<SizeAllocateData*>(userdata); 45 child_requisition.width = data->allocation->width - data->border_width * 2; 46 child_requisition.height = data->allocation->height - data->border_width * 2; 50 g_signal_emit(data->container, 66 GetChildPosition(data->container, child, &x, &y); 68 child_allocation.x = x + data->border_width; 69 child_allocation.y = y + data->border_width; 71 if (!gtk_widget_get_has_window(data->container)) 156 SizeAllocateData data; local 161 gtk_container_foreach(GTK_CONTAINER(widget), ChildSizeAllocate, &data); local [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_symbolizer_linux_libcdep.cc | 58 DlIteratePhdrData *data = (DlIteratePhdrData*)arg; 59 if (data->current_n == data->max_n) 62 module_name.data()[0] = '\0'; 63 if (data->first) { 64 data->first = false; 66 ReadBinaryName(module_name.data(), module_name.size()); 68 internal_strncpy(module_name.data(), info->dlpi_name, module_name.size()); 70 if (module_name.data()[0] == '\0') 72 if (data->filter && !data->filter(module_name.data()) [all...] |
/external/icu4c/data/unidata/ |
ucdterms.txt | 1 UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE 3 Unicode Data Files include all data files under the directories 9 INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), 12 DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. 20 the Unicode data files and associated documentation (the "Data Files") or 22 Data Files or Software without restriction, including without limitation the 24 the Data Files or Software, and to permit persons to whom the Data Files o [all...] |
/external/skia/src/xml/ |
SkBML_XMLParser.cpp | 23 static int rdata(SkStream& s, int data) 25 SkASSERT((data & ~31) == 0); 26 if (data == 31) 28 data = rbyte(s); 29 if (data == 0xFF) 31 data = rbyte(s); 32 data = (data << 8) | rbyte(s); 35 return data; 38 static void set(char* array[256], int index, SkStream& s, int data) 88 int data = verb & 31; local 123 int data = verb & 31; local [all...] |
/system/core/libcorkscrew/ |
ptrace.c | 92 map_info_data_t* data = (map_info_data_t*)calloc(1, sizeof(map_info_data_t)); local 93 if (data) { 94 mi->data = data; 96 data->symbol_table = load_symbol_table(mi->name); 99 load_ptrace_map_info_data_arch(pid, mi, data); 119 map_info_data_t* data = (map_info_data_t*)mi->data; local 120 if (data) { 121 if (data->symbol_table) 145 const map_info_data_t* data = (const map_info_data_t*)mi->data; local [all...] |
/external/chromium/net/disk_cache/ |
storage_block.h | 16 // This class encapsulates common behavior of a single "block" of data that is 19 // This object provides a memory buffer for the related data, and it can be used 26 // DoSomething(a.Data()); 27 // b.SetData(a.Data()); 28 // ModifySomething(b.Data()); 29 // // Data modified on the previous call will be saved by b's destructor. 48 // Deletes the data, even if it was modified and not saved. This object must 52 // Stops sharing the data with another object. 55 // Sets the object to lazily save the in-memory data on destruction. 59 T* Data(); [all...] |
/external/chromium_org/chrome/browser/chromeos/app_mode/ |
kiosk_app_data.h | 33 // Fetches an app's web store data and manages the cached info such as name 39 STATUS_INIT, // Data initialized with app id. 40 STATUS_LOADING, // Loading data from cache or web store. 41 STATUS_LOADED, // Data loaded. 42 STATUS_ERROR, // Failed to load data. 50 // Loads app data from cache. If there is no cached data, fetches it 54 // Clears locally cached data. 57 // Returns true if web store data fetching is in progress. 75 // Returns URLRequestContextGetter to use for fetching web store data [all...] |
/external/chromium_org/media/base/ |
audio_pull_fifo.h | 15 // between a producer and consumer. The consumer will pull data from this FIFO. 16 // If data is already available in the FIFO, it is provided to the consumer. 17 // If insufficient data is available to satisfy the request, the FIFO will ask 18 // the producer for more data to fulfill a request. 21 // Callback type for providing more data into the FIFO. Expects AudioBus 22 // to be completely filled with data upon return; zero padded if not enough 28 // read audio data to the FIFO if data is not already available. The internal 35 // them to |destination|. If the FIFO does not have enough data, we ask 36 // the producer to give us more data to fulfill the request using th [all...] |
data_buffer.h | 16 // A simple buffer that takes ownership of the given data pointer or allocates 28 // Assumes valid data of size |buffer_size|. 31 // Create a DataBuffer whose |data_| is copied from |data|. 33 // |data| must not be null and |size| must be >= 0. 34 static scoped_refptr<DataBuffer> CopyFrom(const uint8* data, int size); 62 const uint8* data() const { function in class:media::DataBuffer 72 // The size of valid data in bytes. 86 // If there's no data in this buffer, it represents end of stream. 92 // Allocates buffer of size |data_size|, copies [data,data+data_size) t [all...] |
/external/chromium_org/net/quic/crypto/ |
crypto_secret_boxer.cc | 38 char* data = &ret[0]; local 41 rand->RandBytes(data, kBoxNonceSize); 42 memcpy(data + kBoxNonceSize, plaintext.data(), plaintext.size()); 47 sha256->Update(data, kBoxNonceSize + plaintext.size()); 48 sha256->Finish(data + kBoxNonceSize + plaintext.size(), 66 char* data = const_cast<char*>(out_storage->data()); local 70 memcpy(data, ciphertext.data() + kBoxNonceSize, plaintext_len) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGTextQuery.h | 48 struct Data; 51 typedef bool (SVGTextQuery::*ProcessTextFragmentCallback)(Data*, const SVGTextFragment&) const; 52 bool executeQuery(Data*, ProcessTextFragmentCallback) const; 55 bool mapStartEndPositionsIntoFragmentCoordinates(Data*, const SVGTextFragment&, int& startPosition, int& endPosition) const; 56 void modifyStartEndPositionsRespectingLigatures(Data*, int& startPosition, int& endPosition) const; 59 bool numberOfCharactersCallback(Data*, const SVGTextFragment&) const; 60 bool textLengthCallback(Data*, const SVGTextFragment&) const; 61 bool subStringLengthCallback(Data*, const SVGTextFragment&) const; 62 bool startPositionOfCharacterCallback(Data*, const SVGTextFragment&) const; 63 bool endPositionOfCharacterCallback(Data*, const SVGTextFragment&) const [all...] |