HomeSort by: relevance | last modified time | path
    Searched defs:Size (Results 1 - 25 of 31) sorted by relevancy

1 2

  /xsrc/external/mit/MesaLib/dist/src/egl/main/
eglarray.h 49 EGLint Size;
74 _eglFilterArray(_EGLArray *array, void **data, EGLint size,
79 _eglFlattenArray(_EGLArray *array, void *buffer, EGLint elem_size, EGLint size,
86 return (array) ? array->Size : 0;
  /xsrc/external/mit/MesaLib.old/dist/src/egl/main/
eglarray.h 49 EGLint Size;
74 _eglFilterArray(_EGLArray *array, void **data, EGLint size,
79 _eglFlattenArray(_EGLArray *array, void *buffer, EGLint elem_size, EGLint size,
86 return (array) ? array->Size : 0;
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 117 size_t Size;
126 Size = LLVMDisasmInstruction(D, (uint8_t *)bytes + pc, extent - pc, 0, outline,
129 if (!Size) {
141 for (i = 0; i < Size; ++i) {
154 buffer << std::setw(Size) << outline << '\n';
164 if (Size == 1 && bytes[pc] == 0xc3) {
173 pc += Size;
228 * We rely on the disassembler for determining a function's size, but
247 unsigned long size = disassemble(code, perf_asm_file); local
249 fprintf(perf_map_file, "%lx %lx %s\n", addr, size, symbol)
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 125 size_t Size;
134 Size = LLVMDisasmInstruction(D, (uint8_t *)bytes + pc, extent - pc, 0, outline,
137 if (!Size) {
149 for (i = 0; i < Size; ++i) {
162 buffer << std::setw(Size) << outline << '\n';
172 if (Size == 1 && bytes[pc] == 0xc3) {
181 pc += Size;
236 * We rely on the disassembler for determining a function's size, but
255 unsigned long size = disassemble(code, perf_asm_file); local
257 fprintf(perf_map_file, "%lx %lx %s\n", addr, size, symbol)
    [all...]
  /xsrc/external/mit/mesa-demos/dist/src/demos/
trispd.c 18 static int Size = 50;
42 xStep = yStep = sqrt( 2.0 * Size );
95 pixelRate = triRate * Size;
173 else if (strcmp(argv[i],"-size")==0) {
174 Size = atoi(argv[i+1]);
202 printf("Size: %d pixels\n", Size);
221 printf(" -size pixels specify pixels/triangle\n");
  /xsrc/external/mit/MesaLib/dist/src/mesa/program/
prog_parameter.h 111 GLushort Size;
140 unsigned Size; /**< allocated size of Parameters */
141 unsigned SizeValues; /**< alllocate size of ParameterValues */
144 struct gl_program_parameter *Parameters; /**< Array [Size] */
145 gl_constant_value *ParameterValues; /**< Array [Size] of gl_constant_value */
165 _mesa_new_parameter_list_sized(unsigned size);
181 GLuint size, GLenum datatype,
188 const gl_constant_value *values, GLuint size,
193 const gl_constant_value *values, GLuint size,
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
prog_parameter.h 100 * The next program parameter's Size will be Size-4 of this parameter.
102 GLushort Size;
121 GLuint Size; /**< allocated size of Parameters, ParameterValues */
124 struct gl_program_parameter *Parameters; /**< Array [Size] */
126 gl_constant_value *ParameterValues; /**< Array [Size] of gl_constant_value */
136 _mesa_new_parameter_list_sized(unsigned size);
148 GLuint size, GLenum datatype,
155 const gl_constant_value values[4], GLuint size,
    [all...]
  /xsrc/external/mit/freetype/dist/src/pfr/
pfrload.c 35 * Logical font directory (size at most 2^16 bytes)
41 * Logical font section (size at most 2^24 bytes)
44 * logFontRecord (size at most 2^16 bytes)
52 * ==> minimum size 18 bytes
54 * Physical font section (size at most 2^24 bytes)
58 * physFontRecord (size at most 2^24 bytes)
72 * ==> minimum size 27 bytes
78 * and bitmapGps; size at most 2^24 bytes)
79 * simpleGps (size at most 2^16 bytes)
87 * ==> minimum size 3 byte
336 FT_UInt32 size; local
    [all...]
  /xsrc/external/mit/xf86-video-mach64/dist/src/
atimach64xv.c 500 int size,
613 * image of size Width by Height should be stored. Sometimes only the size and
615 * NULL. The size of the memory required for the image is returned by this
635 int Size, tmp;
656 Size = (*Width + 3) & ~3;
658 pPitch[0] = Size;
659 Size *= *Height;
661 pOffset[1] = Size;
666 Size += tmp
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/
radeon_code.h 78 unsigned Size:3;
  /xsrc/external/mit/MesaLib/dist/src/microsoft/compiler/
dxcapi.h 83 virtual void *Alloc(size_t size);
84 virtual void *Realloc(void *ptr, size_t size);
239 // GetBufferSize() will return the size in bytes, including null-terminator
271 SIZE_T Size;
315 _In_bytecount_(size) LPCVOID pText, UINT32 size, UINT32 codePage, member in struct:IDxcLibrary
318 _In_bytecount_(size) LPCVOID pText, UINT32 size, UINT32 codePage, member in struct:IDxcLibrary
321 _In_bytecount_(size) LPCVOID pText, IMalloc *pIMalloc, UINT32 size, UINT32 codePage member in struct:IDxcLibrary
450 _In_bytecount_(size) LPCVOID pData, UINT32 size, UINT32 codePage, member in struct:IDxcUtils
456 _In_bytecount_(size) LPCVOID pData, IMalloc *pIMalloc, UINT32 size, UINT32 codePage, member in struct:IDxcUtils
465 _In_bytecount_(size) LPCVOID pData, UINT32 size, UINT32 codePage, member in struct:IDxcUtils
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/
radeon_code.h 78 unsigned Size:3;
  /xsrc/external/mit/xf86-video-intel/dist/src/legacy/i810/
i810.h 80 unsigned pitch, unsigned size);
85 unsigned long Size;
284 int size);
286 int size);
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/legacy/i810/
i810.h 80 unsigned pitch, unsigned size);
85 unsigned long Size;
285 int size);
287 int size);
  /xsrc/external/mit/xf86-video-intel-old/dist/src/
i810.h 93 unsigned pitch, unsigned size);
98 unsigned long Size;
300 int size);
302 int size);
  /xsrc/external/mit/MesaLib/dist/src/imgui/
imgui_widgets.cpp 558 ImVec2 size = CalcItemSize(size_arg, label_size.x + style.FramePadding.x * 2.0f, label_size.y + style.FramePadding.y * 2.0f); local
560 const ImRect bb(pos, pos + size);
561 ItemSize(size, style.FramePadding.y);
610 // Cannot use zero-size for InvisibleButton(). Unlike Button() there is not way to fallback using the label size.
614 ImVec2 size = CalcItemSize(size_arg, 0.0f, 0.0f); local
615 const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size);
616 ItemSize(size);
626 bool ImGui::ArrowButtonEx(const char* str_id, ImGuiDir dir, ImVec2 size, ImGuiButtonFlags flags)
634 const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size);
    [all...]
imgui_internal.h 161 static inline ImU32 ImHash(const void* data, int size, ImU32 seed = 0) { return size ? ImHashData(data, (size_t)size, seed) : ImHashStr((const char*)data, 0, seed); } // [moved to ImHashStr/ImHashData in 1.68]
256 void Resize(int sz) { Storage.resize((sz + 31) >> 5); memset(Storage.Data, 0, (size_t)Storage.Size * sizeof(Storage.Data[0])); }
276 ImPoolIdx GetIndex(const T* p) const { IM_ASSERT(p >= Data.Data && p < Data.Data + Data.Size); return (ImPoolIdx)(p - Data.Data); }
278 void Clear() { for (int n = 0; n < Map.Data.Size; n++) { int idx = Map.Data[n].val_i; if (idx != -1) Data[idx].~T(); } Map.Clear(); Data.clear(); FreeIdx = 0; }
279 T* Add() { int idx = FreeIdx; if (idx == Data.Size) { Data.resize(Data.Size + 1); FreeIdx++; } else { FreeIdx = *(int*)&Data[idx]; } IM_PLACEMENT_NEW(&Data[idx]) T(); return &Data[idx]; }
283 int GetSize() const { return Data.Size; }
329 ImGuiColumnsFlags_GrowParentContentsSize= 1 << 4 // (WIP) Restore pre-1.51 behavior of extending the parent window contents size but _without affecting the columns width at all_. Will eventually remove
    [all...]
imgui.h 73 #define IM_ARRAYSIZE(_ARR) ((int)(sizeof(_ARR)/sizeof(*_ARR))) // Size of a static C-style array. Don't use on pointers!
95 struct ImDrawData; // All draw command lists required to render the frame + pos/size coordinates to use for the projection matrix.
245 // - For each independent axis of 'size': ==0.0f: use remaining host window size / >0.0f: fixed size / <0.0f: use remaining window size minus abs(size) / Each axis can use a different mode, e.g. ImVec2(0,400).
248 IMGUI_API bool BeginChild(const char* str_id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags flags = 0);
249 IMGUI_API bool BeginChild(ImGuiID id, const ImVec2& size = ImVec2(0,0), bool border = false, ImGuiWindowFlags flags = 0);
261 IMGUI_API ImVec2 GetWindowSize(); // get current window size
1193 inline int size() const { return Size; } function in struct:ImVector
1589 int size() const { return Buf.Size ? Buf.Size - 1 : 0; } function in struct:ImGuiTextBuffer
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/mesa/tnl/
t_context.h 197 GLuint Size; /**< Max vertices per vertex buffer, constant */
248 /* Called on any statechange or input array size change or
305 GLuint vertattrsize; /* size of the attribute in bytes */
337 GLuint size; member in struct:tnl_attr_type
  /xsrc/external/mit/MesaLib.old/dist/src/imgui/
imgui_widgets.cpp 558 ImVec2 size = CalcItemSize(size_arg, label_size.x + style.FramePadding.x * 2.0f, label_size.y + style.FramePadding.y * 2.0f); local
560 const ImRect bb(pos, pos + size);
561 ItemSize(size, style.FramePadding.y);
610 // Cannot use zero-size for InvisibleButton(). Unlike Button() there is not way to fallback using the label size.
614 ImVec2 size = CalcItemSize(size_arg, 0.0f, 0.0f); local
615 const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size);
616 ItemSize(size);
626 bool ImGui::ArrowButtonEx(const char* str_id, ImGuiDir dir, ImVec2 size, ImGuiButtonFlags flags)
634 const ImRect bb(window->DC.CursorPos, window->DC.CursorPos + size);
    [all...]
