Home | History | Annotate | Download | only in OrderedCollectionTest

Lines Matching refs:Value

54   int Value;

97 return CmpKey->Value < CmpStruct->Key.Value ? -1 :
98 CmpKey->Value > CmpStruct->Key.Value ? 1 :
156 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value);
189 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value);
214 fprintf (Output, "%s: %d\n", __FUNCTION__, UserStruct->Key.Value);
236 fprintf (Output, "%s: %d\n", __FUNCTION__, UserStruct->Key.Value);
244 @param[in] Value The key value of the user structure to create.
251 IN int Value,
261 fprintf (Output, "%s: %d: calloc(): out of memory\n", __FUNCTION__, Value);
265 UserStruct->Key.Value = Value;
271 __FUNCTION__, Value);
277 assert (UserStruct2->Key.Value == Value);
279 UserStruct2->Key.Value);
288 fprintf (Output, "%s: %d: inserted\n", __FUNCTION__, Value);
299 @param[in] Value The key of the user structure to find.
306 IN int Value,
314 StandaloneKey.Value = Value;
318 fprintf (Output, "%s: %d: not found\n", __FUNCTION__, Value);
323 assert (UserStruct->Key.Value == StandaloneKey.Value);
324 fprintf (Output, "%s: %d: found\n", __FUNCTION__, UserStruct->Key.Value);
331 @param[in] Value The key of the user structure to find.
338 IN int Value,
347 StandaloneKey.Value = Value;
351 fprintf (Output, "%s: %d: not found\n", __FUNCTION__, Value);
358 assert (UserStruct->Key.Value == StandaloneKey.Value);
359 fprintf (Output, "%s: %d: removed\n", __FUNCTION__, UserStruct->Key.Value);
372 void (*Function) (int Value, ORDERED_COLLECTION *Collection);
397 { "insert ", CmdInsert, "insert value into collection" },
399 { "find ", CmdFind, "find value in collection" },
401 { "delete ", CmdDelete, "delete value from collection" },
621 long Value;
625 Value = strtol (CommandArg, &EndPtr, 10);
629 Value < INT_MIN || Value > INT_MAX // parsed long not in int range
634 KeyedCmd->Function (Value, Collection);