Searched refs:GetInt (Results 1 - 10 of 10) sorted by relevance

/xsrc/external/mit/libXfont/dist/src/util/
H A Dfontxlfd.c53 GetInt(char *ptr, int *val) function in typeref:typename:char *
316 if ((ptr = GetInt(ptr, &value)))
401 !(ptr = GetInt(ptr + 1, &tmpvals.x)) || /* resolution_x */
402 !(ptr3 = ptr = GetInt(ptr + 1, &tmpvals.y)) || /* resolution_y */
404 !(ptr5 = ptr = GetInt(ptr + 1, &tmpvals.width)) || /* average_width */
/xsrc/external/mit/libXfont2/dist/src/util/
H A Dfontxlfd.c51 GetInt(char *ptr, int *val) function in typeref:typename:char *
306 if ((ptr = GetInt(ptr, &value)))
395 !(ptr = GetInt(ptr + 1, &tmpvals.x)) || /* resolution_x */
396 !(ptr3 = ptr = GetInt(ptr + 1, &tmpvals.y)) || /* resolution_y */
398 !(ptr5 = ptr = GetInt(ptr + 1, &tmpvals.width)) || /* average_width */
/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.h1623 IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;
H A Dimgui_internal.h274 T* GetByKey(ImGuiID key) { int idx = Map.GetInt(key, -1); return (idx != -1) ? &Data[idx] : NULL; }
H A Dimgui_widgets.cpp4733 const int stored_value = storage->GetInt(id, -1);
4748 is_open = storage->GetInt(id, (flags & ImGuiTreeNodeFlags_DefaultOpen) ? 1 : 0) != 0;
H A Dimgui.cpp1904 int ImGuiStorage::GetInt(ImGuiID key, int default_val) const function in class:ImGuiStorage
1914 return GetInt(key, default_val ? 1 : 0) != 0;
1963 // FIXME-OPT: Need a way to reuse the result of lower_bound when doing GetInt()/SetInt() - not too bad because it only happens on explicit interaction (maximum one a frame)
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h1623 IMGUI_API int GetInt(ImGuiID key, int default_val = 0) const;
H A Dimgui_internal.h274 T* GetByKey(ImGuiID key) { int idx = Map.GetInt(key, -1); return (idx != -1) ? &Data[idx] : NULL; }
H A Dimgui_widgets.cpp4733 const int stored_value = storage->GetInt(id, -1);
4748 is_open = storage->GetInt(id, (flags & ImGuiTreeNodeFlags_DefaultOpen) ? 1 : 0) != 0;
H A Dimgui.cpp1904 int ImGuiStorage::GetInt(ImGuiID key, int default_val) const function in class:ImGuiStorage
1914 return GetInt(key, default_val ? 1 : 0) != 0;
1963 // FIXME-OPT: Need a way to reuse the result of lower_bound when doing GetInt()/SetInt() - not too bad because it only happens on explicit interaction (maximum one a frame)

Completed in 81 milliseconds