imgui_internal.h 161 static inline ImU32 ImHash(const void* data, int size, ImU32 seed = 0) { return size ? ImHashData(data, (size_t)size, seed) : ImHashStr((const char*)data, 0, seed); } // [moved to ImHashStr/ImHashData in 1.68]
256 void Resize(int sz) { Storage.resize((sz + 31) >> 5); memset(Storage.Data, 0, (size_t)Storage.Size * sizeof(Storage.Data[0])); }
276 ImPoolIdx GetIndex(const T* p) const { IM_ASSERT(p >= Data.Data && p < Data.Data + Data.Size); return (ImPoolIdx)(p - Data.Data); }
278 void Clear() { for (int n = 0; n < Map.Data.Size; n++) { int idx = Map.Data[n].val_i; if (idx != -1) Data[idx].~T(); } Map.Clear(); Data.clear(); FreeIdx = 0; }
279 T* Add() { int idx = FreeIdx; if (idx == Data.Size) { Data.resize(Data.Size + 1); FreeIdx++; } else { FreeIdx = *(int*)&Data[idx]; } IM_PLACEMENT_NEW(&Data[idx]) T(); return &Data[idx]; }
283 int GetSize() const { return Data.Size; }
329 ImGuiColumnsFlags_GrowParentContentsSize= 1 << 4 // (WIP) Restore pre-1.51 behavior of extending the parent window contents size but _without affecting the columns width at all_. Will eventually remove
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/tnl/
t_context.h 197 GLuint Size; /**< Max vertices per vertex buffer, constant */
248 /* Called on any statechange or input array size change or
305 GLuint vertattrsize; /* size of the attribute in bytes */
337 GLuint size; member in struct:tnl_attr_type
  /xsrc/external/mit/xf86-video-chips/dist/src/
