HomeSort by relevance Sort by last modified time
    Searched refs:elementSize (Results 1 - 20 of 20) sorted by null

  /external/collada/src/dae/
daeArray.cpp 20 void daeArray::setElementSize(size_t elementSize) {
22 _elementSize = elementSize;
  /external/webkit/Source/JavaScriptCore/wtf/brew/
SystemMallocBrew.h 42 static inline void* callocBrew(size_t numElements, size_t elementSize)
44 return MALLOC(numElements * elementSize);
  /external/webkit/Source/WebCore/platform/network/curl/
FormDataStreamCurl.cpp 90 size_t elementSize = element.m_data.size() - m_formDataElementDataOffset;
91 sent = elementSize > toSend ? toSend : elementSize;
93 if (elementSize > sent)
  /external/webkit/Source/WebCore/rendering/
RenderVideo.cpp 154 IntSize elementSize;
156 elementSize = m_cachedImageSize;
158 elementSize = intrinsicSize();
161 if (elementSize.isEmpty() || contentRect.isEmpty())
165 int ratio = renderBox.width() * elementSize.height() - renderBox.height() * elementSize.width();
167 int newWidth = renderBox.height() * elementSize.width() / elementSize.height();
173 int newHeight = renderBox.width() * elementSize.height() / elementSize.width()
    [all...]
  /external/icu4c/i18n/
ucol_sit.cpp 567 int32_t elementSize = 0;
575 elementSize = ucol_getFunctionalEquivalent(locBuff, internalBufferSize, "collation", locale, &isAvailable, status);
577 if(elementSize) {
579 elementSize = uloc_getLanguage(locBuff, tempbuff, internalBufferSize, status);
580 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, languageArg);
581 elementSize = uloc_getCountry(locBuff, tempbuff, internalBufferSize, status);
582 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, regionArg);
583 elementSize = uloc_getScript(locBuff, tempbuff, internalBufferSize, status);
584 appendShortStringElement(tempbuff, elementSize, buffer, &resultSize, /*capacity*/internalBufferSize, scriptArg);
585 elementSize = uloc_getVariant(locBuff, tempbuff, internalBufferSize, status)
    [all...]
  /dalvik/vm/oo/
Array.cpp 49 size_t elementSize = length << elementShift;
51 size_t totalSize = elementSize + headerSize;
52 if (elementSize >> elementShift != length || totalSize < elementSize) {
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.h 34 void* fastCalloc(size_t numElements, size_t elementSize);
  /frameworks/base/libs/rs/driver/
rsdShader.cpp 252 uint32_t elementSize = field->getSizeBytes() / sizeof(float);
290 LOGE("Element size %u data=%p", elementSize, fd);
291 fd += elementSize;
rsdAllocation.cpp 457 uint32_t elementSize = dstAlloc->getType()->getElementSizeBytes();
461 memcpy(dstPtr, srcPtr, w * elementSize);
  /external/skia/src/animator/
SkDisplayable.cpp 114 size_t elementSize = SkMemberInfo::GetSize(elementType);
115 size_t byteSize = elementSize * arrayCount;
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
GLClientState.h 63 unsigned int elementSize;
GLClientState.cpp 94 m_states[location].elementSize = glSizeof(type) * size;
  /external/collada/include/dae/
daeArray.h 48 * @param elementSize Size of an element in the array.
50 DLLSPEC void setElementSize(size_t elementSize);
  /development/tools/emulator/opengl/system/GLESv2_enc/
GL2Encoder.cpp 308 unsigned int datalen = state->elementSize * count;
309 int stride = state->stride == 0 ? state->elementSize : state->stride;
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
VertexDataManager.cpp 58 int elementSize = attribute.typeSize();
90 if (converter.identity && inputStride == elementSize)
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
  /development/tools/emulator/opengl/system/GLESv1_enc/
GLEncoder.cpp 418 unsigned int datalen = state->elementSize * count;
420 if (stride == 0) stride = state->elementSize;
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
OutputHLSL.cpp 92 int elementSize = type.isMatrix() ? type.getNominalSize() : 1;
95 return elementSize * arraySize;
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp     [all...]
  /prebuilt/common/ecj/
ecj.jar 

Completed in 1254 milliseconds