OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cc_table
(Results
1 - 2
of
2
) sorted by null
/external/ppp/pppd/plugins/pppoatm/
ans.c
197
static char *
cc_table
= NULL;
local
203
if (!
cc_table
) {
204
if (!(
cc_table
= malloc(100))) {
208
memset(
cc_table
,E164_CC_DEFAULT_LEN,100);
216
if (cc < 10)
cc_table
[cc] = 1;
217
else if (cc < 100)
cc_table
[cc] = 2;
218
else
cc_table
[cc/10] = 3;
224
if (
cc_table
[p0] == 1) return 1;
225
return
cc_table
[p0*10+p1];
/external/valgrind/main/cachegrind/
cg_main.c
138
static OSet*
CC_table
;
268
lineCC = VG_(OSetGen_Lookup)(
CC_table
, &loc);
271
lineCC = VG_(OSetGen_AllocNode)(
CC_table
, sizeof(LineCC));
288
VG_(OSetGen_Insert)(
CC_table
, lineCC);
[
all
...]
Completed in 408 milliseconds