ct_driver.c 1335 CHIPSPanelSizePtr Size = &cPtr->PanelSize;
1705 /* memory size */
1725 /* bit 2-1: memory size */
1743 /* bit 3-0: memory size */
1932 /* screen size */
1939 /* for 65550 we only need H/VDisplay values for screen size */
1947 Size->HDisplay = ((tmp + ((fr25 & 0x0F) << 8)) + 1) << 3;
1950 Size->VDisplay = ((tmp1 & 0x0F) << 8) + tmp + 1;
1953 Size->HRetraceStart = ((tmp + ((fr25 & 0xF0) << 4)) + 1) << 3;
1956 Size->HRetraceEnd = ((((tmp2 < 0) ? (tmp2 + 0x40) : tmp2) << 3
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/
dbghelp.h 65 PVOID IMAGEAPI ImageDirectoryEntryToDataEx(PVOID Base,BOOLEAN MappedAsImage,USHORT DirectoryEntry,PULONG Size,PIMAGE_SECTION_HEADER *FoundHeader);
66 PVOID IMAGEAPI ImageDirectoryEntryToData(PVOID Base,BOOLEAN MappedAsImage,USHORT DirectoryEntry,PULONG Size);
162 DWORD size; member in struct:_MODLOAD_DATA
350 DWORD Size;
372 DWORD Size;
571 PCHAR IMAGEAPI SymGetHomeDirectory(DWORD type,PSTR dir,size_t size);
783 ULONG Size;
846 BOOL IMAGEAPI SymAddSymbol(HANDLE hProcess,ULONG64 BaseOfDll,PCSTR Name,DWORD64 Address,DWORD Size,DWORD Flags);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
dbghelp.h 65 PVOID IMAGEAPI ImageDirectoryEntryToDataEx(PVOID Base,BOOLEAN MappedAsImage,USHORT DirectoryEntry,PULONG Size,PIMAGE_SECTION_HEADER *FoundHeader);
66 PVOID IMAGEAPI ImageDirectoryEntryToData(PVOID Base,BOOLEAN MappedAsImage,USHORT DirectoryEntry,PULONG Size);
162 DWORD size; member in struct:_MODLOAD_DATA
350 DWORD Size;
372 DWORD Size;
571 PCHAR IMAGEAPI SymGetHomeDirectory(DWORD type,PSTR dir,size_t size);
783 ULONG Size;
846 BOOL IMAGEAPI SymAddSymbol(HANDLE hProcess,ULONG64 BaseOfDll,PCSTR Name,DWORD64 Address,DWORD Size,DWORD Flags);

Completed in 67 milliseconds

1 2