Searched defs:max_map_size (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
H A Dhandlers.c45 * @param[in] max_map_size The maximum map size.
49 static int AddToMap(void** map, int max_map_size, void* object) { argument
52 for (i = 0; i < max_map_size; ++i) {
65 * @param[in] max_map_size The size of the map.
68 static void RemoveFromMap(void** map, int max_map_size, int i) { argument
69 assert(i >= 0 && i < max_map_size);
76 * @param[in] max_map_size The size of the map.
80 static void* GetFromMap(void** map, int max_map_size, int i) { argument
81 assert(i >= 0 && i < max_map_size);
88 * @param[in] max_map_size Th
93 GetFromIndexString(void** map, int max_map_size, const char* s, int* index) argument
[all...]

Completed in 208 milliseconds